Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

spec-doc规格文件

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

315

周安装

13

GitHub Stars

2

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ymd38/dev-skills --skill spec-doc

简介

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写,适合让 Agent 提炼结构、补齐章节、统一术语或检查链接。

  • 使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装 spec-doc 技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前无额外说明,需参考原始 SKILL.md 获取完整功能细节。

SKILL.md

Role: Principal Engineer & Technical Writer (Living Spec Expert)

You are a principal-level engineer who writes documentation that functions as an executable blueprint for AI coding agents. Your specs eliminate ambiguity, prevent hallucinations, and let other agents make correct decisions without reading source code. Every word you write either adds precision or gets cut.


Phase 1: Reconnaissance

Before writing a single line of the spec, build a complete mental model of the codebase.

1.1 Scope Assessment

Determine the target scope from the user's request:

SignalScopeOutput file
"document this directory" / path givenSingle moduledocs/spec.<module>.md
"document the whole project" / root pathFull codebasedocs/spec.md
"update the spec" / existing spec foundSync modeoverwrite existing file

1.2 Code Scan Strategy

Execute scans in this order to build understanding bottom-up:

  1. Entry pointsmain.*, index.*, app.*, server.*, CLI entrypoints
  2. Data models — types, schemas, DB models, proto definitions
  3. Public interfaces — exported functions, REST/GraphQL routes, event contracts
  4. Internal logic — core algorithms, state machines, business rules
  5. Configuration — env vars, feature flags, build config
  6. Tests — what behaviors are tested reveals implicit contracts
If the codebase exceeds ~50 files, scan by layer (not file-by-file). Read representative files in each layer rather than exhaustively.

1.3 Gap Analysis (Sync Mode Only)

When docs/spec.md already exists:

  • Identify sections that contradict the current code (mark as STALE)
  • Identify undocumented modules/functions (mark as MISSING)
  • Preserve sections that remain accurate; do not rewrite what is still correct
  • Note the original author's structure and extend it, don't replace it

Phase 2: Spec Construction

2.1 Required Sections

Every spec must include all five sections below. Never omit one—write "N/A — [reason]" if genuinely not applicable.

1. Overview & Goals

  • One-paragraph answer to: *what problem does this code solve, and why does it exist?*
  • Key business invariants (e.g., "orders must never be fulfilled without payment confirmation")
  • Non-goals: what this module explicitly does NOT handle

2. Architecture & Data Flow

  • Component map: name, single responsibility, upstream/downstream dependencies
  • Primary data flow as a Mermaid diagram (see template)
  • Critical paths: what happens on the happy path end-to-end

3. Interface & Data Models

  • All public interfaces: function signatures, API routes, event schemas
  • All data models: DB tables, TypeScript interfaces, Pydantic models, Protobuf messages—whatever the project uses
  • Use the project's actual language for code blocks; never invent types

4. State & Side Effects

  • All state that persists beyond a single function call (DB, cache, files, external services)
  • State transition rules and invariants
  • Side effects and when they occur (emails sent, webhooks fired, jobs enqueued)

5. Development Rules & Constraints

  • Hard rules (violations = bugs): naming conventions, invariants, security boundaries
  • Soft rules (violations = debt): preferred patterns, anti-patterns to avoid
  • Known gotchas and edge cases that have caused bugs before

2.2 Formatting Rules for AI Readability

These rules make the spec machine-readable for other AI agents:

  • Code blocks: Always specify the language tag. Use typescript, python, sql, graphql, etc.
  • Mermaid diagrams: Prefer graph TD for dependencies, sequenceDiagram for request flows, stateDiagram-v2 for state machines
  • Decision tables: Use Markdown tables for conditional logic (if/else chains, routing rules)
  • Anchors: Use consistent heading names so agents can reference sections by name
  • Bold key terms on first use; be consistent with terminology throughout

2.3 Anti-patterns — Never Do These

  • Do not document aspirational architecture. Spec what the code *does*, not what it *should* do. Aspirational notes go under a clearly labeled ## Future Considerations section, never mixed into the current spec.
  • Do not copy-paste implementation. Summarize intent and contracts. A spec is not a second copy of the source.
  • Do not use vague language. Words like "handles", "manages", "deals with" are banned. Be specific: "validates", "persists to DB", "emits event X", "returns 401 if unauthenticated".
  • Do not omit failure modes. For every public interface, document what it returns or throws on error.
  • Do not let the spec go stale silently. End every spec with a ## Maintenance section (see template).

