Skip to content

Releases: croffasia/cc-blueprint-toolkit

v1.4.1

26 Nov 12:15

Choose a tag to compare

Changes

  • fix: windows installation fails due to invalid filename character;
  • fix: synchronized git and plugin versions;
  • update: README.md

v.1.4.0

12 Oct 15:52

Choose a tag to compare

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.git

Step 2: Initialize Templates

In your project directory, run once:

/bp:init

v.1.3.2

06 Oct 22:38

Choose a tag to compare

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

01 Oct 09:01

Choose a tag to compare

Changes

  • Optimize prompts: reduce token usage by 12%;

v.1.3.0

30 Aug 05:42
80bc13a

Choose a tag to compare

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

  1. 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

  1. 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

22 Aug 19:35
a0e708a

Choose a tag to compare

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

18 Aug 19:07
124c1bf

Choose a tag to compare

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

17 Aug 12:01
c08bcec

Choose a tag to compare

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