Skip to content

v1.1.0 - OpenSpec Integration & Page Planning

Choose a tag to compare

@ChampPABA ChampPABA released this 04 Nov 04:38
· 102 commits to main since this release

πŸš€ 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.md from 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 bump
  • docs: update README.md with OpenSpec integration and /pageplan workflow
  • chore: remove redito-landing.html
  • feat: add /pageplan command for UI content planning
  • feat: add /extract command and design extraction data
  • refactor: redesign /designsetup to use synthesis approach

πŸ”— Related Links


πŸ’‘ 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