Add custom Copilot skills support for domain-specific planning#13
Merged
colindembovsky merged 8 commits intomainfrom Feb 20, 2026
Merged
Conversation
Co-authored-by: colindembovsky <1932561+colindembovsky@users.noreply.github.com>
Co-authored-by: colindembovsky <1932561+colindembovsky@users.noreply.github.com>
Co-authored-by: colindembovsky <1932561+colindembovsky@users.noreply.github.com>
Co-authored-by: colindembovsky <1932561+colindembovsky@users.noreply.github.com>
Co-authored-by: colindembovsky <1932561+colindembovsky@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add support for custom Copilot skills in Planeteer
Add custom Copilot skills support for domain-specific planning
Feb 13, 2026
Owner
|
@copilot Update the skills location to default to ./github/skills instead of ./planeteer/skills |
Co-authored-by: colindembovsky <1932561+colindembovsky@users.noreply.github.com>
Contributor
Author
Updated skills location from Changes:
New directory structure: All tests passing ✓ |
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.

Copilot SDK v0.1.24-preview.0 added
skillDirectoriesanddisabledSkillsoptions for custom skills. This enables users to provide domain-specific context (e.g., "web-app", "data-pipeline") that improves WBS generation accuracy.Implementation
Skill loading: Skills are read from
.github/skills/*.yamlon startup. Simple regex parsing extracts thenamefield; malformed files are logged and skipped.SDK integration: Skills are passed per-session via
SessionConfig, not client initialization:UI: Refine screen now has Skills view (⇥ to cycle Tree → Batches → Skills). Users toggle skills on/off with Space. Active skills are serialized with the plan.
Planner integration: During WBS generation, enabled skill names are appended to the user content sent to Copilot:
Skills Directory
Skills are stored in
.github/skills/directory, making them part of the repository's GitHub configuration alongside workflows and other GitHub-specific files. This location:Example Skills
Two skills included as templates in
.github/skills/:Each YAML defines instructions and examples that guide Copilot's task breakdown logic.
Data Model
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.