@warpgogol/forge 0.24.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/AGENTS.md +14 -2
  2. package/dist/os/adr/adr.module.d.ts.map +1 -1
  3. package/dist/os/adr/adr.module.js +31 -0
  4. package/dist/os/adr/adr.module.js.map +1 -1
  5. package/dist/os/adr/handlers/archive.d.ts.map +1 -1
  6. package/dist/os/adr/handlers/archive.js +26 -0
  7. package/dist/os/adr/handlers/archive.js.map +1 -1
  8. package/dist/os/adr/handlers/implement-stamp.d.ts +4 -0
  9. package/dist/os/adr/handlers/implement-stamp.d.ts.map +1 -0
  10. package/dist/os/adr/handlers/implement-stamp.js +258 -0
  11. package/dist/os/adr/handlers/implement-stamp.js.map +1 -0
  12. package/dist/os/adr/handlers/validate.js +1 -1
  13. package/dist/os/adr/handlers/validate.js.map +1 -1
  14. package/dist/os/adr/types.d.ts +16 -0
  15. package/dist/os/adr/types.d.ts.map +1 -1
  16. package/dist/os/adr/types.js +1 -0
  17. package/dist/os/adr/types.js.map +1 -1
  18. package/dist/os/audit/handlers/archive.d.ts.map +1 -1
  19. package/dist/os/audit/handlers/archive.js +34 -0
  20. package/dist/os/audit/handlers/archive.js.map +1 -1
  21. package/dist/os/core/core.module.d.ts.map +1 -1
  22. package/dist/os/core/core.module.js +55 -0
  23. package/dist/os/core/core.module.js.map +1 -1
  24. package/dist/os/core/handlers/pinned-check.d.ts +39 -0
  25. package/dist/os/core/handlers/pinned-check.d.ts.map +1 -0
  26. package/dist/os/core/handlers/pinned-check.js +135 -0
  27. package/dist/os/core/handlers/pinned-check.js.map +1 -0
  28. package/dist/os/core/handlers/pinned-init.d.ts +19 -0
  29. package/dist/os/core/handlers/pinned-init.d.ts.map +1 -0
  30. package/dist/os/core/handlers/pinned-init.js +282 -0
  31. package/dist/os/core/handlers/pinned-init.js.map +1 -0
  32. package/dist/os/core/handlers/pinned-types.d.ts +29 -0
  33. package/dist/os/core/handlers/pinned-types.d.ts.map +1 -0
  34. package/dist/os/core/handlers/pinned-types.js +16 -0
  35. package/dist/os/core/handlers/pinned-types.js.map +1 -0
  36. package/dist/os/core/handlers/pinned-validate.d.ts +4 -0
  37. package/dist/os/core/handlers/pinned-validate.d.ts.map +1 -0
  38. package/dist/os/core/handlers/pinned-validate.js +228 -0
  39. package/dist/os/core/handlers/pinned-validate.js.map +1 -0
  40. package/dist/os/mission/handlers/archive.d.ts.map +1 -1
  41. package/dist/os/mission/handlers/archive.js +34 -0
  42. package/dist/os/mission/handlers/archive.js.map +1 -1
  43. package/dist/os/plan/handlers/archive.d.ts.map +1 -1
  44. package/dist/os/plan/handlers/archive.js +34 -0
  45. package/dist/os/plan/handlers/archive.js.map +1 -1
  46. package/dist/os/rfc/acceptance.d.ts.map +1 -1
  47. package/dist/os/rfc/acceptance.js +20 -2
  48. package/dist/os/rfc/acceptance.js.map +1 -1
  49. package/dist/os/rfc/handlers/archive.d.ts.map +1 -1
  50. package/dist/os/rfc/handlers/archive.js +26 -0
  51. package/dist/os/rfc/handlers/archive.js.map +1 -1
  52. package/dist/os/session/handlers/archive.d.ts.map +1 -1
  53. package/dist/os/session/handlers/archive.js +26 -0
  54. package/dist/os/session/handlers/archive.js.map +1 -1
  55. package/package.json +1 -1
  56. package/skills/_shared/fo-pipeline-conventions.md +22 -0
  57. package/skills/fo/fo-fix/SKILL.md +3 -1
  58. package/skills/fo/fo-idea-implement/SKILL.md +15 -9
  59. package/skills/fo/fo-idea-plan/SKILL.md +2 -2
  60. package/skills/fo/fo-review/SKILL.md +1 -0
@@ -70,7 +70,7 @@ If the RFC is `draft` or `reviewing` and has `enhancedAt` — the user's instruc
70
70
  rfc: accept RFC-XXXX <short title>
71
71
 
72
72
  Transition RFC-XXXX to accepted status for planning.
73
- ```
73
+ ```
74
74
 
75
75
  5. Stage only the RFC file.
76
76
 
@@ -143,7 +143,7 @@ Step ordering follows the contract-first pattern:
143
143
  5. **Validation** — run `rfc.validate`, `build:check`, acceptance probes.
144
144
  6. **Evidence** — run `rfc.verification.emit`, commit evidence file.
145
145
  7. **Review & Fix** — `fo-review` on all session code changes, `fo-fix` if findings (MANDATORY — do not omit from the plan).
146
- 8. **Stamp implemented** — run `rfc.implement.stamp --id RFC-XXXX --implementation-commit <sha>` to transition `accepted → implemented` (RFC). For ADRs, manually set `status: implemented` and `implementedAt` per `fo-idea-implement` step 4.10.
146
+ 8. **Stamp implemented** — run `rfc.implement.stamp --id RFC-XXXX --implementation-commit <sha>` to transition `accepted → implemented` (RFC). For ADRs, run `adr.implement.stamp --id ADR-XXXX --implementation-commit <sha>` per `fo-idea-implement` step 4.10.
147
147
 
148
148
  Mark **human review points** on steps that:
149
149
 
@@ -97,6 +97,7 @@ Beyond what the mechanical floor catches:
97
97
  - **No magic numbers or untyped data** — flag literal constants that should be named, enums, or config; flag strings standing in for domain concepts.
98
98
  - **Minimalism** — flag over-engineered abstractions, speculative generality, duplicated logic, or middle-man modules that can be simplified.
99
99
  - **Dead code** — flag unreachable branches, unused exports, commented-out code blocks.
100
+ - **Unjustified removals** — flag any deletion (field, prop, function, config entry, schema property) where the diff does not show investigation of why the artifact was added. Read `_shared/fo-pipeline-conventions.md` §Removal discipline. A validation error is not justification for removal — it's justification for schema extension. Check `git log`, RFCs, and ADRs for the artifact's origin before accepting the deletion.
100
101
  - **Error handling** — flag swallowed errors, bare `catch` blocks without context, missing error types.
101
102
  - **Fowler code smells** — the following baseline (from _Refactoring_, ch.3) applies always, even when a repo documents nothing. Each smell is a labelled heuristic ("possible Feature Envy"), never a hard violation. A documented repo standard overrides the baseline; skip anything tooling already enforces.
102
103
  - **Mysterious Name** — a function, variable, or type whose name doesn't reveal what it does or holds. → rename it; if no honest name comes, the design's murky.