self-development: Fix configuration alignment issues#453
Merged
Conversation
gjkim42
approved these changes
Feb 27, 2026
- Fix two typos in axon-workers.yaml priorityLabels: "priority/imporant-soon" -> "priority/important-soon" "priority/import-longterm" -> "priority/important-longterm" These typos meant issues with important-soon and important-longterm priorities were not being correctly ordered by the workers spawner. - Add Project Conventions section to agentconfig.yaml syncing it with CLAUDE.md: Makefile targets, testing, logging, and commit message conventions are now available to all agents via the shared AgentConfig. - Add missing ttlSecondsAfterFinished and podOverrides to axon-triage.yaml for consistency with other TaskSpawners. Without a TTL, completed triage Task objects accumulate indefinitely.
bbea784 to
4f95872
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.
🤖 Axon Agent @gjkim42
Summary
Focused review of Configuration Alignment across self-development workflow files. Three concrete issues found and fixed:
priority/imporant-soonandpriority/import-longterm), which meant the spawner could not match issues withpriority/important-soonorpriority/important-longtermlabels for correct priority ordering. Verified against actual repository labels.CLAUDE.md— Makefile targets, testing requirements, logging conventions, and commit message rules. All coding agents now receive these instructions automatically.Evidence
gh label listconfirms the correct labels arepriority/important-soonandpriority/important-longtermCLAUDE.mdcontains Makefile targets, logging, testing, and commit conventions not present in agentconfig.yamlaxon-workers,axon-fake-strategist,axon-fake-user,axon-self-update) have bothttlSecondsAfterFinishedandpodOverrides;axon-triagewas the only one missing themTest plan
axon-workersTaskSpawner correctly orders issues by priority after label fixSummary by cubic
Aligned self-development configs to fix priority handling, enforce triage cleanup, and standardize agent behavior with shared project conventions. This improves task ordering, cluster hygiene, and developer consistency.
Bug Fixes
New Features
Written for commit 4f95872. Summary will update on new commits.