Skip to content

Commit 7071343

Browse files
committed
fix: correct source paths with ./ prefix
Add "./" prefix to all command and agent source paths as required by manifest validation.
1 parent 17bb5c9 commit 7071343

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,29 +29,29 @@
2929
"commands": {
3030
"fix-ci": {
3131
"description": "Auto-detect, analyze, and fix CI/CD failures on any branch",
32-
"source": "commands/fix-ci.md"
32+
"source": "./commands/fix-ci.md"
3333
},
3434
"create-pr": {
3535
"description": "Create GitHub Pull Request with proper formatting and context",
36-
"source": "commands/create-pr.md"
36+
"source": "./commands/create-pr.md"
3737
},
3838
"address-pr-comments": {
3939
"description": "Interactive or autonomous PR comment resolution with confidence scoring",
40-
"source": "commands/address-pr-comments.md"
40+
"source": "./commands/address-pr-comments.md"
4141
},
4242
"review-pr": {
4343
"description": "Comprehensive PR review with detailed analysis and actionable feedback",
44-
"source": "commands/review-pr.md"
44+
"source": "./commands/review-pr.md"
4545
}
4646
},
4747
"agents": {
4848
"ci-log-analyzer": {
4949
"description": "Specialized agent for parsing CI logs and identifying error patterns",
50-
"source": "agents/ci-log-analyzer.md"
50+
"source": "./agents/ci-log-analyzer.md"
5151
},
5252
"ci-error-fixer": {
5353
"description": "Specialized agent for applying fixes based on CI error types",
54-
"source": "agents/ci-error-fixer.md"
54+
"source": "./agents/ci-error-fixer.md"
5555
}
5656
}
5757
}

0 commit comments

Comments
 (0)