├── .claude-plugin ├── marketplace.json └── plugin.json ├── .gitignore ├── .mcp.json ├── LICENSE ├── README.md ├── claude ├── agents │ ├── codebase-research.md │ ├── preflight-prp.md │ ├── research-agent.md │ └── team-lead-task-breakdown.md └── commands │ ├── brainstorm.md │ ├── execute-prp.md │ ├── execute-task.md │ ├── generate-prp.md │ └── init.md ├── docs ├── templates │ ├── brainstorming_session_template.md │ ├── prp_document_template.md │ └── technical-task-template.md └── vibe-coding-guide.md └── public ├── vibecodekit-banner-youtube.png └── vibecodekit-banner.png /.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/.claude-plugin/marketplace.json -------------------------------------------------------------------------------- /.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/.mcp.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /claude/agents/codebase-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/agents/codebase-research.md -------------------------------------------------------------------------------- /claude/agents/preflight-prp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/agents/preflight-prp.md -------------------------------------------------------------------------------- /claude/agents/research-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/agents/research-agent.md -------------------------------------------------------------------------------- /claude/agents/team-lead-task-breakdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/agents/team-lead-task-breakdown.md -------------------------------------------------------------------------------- /claude/commands/brainstorm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/commands/brainstorm.md -------------------------------------------------------------------------------- /claude/commands/execute-prp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/commands/execute-prp.md -------------------------------------------------------------------------------- /claude/commands/execute-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/commands/execute-task.md -------------------------------------------------------------------------------- /claude/commands/generate-prp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/commands/generate-prp.md -------------------------------------------------------------------------------- /claude/commands/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/claude/commands/init.md -------------------------------------------------------------------------------- /docs/templates/brainstorming_session_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/docs/templates/brainstorming_session_template.md -------------------------------------------------------------------------------- /docs/templates/prp_document_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/docs/templates/prp_document_template.md -------------------------------------------------------------------------------- /docs/templates/technical-task-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/docs/templates/technical-task-template.md -------------------------------------------------------------------------------- /docs/vibe-coding-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/docs/vibe-coding-guide.md -------------------------------------------------------------------------------- /public/vibecodekit-banner-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/public/vibecodekit-banner-youtube.png -------------------------------------------------------------------------------- /public/vibecodekit-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/croffasia/cc-blueprint-toolkit/HEAD/public/vibecodekit-banner.png --------------------------------------------------------------------------------