Releases: croffasia/cc-blueprint-toolkit
Releases · croffasia/cc-blueprint-toolkit
v1.4.1
v.1.4.0
Changes
- Refactor: migrate to Claude Code plugin architecture;
- Plugin marketplace installation support;
- Add /bp:init for template setup;
- Updated README;
How to install
Step 1: Install Plugin
In Claude Code console, run:
# Short format
/plugin marketplace add croffasia/cc-blueprint-toolkit
# Or full URL
/plugin marketplace add https://github.com/croffasia/cc-blueprint-toolkit.gitStep 2: Initialize Templates
In your project directory, run once:
/bp:initv.1.3.2
Changes
- Changed default model behavior: agents now use default Claude Code model instead of Opus;
- Added vibe-coding-guide.md with 10 essential AI-assisted development tips;
- Added .mcp.json with recommended MCP servers (Context7, Playwright);
- Updated README;
v.1.3.1
v.1.3.0
New Features
- Added team-lead-task-breakdown agent for decomposing PRPs into manageable development tasks;
Changes
- Restructured agents into planning/ subdirectory and renamed for clarity;
- Moved PRP template from PRPs/templates/ to docs/templates/ for consistency;
- Updated PRP generation to output documents in docs/ directory structure;
- Refactored brainstorm command and template with improved workflow clarity;
- Removed time estimation fields from task breakdown to focus on deliverables;
- Updated README;
Updating to v1.3.0
- Remove Old Agent Files
Navigate to your Claude Code agents directory
cd ~/.claude/agents # or .claude/agents for project-specific
Remove old agents (if they exist)
rm -f prp-codebase-research.md
rm -f prp-research-agent.md
rm -f prp-surface-discovery.md
- Update Repository and Copy New Files
Update the repository
cd /path/to/claude-code-prp-generator
git pull origin main
Copy new agents and commands
cp -r claude/agents/* ~/.claude/agents/
cp -r claude/commands/* ~/.claude/commands/
Update templates in your project
cp -r docs/* ./docs
v.1.2.0
New Features
- Added /brainstorm command for structured feature planning sessions;
- Created brainstorming session template with standard format;
Changes
- Extend system prompt for prp-codebase-research agent with database capabilities;
- Improve PRP commands:
- Add frontmatter to /prp:generate and /prp:execute;
- Update /prp:generate to ask questions in request language, output in English
- Updated README.md;
v.1.1.0
Changes
- Added task validation agent for incomplete requirements discovery and user clarification;
- Fixed agent tool configurations and workflow consistency;
- Enhanced PRP template with discovery phase documentation;
- Improved documentation clarity and user experience;
How to update
Follow the installation instructions, replace agents, commands and PRP template
v.1.0.0
Changes
- Added two Opus-powered agents: codebase analysis and external research;
- Implemented smart external research trigger (only when codebase info insufficient);
- Updated command structure: /prp:generate and /prp:execute with new directory layout;
- Enhanced PRP generation with intelligent agent orchestration;
- Updated README;
How to update
- Add new agents
- Remove old commands execure-prp & generate-prp
- Add new folder with new commands /prp/*
- Add new PRP template to PRPs/templates