一键导入
goga-brainstorm-contracts-annotations
Writing annotations at all levels for a single cell in the brainstorm contracts pipeline
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Writing annotations at all levels for a single cell in the brainstorm contracts pipeline
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Python rules for implementing CODEMANIFEST contracts
Verify each Cell's CODEMANIFEST against the implementation
Generate the final acceptance report with verdict
Defines the acceptance scope — the set of cells for a given functionality
Final acceptance orchestrator for contract-oriented workflows
Cell test coverage assessment for acceptance review
| name | goga-brainstorm-contracts-annotations |
| description | Writing annotations at all levels for a single cell in the brainstorm contracts pipeline |
Write the implementation instructions for the given cell. Process every annotation target in order — cell header,
then each Entity/Routine, then each method/property — and for each one:
Determine the level: global (cell header), type-level (per Entity/Routine), or member-level (per
method/property). The level selects the content — see goga-cookbook "When to write annotations". The global
level additionally includes the base annotations from goga-codemanifest-base (the contract must comply with
their constraints).
Decide what content the annotation needs. Do not invent content — derive it:
[TYPE_DETAIL_REPORT] — responsibility, signature (params and return), methods/properties, interactions.goga-cookbook ("Why") — the content categories that fit the level.Write the annotation by goga-cookbook Annotations writing standard (elements, the Algorithm: placement
rule), references, and the sufficiency criterion: if not sufficient for implementation, add the missing element
(Algorithm: / Requirements: / Constraints:).
Verify against goga-cookbook Annotations — references resolve, no cross-level duplication, no implementation
details.