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

blueprint-derive-rules蓝图导出规则

Agent Skill

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

总安装

1,304

周安装

56

GitHub Stars

28

下载量

457
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

blueprint-derive-rules 用于从 git commit 历史中提取项目决策并编码为 Claude 规则。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 自动识别开发模式,生成一致的 AI 辅助开发指南,支持规则优先级管理。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/blueprint:derive-rules

Extract project decisions from git commit history and codify them as Claude rules. Newer commits override older decisions when conflicts exist.

Use case: Derive implicit project patterns from git history to establish consistent AI-assisted development guidelines.

Usage: /blueprint:derive-rules [--since DATE] [--scope SCOPE]

When to Use This Skill

Use this skill when...Use alternative when...
Want to extract implicit decisions from git historyCreating rules from requirements (use PRDs instead)
Project has significant commit historyNew project with little history
Establishing project coding standardsQuick manual rule creation

Context

  • Git repository:!git rev-parse --git-dir
  • Blueprint initialized:!find docs/blueprint -maxdepth 1 -name 'manifest.json' -type f
  • Total commits:!git rev-list --count HEAD
  • Conventional commits %:!git log --format="%s"
  • Existing rules in default location:!find.claude/rules -maxdepth 1 -name "*.md" -type f
  • Existing rules in blueprint subdir:!find.claude/rules/blueprint -maxdepth 1 -name "*.md" -type f

Parameters

Parse $ARGUMENTS:

  • --since DATE: Analyze commits from specific date (e.g., --since 2024-01-01)
  • --scope SCOPE: Focus on specific area (e.g., --scope api, --scope testing)

Execution

Execute the complete git-to-rules derivation workflow:

Step 0: Resolve the output path

Read structure.generated_rules_path from docs/blueprint/manifest.json (default .claude/rules/):

RULES_DIR=$(jq -r '.structure.generated_rules_path // ".claude/rules/"' docs/blueprint/manifest.json)
mkdir -p "$RULES_DIR"

Use $RULES_DIR for all subsequent reads/writes and conflict checks. Hand-written files in the parent .claude/rules/ are intentionally invisible to this skill (issue #1043).

Step 1: Verify prerequisites

  1. If not a git repository → Error: "This directory is not a git repository"
  2. If Blueprint not initialized → Suggest /blueprint:init first
  3. If few commits (< 20) → Warn: "Limited commit history; derived rules may be incomplete"

Step 2: Analyze git history quality

  1. Calculate total commits in scope
  2. Calculate conventional commits percentage
  3. Report quality: Higher % = higher confidence in extracted rules
  4. Parse --since and --scope flags to determine analysis range

Step 3: Extract decision-bearing commits

Use parallel agents to analyze git history efficiently (see REFERENCE.md):

  • Agent 1: Analyze refactor: commits for code style patterns
  • Agent 2: Analyze fix: commits for repeated issue types
  • Agent 3: Analyze feat!: and BREAKING CHANGE: commits for architecture decisions
  • Agent 4: Analyze chore: and build: commits for tooling decisions

Consolidate findings by domain (code-style, testing, api-design, etc.), chronologically (newest first), and by frequency (most common wins).

Step 4: Resolve conflicts

When multiple commits address the same topic:

  1. Detect conflicts using pattern matching: git log --format="%H|%ai|%s" | grep "{topic}"
  2. Apply resolution strategy:

- Newer overrides older: Latest decision wins - Higher frequency wins: If 5 commits say X and 1 says Y, X wins - Breaking changes override: feat!: trumps regular commits

  1. Mark overridden decisions as "superseded" with reference to newer decision
  2. Confirm significant decisions with user via AskUserQuestion

Step 5: Generate rules in $RULES_DIR

For each decision, generate rule file using template from REFERENCE.md. Write each file to $RULES_DIR/<filename>.md (the configured structure.generated_rules_path):

  1. Extract source commit, date, type
  2. Determine confidence level (High/Medium/Low based on commit frequency and clarity)
  3. Generate actionable rule statement
  4. Include code examples from commit diffs
  5. Reference any superseded earlier decisions
  6. Add paths frontmatter when the rule is naturally scoped to specific file types (see REFERENCE.md for suggested patterns per category)

Generate separate rule files by category (see REFERENCE.md):

  • code-style.md, testing-standards.md, api-conventions.md, error-handling.md, dependencies.md, security-practices.md

Path-scope rules where appropriate — e.g., testing-standards.md scoped to test files reduces context noise when working on non-test code.

Step 6: Handle conflicts with existing rules

Check for conflicts with existing rules only under $RULES_DIR (never the parent .claude/rules/, which may contain hand-authored content unrelated to blueprint):

  1. If conflicts found → Ask user: Git-derived overrides existing rule, or keep existing?
  2. Apply user choice: Update, merge, or keep separate
  3. Document conflict resolution in rule file

Step 7: Update task registry

Update the task registry entry in docs/blueprint/manifest.json:

jq --arg now "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
  --arg sha "$(git rev-parse HEAD 2>/dev/null)" \
  --argjson processed "${COMMITS_ANALYZED:-0}" \
  --argjson created "${RULES_DERIVED:-0}" \
  '.task_registry["derive-rules"].last_completed_at = $now |
   .task_registry["derive-rules"].last_result = "success" |
   .task_registry["derive-rules"].context.commits_analyzed_up_to = $sha |
   .task_registry["derive-rules"].stats.runs_total = ((.task_registry["derive-rules"].stats.runs_total // 0) + 1) |
   .task_registry["derive-rules"].stats.items_processed = $processed |
   .task_registry["derive-rules"].stats.items_created = $created' \
  docs/blueprint/manifest.json > tmp.json && mv tmp.json docs/blueprint/manifest.json

Step 8: Update manifest and report

  1. Update docs/blueprint/manifest.json with derived rules metadata: timestamp, commits analyzed, rules generated, source commits
  2. Generate completion report showing:

- Commits analyzed (count and date range) - Conventional commits percentage - Rules generated by category - Confidence scores per rule - Any conflicts resolved

  1. Prompt user for next action: Review rules, execute derived development workflow, or done

Agentic Optimizations

ContextCommand
Check git status`git rev-parse --git-dir 2>/dev/null && echo "YES" \\echo "NO"`
Count total commits`git rev-list --count HEAD 2>/dev/null \\echo "0"`
Conventional commits %`git log --format="%s" \grep -c "^(feat\fix\refactor)" \\echo 0`
Extract decision commits`git log --format="%H\%s\%b" \grep -E "(always\never\must\prefer)"`
Fast derivationUse parallel agents (Explore) for multi-domain analysis

For git analysis patterns, rule templates, conflict resolution, and detailed procedures, see REFERENCE.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.71%
按下载量换算168

Claude

32.42%
按下载量换算148

Cursor

17.51%
按下载量换算80

Gemini CLI

9.26%
按下载量换算42

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills