chore(gds): disable generated agents and pin canonical projections - #15
Merged
Conversation
…tructions AGENTS.md and .claude/CLAUDE.md are author-owned, repository-curated instruction here, not GDS projections. Setting generated_agents: false stops the projection generator from overwriting them, while GDS continues to manage only the .gds/ pin files (bundle.lock.yaml + compiled-policy.json). The anchor was copied from the control-plane (where generated_agents: true is correct for a superproject) and inherits a setting that is wrong for a project repository with hand-authored instructions.
Generated projections for rldyour-claudecode with generated_agents: false, so these are the only GDS-managed pin files. AGENTS.md and .claude/CLAUDE.md are deliberately left repository-owned. Pins bundle 0.1.0-dev (development channel) sourced from the control-plane commit recording ADR 0034 (02b9382). Establishes provenance for this project repository so gds context reports proven instead of not-proven.
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.
Why
The repository anchor copied
generated_agents: truefrom the control-plane (correct for a superproject with GDS-managed instructions), but this project'sAGENTS.mdand.claude/CLAUDE.mdare author-owned, repository-curated instruction, not GDS projections. With the flag set totrue, the projection generator would overwrite them with templates.What
.gds/repository.yaml:generated_agents: true → false. GDS now manages only the.gds/pin files and leaves the instruction files alone. (core/projections/generator.goTestGeneratedAgentsFalsePreservesRepositoryOwnedInstructions).gds generate repositoryplan → apply → check):.gds/bundle.lock.yaml— pins bundle0.1.0-dev(development channel), sourced from the control-plane commit recording ADR 0034 (02b9382)..gds/compiled-policy.json— compiled policy for this repository.Verification
gds validate→ succeeded.gds generate repository --check→ success, 0 findings.AGENTS.mdand.claude/CLAUDE.mdconfirmed byte-unchanged (git diff HEADempty for both).pr-requiredtier green:validate_json_schemas,validate_plugin_versions,validate_boundaries,validate_skill_routing,smoke_hooks.