Metadata-Version: 2.4
Name: skill-manager-mcp
Version: 0.1.2
Summary: Self-steering skill management MCP with RAG-based prediction matching
Author-email: Isaac Wostrel-Rubin <isaac@sanctuary.systems>
License-Expression: LicenseRef-GPBL-1.0
Project-URL: Homepage, https://github.com/sancovp/skill-manager-mcp
Project-URL: Repository, https://github.com/sancovp/skill-manager-mcp
Project-URL: Issues, https://github.com/sancovp/skill-manager-mcp/issues
Keywords: mcp,skills,rag,self-steering,claude-code,compound-intelligence
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp>=1.0.0
Requires-Dist: chromadb>=0.4.0
Requires-Dist: pydantic>=2.0.0
Dynamic: license-file

# Skill Manager

Self-steering skill management MCP with RAG-based prediction matching.

Part of the [GNOSYS](https://github.com/sancovp/gnosys) compound intelligence ecosystem.

## Features

- Create/manage skills compatible with Claude Code's skill format
- Skillsets for grouping related skills
- RAG-based skill search using ChromaDB
- SkillLog prediction matching for self-steering

## Usage

```bash
pip install skill-manager-mcp
```

Add to your MCP config:
```json
{
  "skill-manager": {
    "command": "skill-manager"
  }
}
```

## Tools

- `list_skills` - List all available skills
- `get_skill` - Get full skill content
- `create_skill` - Create a new skill
- `search_skills` - Semantic search for skills
- `match_skilllog` - Match SkillLog predictions
- `list_skillsets` - List skill groups
- `create_skillset` - Create skill group
- `activate_skillset` - Load all skills in a group
- `add_to_skillset` - Add skill to group
