Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

blueprints-organization蓝图组织

Agent Skill

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

总安装

517

周安装

22

GitHub Stars

143

下载量

181
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/thebushidocollective/han --skill blueprints-organization

简介

blueprints-organization 提供技术蓝图的目录结构与命名规范建议,支持扁平或分层组织方式。

  • 它推荐使用 kebab-case 文件名与单一职责原则,提升跨团队查阅效率。
  • 适用于多系统、多特性的项目,帮助建立可扩展的知识管理体系。
  • 使用前应评估项目规模,选择合适结构并统一团队遵循,避免后期重构成本。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Organizing Technical Blueprints

Directory Structure

blueprints/
├── README.md              # Index and overview
├── {system-name}.md       # One file per system
├── {feature-name}.md      # One file per feature
└── {integration-name}.md  # One file per integration

Flat vs Nested

Prefer flat structure for most projects:

  • Easier to navigate
  • Simpler cross-references
  • Less organizational overhead

Use subdirectories only for very large projects:

blueprints/
├── README.md
├── core/
│   ├── README.md
│   └── *.md
├── features/
│   └── *.md
└── integrations/
    └── *.md

Naming Conventions

File Names

  • Use kebab-case: user-authentication.md
  • Match system/feature names in code
  • Be specific: api-rate-limiting.md not api.md
  • Avoid generic names: utils.md, helpers.md

Good Names

  • mcp-server.md - Specific system
  • settings-merge.md - Specific feature
  • github-integration.md - Specific integration

Bad Names

  • overview.md - Too generic (use README.md)
  • misc.md - Catch-all is a smell
  • new-feature.md - Not descriptive

The blueprints/README.md Index

Every blueprints/ directory needs an index:

# Technical Blueprints

Implementation documentation for {Project Name}.

## Overview

Brief description of what this project does and how blueprints are organized.

## Systems

Core systems and their documentation:

### Core

- [Settings Management](./settings-management.md) - How configuration is loaded and merged
- [Plugin System](./plugin-system.md) - Plugin discovery and loading

### Features

- [MCP Server](./mcp-server.md) - Model Context Protocol implementation
- [Hook Dispatch](./hook-dispatch.md) - How hooks are executed

### Integrations

- [GitHub Integration](./github-integration.md) - GitHub API integration

## Contributing

When adding new blueprints:
1. Check for existing related documentation
2. Use consistent naming and structure
3. Update this index

Avoiding Duplication

The Duplication Problem

Duplicate documentation:

  • Gets out of sync
  • Confuses readers
  • Wastes maintenance effort

Prevention Strategies

  1. Search before creating using native tools # List all existing blueprints Glob("blueprints/*.md") # Search for blueprints mentioning a topic Grep("auth", path: "blueprints/", output_mode: "files_with_matches") # Read a specific blueprint to check coverage Read("blueprints/authentication.md")
  2. One source of truth

- Each concept documented once - Other locations link to the source

  1. Merge related topics

- Combine tightly coupled systems - Split only when truly independent

  1. Cross-reference liberally For authentication details, see [User Authentication](./user-authentication.md).

When to Split vs Merge

Keep together when:

  • Systems are tightly coupled
  • Understanding one requires understanding the other
  • They share significant context

Split apart when:

  • Systems can be understood independently
  • Different audiences need different docs
  • File would exceed ~500 lines

Handling Overlap

When systems overlap:

Option 1: Primary Location + References

Document in one place, reference from others:

# System A

## Authentication

This system uses shared authentication. See [Authentication](./authentication.md) for details.

Option 2: Shared Section

Create a shared blueprint that both reference:

# System A
Uses [Shared Auth](./shared-auth.md)

# System B
Uses [Shared Auth](./shared-auth.md)

# Shared Auth
Details here...

Option 3: Inline with Scope

Document the overlap in each, scoped to that system:

# System A

## Authentication (System A Specific)

How System A specifically uses authentication...

Deprecation

When systems are removed:

  1. Delete the blueprint file - Don't keep "for history"
  2. Update the index - Remove from README.md
  3. Fix broken links - Update any references
  4. Git history - Use version control for history

Auditing Organization

Periodically check:

  • All blueprint files in index?
  • All index entries have files?
  • No obvious duplicates?
  • Names match code terminology?
  • Cross-references work?
  • No orphaned files?

Tools

Find Orphaned Blueprints

# Files not in README.md
for f in blueprints/*.md; do
  grep -q "$(basename $f)" blueprints/README.md || echo "Orphan: $f"
done

Find Duplicate Topics

# Similar file names
ls blueprints/*.md | xargs -n1 basename | sort | uniq -d

# Similar content
grep -l "specific term" blueprints/*.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.91%
按下载量换算54

Codex

22.38%
按下载量换算41

OpenCode

18.15%
按下载量换算33

Antigravity

13.16%
按下载量换算24

windsurf

9.2%
按下载量换算17

Gemini CLI

4.08%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills