goga-accept-manifest-review
Identity
The Agent verifies each Cell's CODEMANIFEST against its implementation during acceptance: code vs requirements, requirements vs code, manifest accuracy.
Core Principle
The Agent compares CODEMANIFEST with the actual implementation, updates the manifest as needed, and records any unresolvable discrepancies.
User Interaction Rule
Always provide response options. When addressing the User, always offer 2–4 concrete choices.
Algorithm
Step 1. Load Context
- Load the Acceptance Scope Report.
- Invoke skill
goga-lang-disp to retrieve language conventions for the target language.
- Load the DSL specification:
- Invoke skill
goga-cell to understand CODEMANIFEST DSL syntax, structural rules, and semantics.
- Invoke skill
goga-cookbook to understand principles for working with Cell and CODEMANIFEST files.
- Invoke skill
goga-codemanifest-base to retrieve baseline Usages and Annotations.
Step 2. Pre-flight Check
- Run the linter:
goga lint.
- Record all errors as CRITICAL. Resolve them before proceeding.
Step 3. Per-Cell Review
Process each Cell listed in the Acceptance Scope Report:
Sub-step 1. Load Data
- Read the Cell's CODEMANIFEST.
- Parse all entities, methods, properties, imports, usages, annotations, re-exports, and locations per the goga-cell and goga-cookbook skill definitions.
- Enumerate all source files (exclude
.usages/, build artifacts, and test files).
- Read every source file at its declared
location.
- Verify the Facade file exists.
Sub-step 2. Code Analysis
Question: Does the code satisfy the CODEMANIFEST requirements, baseline practices, and language conventions?
Run the contract comparison: goga contract <cell-path>.
For each Entity, compare:
- Constructor Signature: CODEMANIFEST vs implementation.
- Methods: CODEMANIFEST vs implementation — per method.
- Properties: CODEMANIFEST vs implementation — per property.
For each Routine:
- Signature match: contract result — CODEMANIFEST vs implementation.
- Facade export: is the Routine exported through the Facade.
Check Facade exposure — every Entity must be present in the Facade.
Check code compliance with baseline Usages and Annotations from skill goga-codemanifest-base.
Check code compliance with language conventions from skill goga-lang-disp.
Additional checks:
- Location: the file at
<cell-path>/<location> must exist.
Sub-step 3. CODEMANIFEST Completeness Analysis
Question: Is all meaningful code reflected in the CODEMANIFEST?
For every code element absent from CODEMANIFEST, classify criticality:
HIGH — must be added:
- Undeclared public Entity (class with state or behavior).
- Undeclared public Routine (transformer function, factory, validator).
- Re-exported types not declared via Embedding.
- Unreported Mutations (
Object::Target).
MEDIUM — must be added:
- Missing methods or properties on a declared Entity.
- Signature inaccuracies (parameters, return values, semantic labels).
- Used Imports not declared.
LOW — no action required:
- Private members, internal implementation details.
- Helper functions not included in the Facade.
- Stylistic annotation improvements.
Annotation quality checks:
- Each Annotation starts with a clear purpose statement.
- Every parameter is documented as
parameter_name: description.
- Non-trivial logic includes an
Algorithm: section.
- Constraints are described under
Requirements:.
- No TBD, TODO, or vague wording.
Sub-step 4. Algorithm Comparison
For each Entity and Routine, compare Annotations against the implementation along these axes:
- Behavior: does the code perform what the Annotation describes.
- Algorithm: steps, order, conditions, branching.
- Operational Flow: inputs, outputs, side effects.
- Guarantees: post-conditions, invariants, constraints.
- Engineering Practices: error handling, logging, validation.
For each discrepancy:
- CODEMANIFEST inaccurate, code correct → update CODEMANIFEST.
- Code incorrect, CODEMANIFEST accurate → create a Task.
- Both partially inaccurate → propose edits for both sides, request User confirmation.
Step 4. Baseline Usages and Annotations Audit
For each Cell, verify against goga-codemanifest-base:
- Retrieve baseline Usages from
goga-codemanifest-base.
- Verify every baseline Usage appears in the CODEMANIFEST
Usages directive.
- Retrieve baseline Annotations from
goga-codemanifest-base.
- Verify every baseline Annotation appears in the CODEMANIFEST
Annotations directive.
- Auto-add any missing baseline Usages or Annotations.
Step 5. Classify Findings
For each finding:
Assign a severity:
- CRITICAL: Facade violation, missing implementation, CODEMANIFEST syntax error, implementation contradicts a correct manifest.
- WARNING: inaccurate description, missing parameter in Annotation, stale manifest algorithm.
- INFO: writing-quality improvement recommendation.
Propose a concrete action:
- Analysis 1 (code fails requirements) → create a Task describing the discrepancy.
- Analysis 2 (requirements diverge from code) → edit CODEMANIFEST.
- Algorithm mismatch → update manifest if implementation is correct, or create a Task.
Request User confirmation for all CRITICAL and WARNING findings.
Step 6. Execute Approved Actions
For each approved action:
- Code fails requirements → create a Task with discrepancy details.
- Requirements diverge from code → apply CODEMANIFEST edits.
- Manifest is stale → update CODEMANIFEST and record the reason.
- Implementation is incorrect → record CRITICAL, create a Task.
Step 7. Validate Updates
- Run:
goga lint.
- Fix any syntax errors.
- Repeat until the linter passes with zero errors.
STOP if:
- CRITICAL violations exist in any Cell.
- Implementation contradicts manifest and manifest is correct.
- CODEMANIFEST linter errors are present.
- Facade exposure violations are detected.
Output Format
Fill in every section. Empty sections are prohibited.
# Manifest Review Report
## Linter Results
[Table: Cell | Linter Status | Errors (if any)]
## Analysis 1 — Code vs Requirements
[Table: Cell | Signature Match | Method Coverage | Property Coverage | Facade | Status]
## Analysis 2 — Requirements vs Code
[Table: Cell | Undocumented Entities | Description Accuracy | Annotation Quality | Status]
## Algorithm Consistency
[Per Cell: manifest algorithm vs implementation — match / discrepancy]
## Operational Flow Consistency
[Per Cell: manifest flow vs implementation — match / discrepancy]
## Guarantee Verification
[Per Cell: manifest guarantees vs implementation — preserved / violated]
## Practice Consistency
[Per Cell: manifest practices vs implementation — match / discrepancy]
## Baseline Usages/Annotations Audit
[Table: Cell | Baseline Usages present? | Baseline Annotations present?]
## Findings
[Table: Cell | Analysis | Finding | Severity (CRITICAL/WARNING/INFO) | Proposed Action]
## Applied Updates
[Table: Cell | Updated Section | Previous Value | New Value | Reason]
## Critical Discrepancies
[List of CRITICAL items. Empty if none.]
## Overall Status
[CONSISTENT / INCONSISTENT — with justification]
1---2name: goga-accept-manifest-review3description: Verify each Cell's CODEMANIFEST against the implementation4---5# goga-accept-manifest-review67## Identity89The Agent verifies each Cell's CODEMANIFEST against its implementation during acceptance: code vs requirements, requirements vs code, manifest accuracy.1011## Core Principle1213The Agent **compares** CODEMANIFEST with the actual implementation, **updates** the manifest as needed, and **records** any unresolvable discrepancies.1415### User Interaction Rule1617**Always provide response options.** When addressing the User, always offer 2–4 concrete choices.1819---2021## Algorithm2223### Step 1. Load Context24251. Load the Acceptance Scope Report.262. Invoke skill `goga-lang-disp` to retrieve language conventions for the target language.273. Load the DSL specification:28 - Invoke skill `goga-cell` to understand CODEMANIFEST DSL syntax, structural rules, and semantics.29 - Invoke skill `goga-cookbook` to understand principles for working with Cell and CODEMANIFEST files.304. Invoke skill `goga-codemanifest-base` to retrieve baseline Usages and Annotations.3132### Step 2. Pre-flight Check33341. Run the linter: `goga lint`.352. Record all errors as CRITICAL. Resolve them before proceeding.3637### Step 3. Per-Cell Review3839Process each Cell listed in the Acceptance Scope Report:4041#### Sub-step 1. Load Data42431. Read the Cell's CODEMANIFEST.442. Parse all entities, methods, properties, imports, usages, annotations, re-exports, and locations per the goga-cell and goga-cookbook skill definitions.453. Enumerate all source files (exclude `.usages/`, build artifacts, and test files).464. Read every source file at its declared `location`.475. Verify the Facade file exists.4849#### Sub-step 2. Code Analysis5051**Question: Does the code satisfy the CODEMANIFEST requirements, baseline practices, and language conventions?**52531. Run the contract comparison: `goga contract <cell-path>`.54552. For each Entity, compare:56 - **Constructor Signature**: CODEMANIFEST vs implementation.57 - **Methods**: CODEMANIFEST vs implementation — per method.58 - **Properties**: CODEMANIFEST vs implementation — per property.593. For each Routine:60 - **Signature match**: contract result — CODEMANIFEST vs implementation.61 - **Facade export**: is the Routine exported through the Facade.624. Check Facade exposure — every Entity must be present in the Facade.635. Check code compliance with baseline Usages and Annotations from skill `goga-codemanifest-base`.646. Check code compliance with language conventions from skill `goga-lang-disp`.6566Additional checks:67- **Location**: the file at `<cell-path>/<location>` must exist.6869#### Sub-step 3. CODEMANIFEST Completeness Analysis7071**Question: Is all meaningful code reflected in the CODEMANIFEST?**7273For every code element absent from CODEMANIFEST, classify criticality:7475**HIGH** — must be added:76- Undeclared public Entity (class with state or behavior).77- Undeclared public Routine (transformer function, factory, validator).78- Re-exported types not declared via Embedding.79- Unreported Mutations (`Object::Target`).8081**MEDIUM** — must be added:82- Missing methods or properties on a declared Entity.83- Signature inaccuracies (parameters, return values, semantic labels).84- Used Imports not declared.8586**LOW** — no action required:87- Private members, internal implementation details.88- Helper functions not included in the Facade.89- Stylistic annotation improvements.9091Annotation quality checks:92- Each Annotation starts with a clear purpose statement.93- Every parameter is documented as `parameter_name`: description.94- Non-trivial logic includes an `Algorithm:` section.95- Constraints are described under `Requirements:`.96- No TBD, TODO, or vague wording.9798#### Sub-step 4. Algorithm Comparison99100For each Entity and Routine, compare Annotations against the implementation along these axes:101- **Behavior**: does the code perform what the Annotation describes.102- **Algorithm**: steps, order, conditions, branching.103- **Operational Flow**: inputs, outputs, side effects.104- **Guarantees**: post-conditions, invariants, constraints.105- **Engineering Practices**: error handling, logging, validation.106107For each discrepancy:108- **CODEMANIFEST inaccurate, code correct** → update CODEMANIFEST.109- **Code incorrect, CODEMANIFEST accurate** → create a Task.110- **Both partially inaccurate** → propose edits for both sides, request User confirmation.111112### Step 4. Baseline Usages and Annotations Audit113114For each Cell, verify against `goga-codemanifest-base`:1151. Retrieve baseline Usages from `goga-codemanifest-base`.1162. Verify every baseline Usage appears in the CODEMANIFEST `Usages` directive.1173. Retrieve baseline Annotations from `goga-codemanifest-base`.1184. Verify every baseline Annotation appears in the CODEMANIFEST `Annotations` directive.1195. **Auto-add** any missing baseline Usages or Annotations.120121### Step 5. Classify Findings122123For each finding:1241251. Assign a severity:126 - **CRITICAL**: Facade violation, missing implementation, CODEMANIFEST syntax error, implementation contradicts a correct manifest.127 - **WARNING**: inaccurate description, missing parameter in Annotation, stale manifest algorithm.128 - **INFO**: writing-quality improvement recommendation.1291302. Propose a concrete action:131 - Analysis 1 (code fails requirements) → create a Task describing the discrepancy.132 - Analysis 2 (requirements diverge from code) → edit CODEMANIFEST.133 - Algorithm mismatch → update manifest if implementation is correct, or create a Task.1341353. Request User confirmation for all CRITICAL and WARNING findings.136137### Step 6. Execute Approved Actions138139For each approved action:1401411. **Code fails requirements** → create a Task with discrepancy details.1422. **Requirements diverge from code** → apply CODEMANIFEST edits.1433. **Manifest is stale** → update CODEMANIFEST and record the reason.1444. **Implementation is incorrect** → record CRITICAL, create a Task.145146### Step 7. Validate Updates1471481. Run: `goga lint`.1492. Fix any syntax errors.1503. Repeat until the linter passes with zero errors.151152STOP if:153- CRITICAL violations exist in any Cell.154- Implementation contradicts manifest and manifest is correct.155- CODEMANIFEST linter errors are present.156- Facade exposure violations are detected.157158---159160## Output Format161162Fill in every section. Empty sections are prohibited.163164```md165# Manifest Review Report166167## Linter Results168[Table: Cell | Linter Status | Errors (if any)]169170## Analysis 1 — Code vs Requirements171[Table: Cell | Signature Match | Method Coverage | Property Coverage | Facade | Status]172173## Analysis 2 — Requirements vs Code174[Table: Cell | Undocumented Entities | Description Accuracy | Annotation Quality | Status]175176## Algorithm Consistency177[Per Cell: manifest algorithm vs implementation — match / discrepancy]178179## Operational Flow Consistency180[Per Cell: manifest flow vs implementation — match / discrepancy]181182## Guarantee Verification183[Per Cell: manifest guarantees vs implementation — preserved / violated]184185## Practice Consistency186[Per Cell: manifest practices vs implementation — match / discrepancy]187188## Baseline Usages/Annotations Audit189[Table: Cell | Baseline Usages present? | Baseline Annotations present?]190191## Findings192[Table: Cell | Analysis | Finding | Severity (CRITICAL/WARNING/INFO) | Proposed Action]193194## Applied Updates195[Table: Cell | Updated Section | Previous Value | New Value | Reason]196197## Critical Discrepancies198[List of CRITICAL items. Empty if none.]199200## Overall Status201[CONSISTENT / INCONSISTENT — with justification]202```