Releases: ChampPABA/claude-multi-agent-template
Releases · ChampPABA/claude-multi-agent-template
Release list
v1.1.1 - Fix Template Path Error
🐛 Fix v1.1.1 - Template Path Error
What's Fixed
Critical bug fix for v1.1.0 where cak init and cak update commands failed with:
❌ Error: Template folder not found. Please reinstall the package.
Root Cause
The npm package was configured to include a template/ folder that didn't exist:
"files": ["bin/", "lib/", "template/"] ← template/ doesn't exist!The actual template folder is .claude/, and the CLI code referenced the wrong path.
Changes
✅ package.json: Fixed files array
- "template/"
+ ".claude/"✅ lib/init.js: Fixed template path
- const templatePath = path.join(__dirname, '../template/.claude');
+ const templatePath = path.join(__dirname, '../.claude');✅ lib/update.js: Fixed template path
- const templatePath = path.join(__dirname, '../template/.claude');
+ const templatePath = path.join(__dirname, '../.claude');Testing
# Install the fixed version
npm install -g @champpaba/claude-agent-kit@1.1.1
# Test init command
cd your-project
cak init
# ✅ Should work now!
# Test update command
cak update
# ✅ Should work now!Upgrade Instructions
If you installed v1.1.0, upgrade immediately:
npm update -g @champpaba/claude-agent-kit
# Verify version
cak --version
# → 1.1.1Impact
- ✅ Fixes:
cak initcommand (initialize template in new projects) - ✅ Fixes:
cak updatecommand (update existing templates) - ✅ No breaking changes - fully compatible with v1.1.0
📦 Installation
npm install -g @champpaba/claude-agent-kit@1.1.1🤖 Generated with Claude Code
v1.1.0 - OpenSpec Integration & Page Planning
🚀 Release v1.1.0 - OpenSpec Integration & Page Planning
✨ What's New
1. OpenSpec Integration
Claude Agent Kit is now the perfect companion for OpenSpec spec-driven development!
- ✅ Complete workflow documentation (5 stages)
- ✅ Reads
proposal.md+tasks.mdfrom OpenSpec - ✅ Clear separation: OpenSpec (Planning) → Claude Agent Kit (Implementation)
- ✅ Seamless handoff between spec alignment and code execution
2. /pageplan Command (NEW!)
Generate smart page plans BEFORE implementing UI tasks:
- ✅ Component Reuse Plan - Search existing components before creating duplicates
- ✅ Real Content from PRD - AI drafts actual content (no more lorem ipsum!)
- ✅ Asset Checklist - Prepare images, icons upfront
- ✅ 25% Faster Implementation - Skip redundant searches during coding
- ✅ Visual Consistency - Auto-sync with STYLE_GUIDE.md
Example Output:
## Component Plan
🔄 Reuse: Navbar, Footer (found in codebase)
✅ New: HeroSection, FeatureGrid
## Content Draft
**Headline:** "Master TOEIC with AI-Powered Tests"
**CTA:** "Start Free Test"
## Assets to Prepare
- [ ] hero-image.jpg (1920x1080)3. Complete Workflow Examples
New documentation with 3 real-world workflows:
- ✅ Workflow A: UI Feature (with /pageplan)
- ✅ Workflow B: Backend Feature (skip /pageplan)
- ✅ Workflow C: Full-Stack Feature (with /pageplan)
4. Documentation Updates
- ✅ Updated README.md with OpenSpec integration flow
- ✅ Added page-plan.md structure documentation
- ✅ Added 8-step complete flow summary
- ✅ Added Before/After comparison tables
- ✅ Clear "When to Use" guidance for each command
📦 Installation
npm install -g @champpaba/claude-agent-kit@1.1.0🔄 Upgrade from 1.0.0
npm update -g @champpaba/claude-agent-kit
cd your-project
cak update --backup🎯 Breaking Changes
None - Fully backward compatible with v1.0.0
📋 Commits Included
1.1.0- Version bumpdocs: update README.md with OpenSpec integration and /pageplan workflowchore: remove redito-landing.htmlfeat: add /pageplan command for UI content planningfeat: add /extract command and design extraction datarefactor: redesign /designsetup to use synthesis approach
🔗 Related Links
- npm Package: https://www.npmjs.com/package/@champpaba/claude-agent-kit
- OpenSpec: https://github.com/Fission-AI/OpenSpec
- Documentation: https://github.com/ChampPABA/claude-multi-agent-template#readme
💡 Quick Start (New Users)
# Install globally
npm install -g @champpaba/claude-agent-kit
# Initialize in your project
cd your-project
cak init
# Setup project context
/psetup
# Generate style guide (optional)
/designsetup
# Start building (after OpenSpec planning)
/pageplan @prd.md # UI tasks only
/csetup your-feature
/cdev your-feature🤖 Generated with Claude Code