Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

creating-spec创建规范

Agent Skill

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

总安装

2,234

周安装

95

GitHub Stars

323

下载量

783
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pedronauck/skills --skill creating-spec

简介

creating-spec 用于系统化创建全面的技术规范文档,整合分散功能或规划新模块。

  • 采用分阶段流程:深度探索→功能映射→接口定义→测试策略→部署计划。
  • 适用于 SDK 补全、新功能设计与跨团队协作场景。
  • 必须按顺序执行各阶段,跳过任一环节将导致规范不完整。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Creating Spec

Systematic workflow for creating comprehensive technical specifications that centralize scattered functionality, fill SDK gaps, or plan new feature modules. This skill encodes the proven process used to produce high-quality specs like session-management and tool-registry-bridge specs.

<critical_rules>

MANDATORY WORKFLOW

You MUST follow these phases in order. Skipping phases or combining them will produce incomplete specs.

Phase 1: DEEP EXPLORATION (output only, no writes)

Goal: Map the full landscape of existing code across ALL relevant codebases before proposing anything.

  1. Launch parallel exploration agents (4-5 simultaneous) covering:

- The target package where the spec will be implemented (e.g., providers/sdk) - The reference implementation that has the most complete version (e.g., providers/runtime) - Consumer codebases that have their own versions (e.g., packages/electron/src/agents/, packages/electron/src/looper/) - Any shared packages that contain related types or utilities (e.g., packages/types)

  1. Each explorer must report:

- File paths with key types/interfaces - How components connect and interact - What patterns are used (Effect services, Context.Tag, factories, etc.) - Duplication and fragmentation across codebases

  1. MANDATORY: Read the key files directly after exploration to verify findings. Do NOT rely solely on explorer summaries for type signatures or API shapes.
  2. Present findings FIRST — show the user:

