feat(skills): add skill management command and init selection#27
Merged
feat(skills): add skill management command and init selection#27
Conversation
- Migrate .devpilot.json to .devpilot.yaml (YAML format, no backward compat) - Add SkillEntry tracking to Config with UpsertSkill method - Add internal/skillmgr package: GitHub API fetching, install, catalog, Bubble Tea multi-select - Add `devpilot skill add <name[@Version]>` and `devpilot skill list` commands - Add interactive multi-select skill checklist to `devpilot init` Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Add doc comment to DefaultSource exported constant - Replace sb.WriteString(fmt.Sprintf) with fmt.Fprintf in View() - Show skill description in multi-select view (fixes dead desc field) - Add field names to table-driven test cases in TestParseSkillArg - Acknowledge w.Write return values with _, _ in test handlers Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
.devpilot.json→.devpilot.yaml(YAML format, no backward compatibility) — adds askillsarray to track installed skills with name, source, version, and installedAtdevpilot skillcommand —skill add <name[@version]>fetches fromgithub.com/siyuqian/devpilotat the latest release tag (or a pinned tag) and installs into.claude/skills/;skill listshows installed skills in a tabledevpilot initskill selection — interactive multi-select checklist (Bubble Tea) to install skills from the devpilot catalog during project setup; skipped with-yTest plan
make testpasses (all packages)devpilot initshows multi-select checklist, installs selected skills, records them in.devpilot.yamldevpilot init -yskips skill selectiondevpilot skill add pminstalls at latest tag, writes.devpilot.yamlentrydevpilot skill add pm@v0.4.0installs at pinned tagdevpilot skill add nonexistentreturns a clear errordevpilot skill listshows installed skills tabledevpilot skill add pmrun twice silently overwrites🤖 Generated with Claude Code