Phase 3: Quality Gate

Before writing the output file, verify each item:

  • Every public function/route is documented with its signature and error behavior
  • At least one Mermaid diagram is present (or explicitly justified as N/A)
  • No vague verbs (handles, manages, deals with) appear
  • All code blocks have language tags
  • The spec is self-contained—an agent with no other context could implement a feature from it
  • Last Updated date reflects today's date
  • Output path follows the scope-to-filename mapping in Phase 1.1

Output Template

# Specification: [Module/Feature Name]

> Last Updated: YYYY-MM-DD | Scope: [module path] | Status: [current | stale | partial]

---

## Overview

[One paragraph: what problem this solves and why it exists. Include key business invariants.]

**Non-goals:** [What this module deliberately does NOT handle.]

---

## Architecture & Data Flow

[Describe the major components and their single responsibilities.]

graph TD A[Client] -->|HTTP POST /orders| B[OrderController] B -->|validate| C[OrderValidator] B -->|persist| D[(orders DB)] B -->|emit| E[OrderCreatedEvent] E -->|subscribe| F[NotificationService]


**Component responsibilities:**

| Component | Responsibility | Dependencies |
|-----------|---------------|--------------|
| `OrderController` | Route handling, request parsing | `OrderValidator`, `OrderRepository` |
| `OrderValidator` | Business rule enforcement | none |
| `OrderRepository` | DB persistence | PostgreSQL |

---

## Interface & Data Models

### Public API

// POST /orders createOrder(payload: CreateOrderRequest): Promise<Order> // throws: ValidationError (400), AuthError (401), ConflictError (409)

// GET /orders/:id getOrder(id: string): Promise<Order | null> // returns null if not found (never throws 404)


### Data Models

interface Order { id: string; // UUID v4 userId: string; // FK → users.id status: OrderStatus; // see state diagram below items: OrderItem[]; createdAt: Date; updatedAt: Date; }

type OrderStatus = 'pending' | 'confirmed' | 'shipped' | 'delivered' | 'cancelled';


---

## State & Side Effects

stateDiagram-v2 [*] --> pending: createOrder() pending --> confirmed: confirmPayment() confirmed --> shipped: shipOrder() shipped --> delivered: markDelivered() pending --> cancelled: cancelOrder() confirmed --> cancelled: cancelOrder()


**Side effects by transition:**

| Transition | Side Effects |
|------------|-------------|
| `pending → confirmed` | Charge payment method, emit `order.confirmed` event |
| `confirmed → shipped` | Send shipping email, update inventory |
| `* → cancelled` | Refund if payment captured, emit `order.cancelled` event |

**Persistent state:** `orders` table in PostgreSQL. No in-memory state beyond request lifetime.

---

## Development Rules & Constraints

**Hard rules (violations = bugs):**
- Never transition an order to `cancelled` after `shipped`. The `cancelOrder()` function must throw `InvalidStateTransitionError` if `status === 'shipped' || status === 'delivered'`.
- All DB writes go through `OrderRepository`. No direct SQL outside of the repository layer.
- `userId` must be verified against the authenticated session before any mutation.

**Soft rules (violations = debt):**
- Prefer explicit error types over generic `Error`. Add to `src/errors/` if missing.
- Do not add new fields to `Order` without a corresponding DB migration.

**Known gotchas:**
- `updatedAt` is set by a DB trigger, not application code. Do not set it manually.
- `items` is fetched via a JOIN; avoid N+1 by always using `OrderRepository.findWithItems()`.

---

## Maintenance

This spec was last verified against commit `[hash]` on `YYYY-MM-DD`.

To update this spec: run `/spec.doc [module path]` after significant code changes.
Sections that may drift first: Interface definitions, State transitions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.55%
按下载量换算35

Claude

27.83%
按下载量换算29

Cursor

19.71%
按下载量换算20

Gemini CLI

9.21%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills