Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

blueprint-development蓝图发展

Agent Skill

blueprint-development 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,371

周安装

56

GitHub Stars

28

下载量

444
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:blueprint-development(蓝图发展)
来源仓库:https://github.com/laurigates/claude-plugins
仓库路径:skills/blueprint-development
安装命令:
npx skills add https://github.com/laurigates/claude-plugins --skill blueprint-development
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/laurigates/claude-plugins --skill blueprint-development

简介

blueprint-development 提供 Blueprint 开发方法论的指导,用于生成项目特定行为规则。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 基于 PRD 生成工作流程命令和路径特定规则,支持团队协作开发。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/blueprint:development

Guide and reference for the Blueprint Development methodology that generates project-specific behavioral rules and workflow commands from PRDs (Product Requirements Documents).

When to Use This Skill

Use this skill when...Use alternative when...
Starting Blueprint Development in a projectProject is already using Blueprint (use /blueprint:status)
Need to generate rules from PRDsStarting a brand new project with no PRD yet
Want project-specific behavioral guidelinesUsing generic development practices
Creating workflow automation for a projectWorking on isolated tasks without project context

For detailed rule templates, command templates, and generation guidelines, see REFERENCE.md.

Context

  • Blueprint initialized:!find docs/blueprint -maxdepth 1 -name 'manifest.json' -type f
  • PRDs present:!find docs/prds -name "*.md" -type f
  • Rules directory:!find.claude -maxdepth 1 -name 'rules' -type d
  • Existing rules:!find.claude/rules -maxdepth 1 -name "*.md"
  • Project type:!find. -maxdepth 1 \(-name 'package.json' -o -name 'pyproject.toml' -o -name 'Cargo.toml' -o -name 'go.mod' \) -type f -print -quit

Execution

Execute the complete Blueprint Development setup and rule generation workflow:

Step 1: Verify project readiness

Check context values above:

  1. If Blueprint initialized = "NO" → Error: "Blueprint not initialized. Run /blueprint:init first"
  2. If PRDs present = "0" → Error: "No PRDs found. Create at least one PRD in docs/prds/ before generating rules"
  3. If Rules directory = "NO" → Create: mkdir -p.claude/rules

Step 2: Analyze PRDs and extract patterns

Read all PRD files in docs/prds/ and extract:

  1. Architecture Patterns: Project structure, dependency injection, error handling, module boundaries, layering, code organization
  2. Testing Strategies: TDD workflow, test types (unit, integration, e2e), mocking patterns, coverage requirements
  3. Implementation Guides: Patterns for implementing feature types (APIs, UI, database, external services)
  4. Quality Standards: Code review checklist, performance baselines, security requirements, style standards

See REFERENCE.md for specific extraction patterns for each category.

Step 3: Generate four behavioral rules in .claude/rules/

Create project-specific rules that guide Claude's behavior during development:

Three required core rules:

  1. architecture-patterns.md - Project structure, design patterns, dependency management, error handling, integration patterns
  2. testing-strategies.md - TDD workflow, test structure, test types, mocking patterns, coverage requirements
  3. quality-standards.md - Code review checklist, performance baselines, security standards, style, documentation

One optional advanced rule (if applicable):

  1. implementation-guides.md - Step-by-step patterns for implementing specific feature types from PRDs

For each rule file:

  • Use templates from REFERENCE.md
  • Extract content directly from PRDs
  • Include code examples and specific references
  • Document rationale for architectural choices
  • Use imperative language ("Use...", "Follow...", "Ensure...")

See REFERENCE.md for detailed guidelines on creating effective rules.

Step 4: Generate workflow commands

Create project-specific workflow commands in .claude/skills/ or docs/blueprint/:

Six core commands:

  1. /blueprint:init - Initialize Blueprint Development structure
  2. /blueprint:generate-rules - Generate project rules from PRDs (main entry point)
  3. /blueprint:generate-commands - Generate workflow commands based on project type
  4. /blueprint:work-order - Create isolated work-order for subagent execution
  5. /project:continue - Analyze state and resume development
  6. /project:test-loop - Run automated TDD cycle

For each command:

  • Determine project type and language
  • Extract test runners, build commands, development workflows
  • Customize command implementations using REFERENCE.md
  • Verify with expected allowed-tools permissions

Step 5: Create mapping in manifest

Update docs/blueprint/manifest.json with:

{
  "generated": {
    "rules": [
      "architecture-patterns.md",
      "testing-strategies.md",
      "quality-standards.md",
      "implementation-guides.md"
    ],
    "commands": [
      "blueprint-init.md",
      "blueprint-generate-rules.md",
      "blueprint-generate-commands.md",
      "blueprint-work-order.md",
      "project-continue.md",
      "project-test-loop.md"
    ]
  },
  "source_prds": ["project-overview.md"],
  "last_generated": "ISO-8601-timestamp"
}

This enables regeneration without losing track of what was auto-generated vs. manually created.

Step 6: Test and validate

Verify rules and commands work correctly:

  1. Test rules apply: Check that Claude follows architecture-patterns, testing-strategies, and quality-standards during development
  2. Test commands execute: Run each command to verify it works as expected
  3. Verify output quality: Check that generated rules match PRD requirements and include concrete examples
  4. Refine as needed: Update rules and commands based on feedback and actual project development

Step 7: Report results and next steps

Create summary report:

  • Rules generated: {count} in .claude/rules/
  • Commands created: {count} (use /project:continue to start development)
  • Manifest updated with tracking metadata
  • Next steps:

1. Review generated rules for accuracy 2. Add project-specific additions or clarifications 3. Run /project:continue to begin Blueprint Development workflow 4. Use /blueprint:work-order to create isolated tasks for team members

Integration with Blueprint Development

This skill enables the core Blueprint Development workflow:

PRDs (requirements) - Rules (behavioral guidelines) - Commands (workflow automation) - Work-orders (isolated tasks)

By generating project-specific rules and commands from PRDs, Blueprint Development creates a self-documenting, AI-native development environment where behavioral guidelines, patterns, and quality standards are first-class citizens.

GitHub Work Order Integration

Work orders can be linked to GitHub issues for transparency and cooperative development. See REFERENCE.md for workflow modes (--no-publish, --from-issue N), label setup, completion workflow, and work order file format.

Agentic Optimizations

ContextAction
Check if rules exist`find.claude/rules -maxdepth 1 -name "*.md" \wc -l`
List existing rulesls -1.claude/rules/*.md 2>/dev/null
Count PRDs`ls docs/prds/*.md 2>/dev/null \wc -l`
Extract PRD sectionsUse Grep to find specific sections by heading pattern
Fast generationSkip manual review step, proceed with standard templates

Examples

See .claude/docs/blueprint-development/ for complete workflow documentation and examples.


For detailed rule templates, command examples, extraction patterns, and project-specific customization, see REFERENCE.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.09%
按下载量换算156

Claude

30.45%
按下载量换算135

Cursor

17.44%
按下载量换算77

Gemini CLI

9.55%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/laurigates/claude-plugins --skill blueprint-development 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills