docs: render org procedures inline for agents-target consumers - #2
Merged
Conversation
Contributor
Author
🤖 Automated Review PanelReviewer A (glm-5.1)Verdict: APPROVE Verification performed (all independent, real execution):
Findings (all non-blocking):
Goal alignment: all acceptance criteria around reachability, no dangling generated pointers, and single-source-per-procedure are met and empirically verified. Reviewer B (glm-5.1)Verdict: APPROVE Goal alignment — verified by live re-execution, not just by reading the diff:
Findings (non-blocking):
Nothing breaks existing functionality: skill sources unchanged, local agents target validates and renders deterministically, consumer manifests with local |
shivros
marked this pull request as ready for review
August 27, 2026 22:01
…mers The agents target aggregates config entries only; skills render to SkillDir outputs that target lacks. Declaring architecture, implementation, and review procedures as config entries renders them inline into consumer AGENTS.md, keeping one authoritative source file per procedure while removing dangling .creed/skills/* pointers. COD-444 Co-authored-by: Archon <archon@purelymail.com>
The old text described the removed pointer design and pre-layered consumption status. Documents the shipped layered-source design and the config-entry rendering this branch introduces. COD-444 Co-authored-by: Archon <archon@purelymail.com>
shivros
force-pushed
the
runner/COD-444-skills-reachable-config
branch
from
September 2, 2026 00:40
9ac26ff to
1f5700f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Makes every central TechGodHQ procedure reachable to generic
AGENTS.mdconsumers without duplicating source text.Problem (COD-444): Creed's
agentstarget renders onlyconfig:entries intoAGENTS.md—skills:entries render to SkillDir outputs, which theagentstarget lacks. The org constitution pointed at.creed/skills/{architecture,implementation,review}.md, paths that don't exist in Hydra/Iris consumers.Fix:
.creed/manifest.yaml: declare the three procedure files asconfig:entries (rendered inline intoAGENTS.md), replacing theskills:declarations. One authoritative source file per procedure is preserved — the files under.creed/skills/are untouched..creed/config/org.md: pointer paragraph now references the rendered sections ("follow the Architecture Skill below") instead of nonexistent consumer paths.AGENTS.md: regenerated — constitution + all three procedures render inline, org layer preceding consumer context deterministically.README.md: updated to describe inline rendering and the shipped layered-source consumption model (was describing the removed pointer design and pre-layered status).Probe: real Hydra layered render
Creed binary built from main
afe5dbb(layered sources; the installed v0.3.0 rejects layered manifests). Probe worktree at Hydraorigin/main(c524ccc) with the org layer pinned to this branch's head9ac26ff0c3a374e4ce1ca3aa999c36c8e517f06f:Rendered consumer
AGENTS.mdstructure (org procedures precede Hydra's local context deterministically):Also verified in agent-context itself:
validate/sync/ second sync (0 written, 1 skipped) /diffexit 0, and the committedAGENTS.mdmatches the render.Notes
9ac26ff+ — that's COD-446/COD-447, both currently blocked on the Creed v0.4.x release (COD-445).org/architecture/implementation/reviewwould last-wins-replace the org entry. No current consumer does. Sanctioned by the issue's acceptance criteria.duplicate_source_pathvalidation forbids declaring the same file as bothskillandconfig, so theskills:entries were removed rather than kept alongside.Closes COD-444