Skip to content

Commit 88ddd52

Browse files
mydeaclaude
andcommitted
ci(fix-issue): Register skill in agents.toml for dotagents tracking
A reviewer flagged the unregistered skill as a discovery bug — that claim is wrong (`.claude/skills` is a directory-level symlink to `.agents/skills`, so all skills under there resolve regardless of `agents.toml` registration), but the registration is still worth doing: - `agents.lock` only contains integrity hashes for registered skills; unregistered ones are invisible to `dotagents install` verification. - Every other in-repo skill (`triage-issue`, `release`, etc.) uses `source = "path:.agents/skills/<name>"` — inconsistent omission. - If `dotagents` ever adds destructive sync behavior, unregistered skills are at risk. Not touching `agents.lock` — the next `dotagents install` run regenerates it with the computed integrity hash. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 2d85ef7 commit 88ddd52

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

agents.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ source = "path:.agents/skills/add-cdn-bundle"
2626
name = "e2e"
2727
source = "path:.agents/skills/e2e"
2828

29+
[[skills]]
30+
name = "fix-issue"
31+
source = "path:.agents/skills/fix-issue"
32+
2933
[[skills]]
3034
name = "fix-security-vulnerability"
3135
source = "path:.agents/skills/fix-security-vulnerability"

0 commit comments

Comments
 (0)