Split developer/SKILL.md into task-scoped sub-skills; fix npm vulnerabilities - #49757
Merged
Conversation
…ties Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Improve daily skill optimizer functionality
Split developer/SKILL.md into task-scoped sub-skills; fix npm vulnerabilities
Aug 2, 2026
pelikhan
marked this pull request as ready for review
August 2, 2026 11:15
Contributor
There was a problem hiding this comment.
Pull request overview
Splits the oversized developer skill into task-scoped skills and upgrades the Sentry MCP dependency.
Changes:
- Adds four specialized developer sub-skills and routing.
- Upgrades
@sentry/mcp-serverto 0.37.0. - Regenerates npm dependency resolution.
Show a summary per file
| File | Description |
|---|---|
AGENTS.md |
Adds sub-skill routing. |
.github/workflows/package.json |
Updates Sentry MCP dependency. |
.github/workflows/package-lock.json |
Regenerates dependency lock data. |
.github/skills/developer/SKILL.md |
Reduces core skill to commands and routing. |
.github/skills/developer-code-organization/SKILL.md |
Extracts organization guidance. |
.github/skills/developer-security/SKILL.md |
Extracts security guidance. |
.github/skills/developer-internals/SKILL.md |
Extracts compiler guidance. |
.github/skills/developer-release/SKILL.md |
Extracts release guidance. |
Review details
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Files not reviewed (1)
- .github/workflows/package-lock.json: Generated file
- Files reviewed: 7/8 changed files
- Comments generated: 2
- Review effort level: Balanced
| #### Premature Abstraction | ||
| Wait until you have 2-3 use cases before extracting common patterns. | ||
|
|
||
| ### Helper File Conventions |
| "license": "MIT", | ||
| "dependencies": { | ||
| "@sentry/mcp-server": "0.33.0", | ||
| "@sentry/mcp-server": "0.37.0", |
Contributor
|
🎉 This pull request is included in a new release. Release: |
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.
The
developer/SKILL.mdskill file had grown to 2071 lines, violating the repo's lazy-loading policy and degrading skill optimizer signal quality. The@sentry/mcp-serverdependency in.github/workflows/package.jsonhad 13 known vulnerabilities (3 high, 9 moderate, 1 low).Skill decomposition
Split
developer/SKILL.mdinto 4 intent-scoped sub-skills:developer/SKILL.mddeveloper-code-organization/SKILL.mddeveloper-security/SKILL.mddeveloper-internals/SKILL.mddeveloper-release/SKILL.mdThe core
developer/SKILL.mdnow ends with a routing table pointing to each sub-skill by task intent.AGENTS.md routing
Added 4 entries to the "Use these skills by intent" section so agents can discover and lazily load the appropriate sub-skill.
npm dependency fix
Bumped
@sentry/mcp-server0.33.0→0.37.0in.github/workflows/package.jsonwith a regeneratedpackage-lock.json. Resolves all 13 audited vulnerabilities.