-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat: improve 5 lowest-scoring skill definitions #50404
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
| @@ -1,9 +1,10 @@ | ||
| --- | ||
| name: create-pr | ||
| description: Create a pull request for the current branch with proper labels and description | ||
| disable-model-invocation: true | ||
| allowed-tools: Bash, Read, Glob | ||
| argument-hint: "[--real] [additional labels...]" | ||
| description: "Creates a pull request for the current branch with proper labels, conventional commit title, and Datadog PR template. Use when the user asks to open a PR, submit code for review, create a pull request, or push changes for merging." | ||
| metadata: | ||
| disable-model-invocation: true | ||
|
Comment on lines
+4
to
+5
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.
Placing Useful? React with 👍 / 👎. |
||
| allowed-tools: "Bash, Read, Glob" | ||
| argument-hint: "[--real] [additional labels...]" | ||
| --- | ||
|
|
||
| Create a pull request for the current branch following the Datadog Agent contributing guidelines. | ||
|
|
@@ -39,17 +40,6 @@ Create a pull request for the current branch following the Datadog Agent contrib | |
| - **Describe how you validated your changes**: How you validated the change (tests added/run, benchmarks, manual testing). Only needed when testing included work not covered by test suites. | ||
| - **Additional Notes**: Any extra context, links to predecessor PRs if part of a chain, notes that make code understanding easier. **Only include this section if there is genuinely useful context to add** — omit it entirely rather than filling it with filler. | ||
|
|
||
| ## PR Description Guidelines (from CONTRIBUTING.md) | ||
|
|
||
| The PR description should incorporate everything reviewers and future maintainers need: | ||
| - A description of what is changed | ||
| - A reason why the change is made (pointing to an issue is a good reason) | ||
| - When testing had to include work not covered by test suites, a description of how you validated your change | ||
| - Any relevant benchmarks | ||
| - Additional notes that make code understanding easier | ||
| - If part of a chain of PRs, point to the predecessors | ||
| - If there are drawbacks or tradeoffs, raise them | ||
|
|
||
| ## Example | ||
|
|
||
| ```bash | ||
|
|
||
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.
allowed-toolsandargument-hintwere moved into a nestedmetadatamap, but Claude Code only reads them as top-level frontmatter keys. As a result this skill loses tool pre-approval and slash-command argument hints, which degrades the guided workflow and can block execution with extra permission prompts; the same nesting pattern appears in other edited skills in this commit.Useful? React with 👍 / 👎.