archive
Use at ship time to merge the spec into the living documentation, delete the staging spec and plan, and ask how to finish.
它会碰到什么
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Living documentation
Always in sync with code. Current ground truth only — atemporal, no history, no plans.
README.md— for users: what it is, who for, how to usedocs/tech-spec.md— for developers/agents: current system state (core backbone, ≤300 lines)docs/specs/<topic>.md— modular subsystem/protocol details; referenced by pathdocs/ROADMAP.md— direction (≥3 milestones or long-term)CHANGELOG.md— version history (shipmaintains)docs/decisions/— architectural rationale (context / choice / ruled-out), append-only
Living doc North Star
> Standard: Zero history, maximum truth density, instant scannability.
> - The Razor: Past rationale belongs in docs/decisions/ or CHANGELOG.md; docs/tech-spec.md holds exclusively active ground truth.
- Atemporal: Describes exclusively current ground truth. No version/milestone headers, changelog deltas, or supersession notes. Mutate in-place.
- Modular (Progressive disclosure): Bulky subsystem specs (>15 lines, schemas, complex state machines) live in
docs/specs/<topic>.md, referenced by a one-line declaration intech-spec.md. - Structured & concise: Atomic declarations (≤25 words per sentence). Multi-attribute contracts use structured bulleted lists or tables; no dense text blocks.
tech-spec format
Declarations only.
purpose: <what problem this solves — one sentence>
user: <who uses this>
use-case: <key scenarios, one line each>
architecture: <structural shape — one line, or see docs/architecture.md>
stack: <language, runtime, frameworks, key deps>
entry: <where execution starts>
contract: <public APIs / interfaces that must not break — stability set; full surface by doc-coverage>
flow: <name>: <trigger> → <steps> → <output>
(complex — branching/async/multi-actor: one-line summary here, diagram in docs/specs/<flow>.md)
invariant: <what must always hold>
constraint: <limits, warnings from code>
convention: <naming, file structure, test patterns, lint/format/typecheck tools, error-handling, security baseline>
milestone: <current milestone> (see docs/ROADMAP.md)
Archive
If topology=multi-module (triage announcement or coordinator spec/plan declaration), read ../references/multi-module.md. Merge each module's artifacts in its own repository first. Then merge shared contracts and integration facts in the coordinator, record the revision set, and archive it last. Keep module-local facts in module repos.
<gate> Before proceeding: (1) verify tdd/subagents have completed all tasks listed in the plan; (2) user has approved shipping/archiving this change (ship disposition or an explicit archive go-ahead). </gate>
- Merge staging spec into living doc:
- Integrate in-place into existing declarations; overwrite modified contracts rather than appending new sections.
- Subsystem details >15 lines go to
docs/specs/<topic>.md. - Maintain concise, structured formatting (lists/tables, no text walls).
- Roadmap (if spec contains
## Roadmap): update roadmap independently; do not duplicate into tech-spec.
- Decisions (if spec or working notes contain a knowledge artifact — protocol spec, RE findings, architectural rationale): save to
docs/decisions/YYYY-MM-DD-<topic>.mdascontext / choice / ruled-out.
<gate> Before deleting staging spec/plan, verify Living Doc North Star: (1) Atemporal (zero history/dates/supersessions)? (2) Truth-dense (binding facts only)? (3) Modular (subsystems >15 lines in docs/specs/)? (4) User approved merged living-doc. </gate>
- Delete
docs/staging/specs/YYYY-MM-DD-<topic>.md— content absorbed; Git has the history. - Delete
docs/staging/plans/YYYY-MM-DD-<topic>.md— plans don't belong onmain.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
plugins/ouonet/praxis/skills/archive/SKILL.md同一个仓库里的其他技能
同名技能的其他版本
有 2 个不同仓库或目录里都有叫 archive 的技能。它们内容并不相同,别混用:
- hashgraph-online/awesome-codex-plugins — File finished shift state into a dated archive so the live files stay lean.