-
Notifications
You must be signed in to change notification settings - Fork 2
fix(52): replace stale MCP issue refs and refresh Wave 2 execution #494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ tools: | |
| "search/codebase", | ||
| "search", | ||
| "github", | ||
| "create_issue", | ||
| "issue_write", | ||
| "search_issues", | ||
| "update_issue", | ||
|
Comment on lines
+9
to
11
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This prompt still allow-lists Useful? React with 👍 / 👎. |
||
| ] | ||
|
|
@@ -20,7 +20,7 @@ Create GitHub Issue for the specification at `${file}`. | |
|
|
||
| 1. Analyze specification file to extract requirements | ||
| 2. Check existing issues using `search_issues` | ||
| 3. Create new issue using `create_issue` or update existing with `update_issue` | ||
| 3. Create new issue using `issue_write` or update existing with `update_issue` | ||
| 4. Use `feature_request.yml` template (fallback to default) | ||
|
|
||
| ## Requirements | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ tools: | |
| [ | ||
| "githubRepo", | ||
| "github", | ||
| "get_issue", | ||
| "issue_read", | ||
| "get_issue_comments", | ||
|
Comment on lines
+7
to
8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This swaps Useful? React with 👍 / 👎. |
||
| "get_me", | ||
| "list_issues", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,9 +11,9 @@ tools: | |
| "githubRepo", | ||
| "search", | ||
| "add_issue_comment", | ||
| "create_issue", | ||
| "issue_write", | ||
| "update_issue", | ||
| "get_issue", | ||
| "issue_read", | ||
|
Comment on lines
+14
to
+16
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update the agent-tools validator allowlist for These new tool names are not in Suggested fix--- a/scripts/validation/validate-agents.js
+++ b/scripts/validation/validate-agents.js
@@
const validTools = [
@@
"todo",
"todowrite",
+ "issue_write",
+ "issue_read",
];🤖 Prompt for AI Agents |
||
| "search_issues", | ||
| ] | ||
| metadata: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a single H1 before this section to keep heading levels sequential.
This starts at
##without a preceding#, which breaks the required heading structure for Markdown docs.As per coding guidelines, "**/*.md: Use one H1 per file and keep heading levels sequential".
🤖 Prompt for AI Agents