PRD generation rules and unified template enforced by a Python script. Single 14-section structure for Web, Backend, Mobile, and multi-platform projects.
ADR (Architecture Decision Record) generation + supersession rules. Immutable per-file under docs/adr/ (Status line is the only mutable surface). Bootstrap enumerates from PRD; standalone `/blueprint adr` adds or supersedes. Python-backed renderer.
Shared memory-management guidance for subagents. Preload via the subagent's skills frontmatter field so every agent follows the same rules about what to save, when to save, and when to retrieve.
Generate or update docs/ARCHITECTURE.md via a Python-backed, single unified template. Supports React Router Framework, Expo Router, NestJS, and Tauri 2 across single-package and monorepo layouts. The renderer enforces scope discipline — data model, features, code snippets, and tech-stack recommendations are rejected as PRD-territory.
Orchestrate creation/update of PRD, ADR, ARCHITECTURE, and ROADMAP via a guided 5-mode flow (Bootstrap / PRD / ADR / ARCHITECTURE / ROADMAP). Wraps the six doc subagents with phase-state enforcement so steps cannot be skipped. Use when the user invokes `/blueprint`, asks to "PRD/ROADMAP을 만들자", or wants to initialize/refresh project documentation.
Clean Architecture 4-layer dependency rules, TDD-exempt layer list, and test policy per layer. Reference-only skill preloaded by pipeline, tdd, code-reviewer, and other architecture-aware consumers.
Generate a production-ready GitHub Actions workflow that deploys a project to Cloudflare Workers via the official cloudflare/wrangler-action. Auto-detects the package manager (bun/pnpm/yarn/npm), reads the project's package.json scripts to assemble the right quality gates (lint/typecheck/test) and build step, parameterizes branches from .claude/config.json, and writes the rendered YAML to .github/workflows/deploy-cloudflare-workers.yml. Use whenever the user asks to "set up Cloudflare Workers deployment", "add a Cloudflare deploy workflow", "create a wrangler GitHub Action", "deploy this project to Workers from GitHub", or any phrasing about a CI/CD pipeline targeting Cloudflare Workers — even when they don't say the word "skill". Do not use this skill for Cloudflare Pages, Vercel, Netlify, or other platforms.
Generate a standalone .github/workflows/ci.yml that runs lint / typecheck / test / build on pull requests. Reads the project's package.json to assemble the right step set for the detected package manager (bun / pnpm / yarn / npm). Produces a self-contained workflow — no dependency on cc-ecosystem reusable workflows or composite actions. Triggers: "ci.yml 만들어줘", "GitHub Actions 셋업", "/ci-setup", "set up CI for this project". Do NOT use this skill for deploy/release workflows (cf-deploy, eas-deploy, etc. are separate target-specific skills).