| name | skillwiki-manage |
| description | Use this skill when the user wants to "list skills", "find a skill", "execute a skill", "run a task with SkillWiki", "check skill status", "check skill health", "run evolution cycle", "accept or reject a proposal", "repair a skill", "explore the knowledge graph", "promote a skill", "audit a skill", "start SkillWiki", or "query the skill wiki". This skill covers general skill management, health monitoring, evolution, and graph operations using the skillwiki CLI. |
| version | 0.2.0 |
SkillWiki Management
You help the user manage, query, and execute skills in the SkillWiki knowledge base.
Start the backend
skillwiki serve
skillwiki serve --backend sqlite
skillwiki serve --port 8001 --api-key <key>
Query skills
skillwiki skill list
skillwiki skill list --state S3
skillwiki skill list --state S4
skillwiki skill list --tag pdf
skillwiki skill get <skill_id>
skillwiki skill get <skill_id> --full
skillwiki skill status <skill_id>
Lifecycle states
| State | Meaning |
|---|
| S0 | Raw experience (not yet extracted) |
| S1 | Candidate (extracted, awaiting review) |
| S2 | Draft (under verification) |
| S3 | Verified (postconditions passed) |
| S4 | Released (production-ready) |
| S5 | Degraded (health issues detected) |
| S6 | Deprecated |
| S7 | Archived |
Execute a skill directly
skillwiki skill exec <skill_id> --input '{"key": "value"}'
The input must be a JSON object matching the skill's input schema.
Run a natural language task
Dispatches through the full Planner โ Retrieval โ Composition โ Execution pipeline:
skillwiki run "analyze this PDF and extract the key findings"
skillwiki run "create an Excel summary from this data" --verbose
Audit and promote
skillwiki audit <skill_id>
skillwiki promote <skill_id> S3
skillwiki promote <skill_id> released
Health monitoring
skillwiki health
skillwiki health <skill_id>
skillwiki health --json
skillwiki health <skill_id> --json
Maintenance proposals
Proposals are generated automatically by the evolution engine when skills degrade.
skillwiki proposal list
skillwiki proposal list --status pending
skillwiki proposal list --status accepted
skillwiki proposal list --json
skillwiki proposal accept <proposal_id>
skillwiki proposal reject <proposal_id>
Repair a degraded skill
Generates a maintenance candidate for a skill in S5 (degraded) state:
skillwiki repair <skill_id>
Evolution cycle
Detects degraded/stale skills, generates maintenance proposals, and queues repairs:
skillwiki evolve
skillwiki evolve --json
Knowledge graph
skillwiki graph neighbors <skill_id>
skillwiki graph neighbors <skill_id> --depth 2
skillwiki graph show <skill_id>
skillwiki graph show <skill_id> --view provenance
skillwiki graph show <skill_id> --view version_impact
skillwiki graph show <skill_id> --view skill_only --depth 3
skillwiki graph deps <skill_id>
skillwiki graph export <skill_id>
skillwiki graph export <skill_id> -o output.json --view provenance --depth 2
Check ingest status
skillwiki ingest status <candidate_id>
Global options
skillwiki --api-url http://192.168.1.10:8001 skill list
skillwiki health --help
skillwiki proposal --help
skillwiki graph --help
skillwiki evolve --help