원클릭으로
spec-writer
Write specgraph spec documents with correct YAML frontmatter, evidence requirements, and section structure.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Write specgraph spec documents with correct YAML frontmatter, evidence requirements, and section structure.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Write correct @spec JSDoc annotations in TypeScript/JavaScript source files to link code to specgraph spec documents.
Analyse specgraph verify output and identify what evidence is missing to advance specs to their next state.
Interpret the output of `specgraph verify` and explain what each status means and what to do next.
Write a specgraph evidence waiver for a spec requirement that cannot currently be satisfied, with a clear justification and expiry plan.
SOC 직업 분류 기준
| name | spec-writer |
| description | Write specgraph spec documents with correct YAML frontmatter, evidence requirements, and section structure. |
Write a spec document for the feature or component described. Place it in docs/ with a .md extension.
---
id: <UPPERCASE-KEBAB-000> # unique ID, e.g. AUTH-001
title: "Human-readable title"
state: draft | in_progress | accepted | deprecated
kind: functional | non_functional | architecture | interface | constraint
required_evidence:
implementation: E0 # minimum evidence strength needed
# add more dimensions as needed: test_coverage, integration, etc.
# optional:
depends_on: [OTHER-001] # IDs this spec depends on
owner: "Team or person"
tags: [auth, security]
---
| Level | Meaning | Typical source |
|---|---|---|
| E0 | Declared intent | @spec JSDoc annotation |
| E1 | Structural artifact | Beads issue closed, file named after spec |
| E2 | Indexed reference | Cross-reference from another spec |
| E3 | Automated test | Test file with @spec annotation |
| E4 | Runtime proof | CI artifact, coverage report |
draft — early exploration, no evidence requiredin_progress — active development, E0 implementation typically sufficientaccepted — complete, requires E2+ implementation evidencedeprecated — no longer enforcedid stable — downstream annotations and Beads issues reference it.depends_on when this spec only makes sense after another is satisfied.specgraph waivers or docs/waivers/*.md.