- A cross-codebase comparison table (what exists where) - A duplication map (what's doing the same thing in multiple places) - What should be centralized vs. what should stay where it is - Clear identification of gaps

FORBIDDEN: Writing any files during Phase 1. Output analysis to chat only.

Phase 2: CLARIFICATION (ask questions before writing)

Goal: Resolve design decisions that affect the spec's architecture.

  1. Use the AskUserQuestion tool to ask 2-4 focused questions about:

- Scope decisions (full replacement vs. building blocks vs. thin wrapper) - Automation level (fully automatic vs. manual vs. hybrid) - Backward compatibility concerns (native support vs. consumer handles) - What to include vs. exclude from the centralized module

  1. Question format:

- Each question should have 2-3 concrete options with descriptions - Mark the recommended option with "(Recommended)" - Options should represent genuinely different architectural choices, not trivial preferences

  1. MANDATORY: Wait for user answers before proceeding. Do NOT assume defaults.

FORBIDDEN: Asking more than 4 questions at once. Keep it focused on decisions that materially affect the spec.

Phase 3: SPEC WRITING

Goal: Write a comprehensive specification at the right level of abstraction — behavioral contracts and architectural decisions, not implementation code.

  1. Check existing spec format — Read any previous specs in the same directory (e.g., tasks/prd-sdk/1_*.md, tasks/prd-sdk/2_*.md) to match the established style and structure.
  2. Write the spec following the template structure below.
  3. MANDATORY sections (all must be present):

- Problem Statement (what's broken/duplicated, what it costs today) - Design overview (architecture diagram in ASCII, high-level flow) - New files (directory structure) - Detailed API specifications (interfaces, types, service tags) - What this replaces (file-by-file mapping of what changes where) - Interaction with existing systems (how it coexists with what's already there) - Public API surface (explicit exports list) - High-Level Implementation Overview (consumer-facing code examples) - Testing strategy (unit + integration test plans) - Implementation order (numbered steps with dependencies and parallelization) - Migration path (phased rollout for existing consumers) - What does NOT move (explicit exclusion list with reasons)

Phase 3b: EFFECT-TS COMPLIANCE CHECK

Goal: Verify all code snippets in the spec follow Effect-TS patterns before presenting to the user.

MANDATORY: After writing the spec, audit every code snippet against the effect-ts and effect-ts skills. Check:

  1. Import patterns: Must use import * as Module from "effect/Module", never import {X} from "effect"
  2. Branded types: All domain primitives (IDs, keys, names) must be branded via Schema.String.pipe(Schema.brand("X")). Check existing protocol/branded.ts for established patterns.
  3. Schema class patterns: Schema.Class for records, Schema.TaggedClass for discriminated variants (events, status types). Check how existing events in protocol/events.ts are defined and match exactly.
  4. No Schema.Unknown: Use JsonValue, JsonObject (from protocol/shared.ts), or Schema.Defect (for wrapping external errors). Never Schema.Unknown or bare unknown in types.
  5. No Schema.Enums: Use Schema.Literal("a", "b", "c") for string literal unions. Schema.Enums is only for TypeScript enum types.
  6. No Schema.suspend: Only for recursive types. Not needed for referencing other schemas.
  7. Service pattern: Services must use Context.Tag with static factory methods and static layer. Never module-scoped functions for service logic or layer factories.
  8. Static helpers: Helper/utility functions must be static methods on a helper class (e.g., MyHelpers.resolve()), not module-scoped export const functions.
  9. Effect.fn tracing: All service method implementations must specify Effect.fn("ServiceName.methodName") for observability. Note this requirement explicitly in the spec.
  10. Error handling: Domain errors use Schema.TaggedError. Unknown external errors wrapped with Schema.Defect. No unknown in error channels.
  11. Secrets: API keys and sensitive values use Redacted.Redacted, not plain string.
  12. Testability: Use Clock.currentTimeMillis instead of Date.now() or raw clock callbacks. Effect's TestClock handles test time control.
  13. Immutable state: Service state must be held in Ref or SynchronizedRef, not mutable Map/Set. Prefer HashMap.HashMap from Effect.
  14. Schema.Class construction: When returning instances of Schema.Class types, always use new ClassName({...}) constructors, not plain object literals.

Phase 3c: CROSS-SPEC CONSISTENCY CHECK

Goal: Ensure the new spec doesn't contradict or duplicate definitions from other specs.

MANDATORY: Before finalizing, check against all existing specs in the same directory:

  1. No duplicate definitions: If a type, constant, or function is already defined in another spec, import it — don't redefine. Common sources of duplication:

- Provider family resolution functions - Provider metadata key fallback maps - Type definitions that span multiple concerns

  1. Consistent naming: Same concept must have the same name across all specs. If Spec N defines ProviderFamilyId, Spec N+1 must not call it OpenResponsesProviderFamily.
  2. Compatible types: If two specs extend the same interface (e.g., CompozyCallProviderOptions), list ALL fields from all specs, not just yours.
  3. Implementation ordering: If your spec depends on a type expansion from another spec (e.g., ProviderId growing from 3 to 11 values), document this dependency explicitly in the Implementation Order section.
  4. Canonical ownership: Each type/function/constant must have ONE canonical source file. The spec that defines it is the owner. All other specs that need it must say "Import from src/path/file.ts (defined in Spec N)".

Phase 4: HIGH-LEVEL IMPLEMENTATION (iterate if asked)

Goal: Show concrete consumer-facing API examples that demonstrate how the final result works.

  1. Include in the spec a "High-Level Implementation Overview" section with:

- Setup / configuration code - Registration / initialization code - Usage during streaming or execution - Direct utility usage (codec, helpers, etc.) - Custom provider / extension example - Before/after dependency graph (ASCII)

  1. If user asks for this separately, present it as a concise chat response with annotated code blocks.

</critical_rules>

<spec_template>

Spec Document Structure

Follow this structure for every spec. Sections are numbered for cross-referencing.

# [Feature Name] for [Target Package]

## Problem Statement
- What systems currently exist (list each with location)
- What duplication exists (table format: concern | location A | location B | location C)
- What this costs today (concrete pain points, not abstract)

## Design: [Design Name]
- Architecture diagram (ASCII art showing data flow)
- Key principle (e.g., "fully automatic", "opt-in", "plug-in")

## New Files
- Directory tree of new files to create

## 1-N. Detailed Specifications
- Each major component gets its own numbered section
- Include full TypeScript interfaces with JSDoc
- Show Effect service tags, Layer factories
- Specify error types

## N+1. What This Replaces
- Table: Current File | What Moves | What's Eliminated
- Separate tables per codebase (runtime, agents, looper)

## N+2. Interaction With Existing Systems
- How new code coexists with existing services
- What changes vs. what stays the same

## N+3. Public API Surface
- Explicit export lists from sub-path and main entry

## N+4. High-Level Implementation Overview
- Consumer-facing code examples (setup, usage, customization)
- Before/after dependency graph

## N+5. Testing Strategy
- Unit test plan per module
- Integration test plan
- Migrated tests from existing codebases

## N+6. Implementation Order
- Numbered steps with dependency column and parallelization notes
- Table format: Step | What | Depends On | Parallelizable

## N+7. Migration Path
- Phased rollout (Phase 1, 2, 3...)
- Each phase: what changes, what re-exports, what gets deleted

## N+8. What Does NOT Move
- Table: Concern | Location | Why It Stays
- Be explicit about boundaries

</spec_template>

<quality_standards>

Quality Checklist

Before considering a spec complete, verify:

  • Cross-codebase exploration was done (not just the target package)
  • Duplication map clearly shows what's duplicated where
  • All design decisions were confirmed with the user via AskUserQuestion
  • TypeScript interfaces are complete (not pseudocode)
  • Effect-TS compliance — all code snippets pass Phase 3b checks (branded types, Schema patterns, service patterns, Effect.fn, no Schema.Unknown)
  • Cross-spec consistency — no duplicate definitions, consistent naming, compatible type extensions (Phase 3c)
  • Canonical ownership — every type/function/constant has ONE owning spec, all others import
  • Effect patterns follow project conventions (Context.Tag, Layer, Schema.TaggedError)
  • Implementation order has clear dependency chains (including cross-spec dependencies)
  • Migration path is phased (not big-bang)
  • What does NOT move section explicitly excludes consumer concerns
  • High-level implementation shows real consumer-facing code
  • File path follows the existing spec naming convention (e.g., tasks/prd-sdk/N_feature-name.md)
  • Not over-specified — passes the Spec-vs-Implementation test (see below)

Writing Style

  • Use tables for comparisons and mappings (not prose)
  • Use ASCII art for architecture diagrams (not mermaid)
  • Use TypeScript code blocks for interfaces (not pseudocode)
  • Be concrete: file paths, function names, type names (not "the service" or "the module")
  • Show the "what it costs today" with specific line counts and file names
  • Every section should answer "what changes and what stays the same"

Spec-vs-Implementation Test (Anti-Bloat)

Specs must describe WHAT the system does and WHY, not HOW it does it line-by-line. Apply this test to every code block:

APPROPRIATE in a spec (keep these):

  • Type/schema definitions — these ARE the contract (e.g., Schema.Class, interfaces, branded types)
  • Interface signatures — public API surface with JSDoc
  • Short behavioral pseudocode (< 15 lines) — key algorithm steps at a high level
  • Decision tables — provider → config → behavior mappings
  • ASCII diagrams — architecture, data flow, before/after dependency graphs
  • One example per pattern — show the pattern once, note "apply same pattern for X, Y, Z"

NOT appropriate in a spec (replace these):

  • Full function bodies (> 15 lines) — replace with behavioral description: "When X happens, the system should Y"
  • Repetitive implementations (same pattern shown N times) — show once, use a table for variations
  • Internal state types — internal data structures are implementation details, describe behavior instead
  • Exact variable names and loop structures — over-constrains the implementer
  • Copy-paste-ready production code — if an implementer would copy rather than interpret, it's too detailed

How to fix bloated sections:

  1. Extract the architectural decision from the code and state it in prose ABOVE the code
  2. Replace implementation code with: behavioral contract, mapping table, or interface signature
  3. Move to appendix if reference code is truly needed — label it "Reference Implementation Sketch (non-normative)"
  4. One example rule: Show one concrete example (e.g., one env builder), then use a table for the rest

Example transformation:

BLOATED (131 lines of 8 env builders):

export const buildZaiEnvVars = (config: ZaiConfig): Record<string, string> => {
  const env: Record<string, string> = {};
  env.ANTHROPIC_BASE_URL = "https://api.zai.com/v1";
  if (config.apiKey) env.ANTHROPIC_AUTH_TOKEN = config.apiKey;
  // ... 15 more lines
};
export const buildOpenRouterEnvVars = (config: OpenRouterConfig): ... => { ... };
// ... 6 more builders, same pattern

CORRECT (table + 1 example):

Key decision: Env vars are built fresh per-request (not pre-computed at construction).
ProviderBase URLAuth VarExtra VarsClears API_KEY?
zaihttps://api.zai.com/v1ANTHROPIC_AUTH_TOKENYes
openrouterhttps://openrouter.ai/api/v1ANTHROPIC_AUTH_TOKENYes
...............

All builders follow the same pattern. Reference: buildZaiEnvVars (shown above).

</quality_standards>

<anti_patterns>

What NOT To Do

Workflow Anti-Patterns

  • Do NOT write the spec without exploring first — you will miss duplication and context
  • Do NOT skip the clarification phase — design decisions affect every section
  • Do NOT skip Phase 3b (Effect-TS check) — every spec we wrote without this phase had 5-7 violations
  • Do NOT skip Phase 3c (cross-spec check) — specs 2 and 5 independently defined the same 3 functions with different signatures, causing 3 Critical contradictions
  • Do NOT write the spec without reading previous specs — format consistency AND type consistency matter
  • Do NOT ask more than 4 clarification questions — focus on architectural decisions only

Content Anti-Patterns

  • Do NOT write vague interfaces — include full type signatures with Effect patterns
  • Do NOT propose big-bang migrations — always use phased rollout
  • Do NOT include consumer concerns in the SDK — approval gates, UI streaming, prompt injection stay in consumers
  • Do NOT skip the "What does NOT move" section — explicit boundaries prevent scope creep
  • Do NOT present high-level overview without concrete code — show setup, registration, usage, and customization

Bloat Anti-Patterns (from real audit findings)

  • Do NOT write full function implementations — specs with 100+ line function bodies (env builders, adapters, drivers) bury architectural decisions in code walls. Use behavioral descriptions + tables instead.
  • Do NOT repeat the same pattern N times — show once, table the variations. One env builder shown 8 times = 131 wasted lines; a table + 1 example = 20 lines with better clarity.
  • Do NOT specify internal state typesRegistryState with exact Map key formats is an implementation detail. Describe the behavioral contract ("caches bridges by tool-set signature").
  • Do NOT write copy-paste-ready production code — if an implementer would copy your code verbatim, you've written an implementation, not a spec. Specs should require interpretation.
  • Do NOT bury key decisions in code — the "dual role of request.model" decision was invisible inside a 99-line class body. State decisions in prose BEFORE any code.

Effect-TS Anti-Patterns (from real audit findings)

  • Do NOT use Schema.Unknown — use JsonValue, JsonObject, or Schema.Defect
  • Do NOT use plain type aliases for IDs — use branded schemas: Schema.String.pipe(Schema.brand("X"))
  • Do NOT use Schema.Class for events — discriminated variants (events with type field) must use Schema.TaggedClass
  • Do NOT use Schema.Enums for string literals — use Schema.Literal("a", "b", "c")
  • Do NOT define module-scoped functions — use static methods on helper/service classes
  • Do NOT return plain objects from Schema.Class factories — use new ClassName({...}) constructors
  • Do NOT use raw callbacks for testable operations — use Effect services (e.g., Clock instead of clock?: () => number)
  • Do NOT use as unknown as X double casts — use spread syntax or Schema.encode

Cross-Spec Anti-Patterns (from real audit findings)

  • Do NOT redefine a function that another spec already defines — import it. Common trap: utility functions like resolveProviderMetadata get independently spec'd by multiple gap specs.
  • Do NOT give the same concept different namesProviderFamilyId vs OpenResponsesProviderFamily caused confusion. Pick one name and use it everywhere.
  • Do NOT silently drop fields when extending a shared type — if Spec 1 adds apiKey to an options type and Spec 2 extends that type, include apiKey or explicitly note its removal.
  • Do NOT assume implementation order — if your spec depends on type expansions from another spec (e.g., ProviderId growing from 3 to 11 values), document the dependency in your Implementation Order section.

</anti_patterns>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.35%
按下载量换算285

Claude

30.76%
按下载量换算241

Cursor

17.85%
按下载量换算140

Gemini CLI

9.66%
按下载量换算76

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills