Conversation
Add four new skills subcommands for interacting with the skills registry: - `wukong skills list`: Display all registry skills with local install status (CRF-1140) - `wukong skills find <keyword>`: Search registry skills by keyword (CRF-1141) - `wukong skills add [name]`: Install skills from registry with --global/--project flags; interactive multi-select; tracks hashes in mv-manifest.json (CRF-1142) - `wukong skills update`: Batch update outdated skills using checkSkillUpdates API; replaces SKILL.md content and symlinks (CRF-1143) SDK layer adds GraphQL queries for `skills`, `skill`, and `checkSkillUpdates` endpoints, plus WKClient methods with token refresh. Refs: https://mindvalley.atlassian.net/browse/CRF-1140 Refs: https://mindvalley.atlassian.net/browse/CRF-1141 Refs: https://mindvalley.atlassian.net/browse/CRF-1142 Refs: https://mindvalley.atlassian.net/browse/CRF-1143
mfauzaan
previously approved these changes
May 12, 2026
…red code - Add Windows symlink support via cfg(windows) fallback in new common module - Fix skills add crash (EEXIST) when .claude/ symlink exists but .agents/ was deleted - Always recreate symlink on update even if previously deleted - Extract update_manifest and create_skill_symlink to shared common.rs - Compute relative symlink path dynamically instead of hardcoding depth - Handle \r\n line endings in frontmatter parser
Contributor
Author
Manual Test RunTested on macOS with All commands working as expected. ✅ |
mfauzaan
approved these changes
May 15, 2026
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
Adds four new
wukong skillssubcommands for interacting with the skills registry:CRF-1140 —
wukong skills listskillsGraphQL queryinit, not from registry) shown in a separate section✓ project,✓ global,local, or—CRF-1141 —
wukong skills find <keyword>skillsquery with keyword filterlist, filtered to matching resultsCRF-1142 —
wukong skills add [name]--global/--projectflags to skip scope prompt<name>provided and exactly 1 match, auto-selects with confirmationinquire::MultiSelectskillquery, creates.agents/skills/<slug>/SKILL.md+ symlinkmv-manifest.jsonfor future update checksCRF-1143 —
wukong skills updatemv-manifest.jsonfiles for tracked skillscheckSkillUpdatesAPI with all(slug, currentHash)pairsUPDATE_AVAILABLEskillsSDK Changes
skills.graphql,skill.graphql,check_skill_updates.graphqlschema.jsonwithSkill,SkillContent,SkillUpdateState,SkillUpdateStatus,SkillUpdateCheckInputtypes and query fieldsSkillsList,SkillBySlug,CheckSkillUpdatesderive structs inskill.rsfetch_skills(),fetch_skill(),check_skill_updates()to SDKWKClientwukong_client.rsOther
CLAUDE.mdwith pre-commit checks (cargo fmt,cargo clippy,cargo test)Jira