progressive-skills-mcp 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- progressive_skills_mcp/_version.py +1 -1
- {progressive_skills_mcp-0.2.1.dist-info → progressive_skills_mcp-0.2.2.dist-info}/METADATA +85 -12
- {progressive_skills_mcp-0.2.1.dist-info → progressive_skills_mcp-0.2.2.dist-info}/RECORD +5 -5
- {progressive_skills_mcp-0.2.1.dist-info → progressive_skills_mcp-0.2.2.dist-info}/WHEEL +0 -0
- {progressive_skills_mcp-0.2.1.dist-info → progressive_skills_mcp-0.2.2.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: progressive-skills-mcp
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: MCP server that exposes Claude-style skills to any MCP client.
|
|
5
5
|
Keywords: mcp,skills,fastmcp,claude
|
|
6
6
|
Author: Eleanor Berger
|
|
@@ -92,25 +92,92 @@ pip install progressive-skills-mcp
|
|
|
92
92
|
progressive-skills-mcp
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
+
## System Prompt Configuration
|
|
96
|
+
|
|
97
|
+
Progressive disclosure works by adding skill metadata to your LLM agent's system prompt. This tells the agent what skills are available **without** loading all the detailed instructions.
|
|
98
|
+
|
|
99
|
+
### Step 1: Generate Metadata
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
progressive-skills-mcp --generate-metadata > skills-metadata.txt
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
This outputs:
|
|
106
|
+
|
|
107
|
+
```markdown
|
|
108
|
+
## Available Skills
|
|
109
|
+
|
|
110
|
+
You have access to specialized skills that provide detailed instructions for specific tasks. When a task requires specialized knowledge or a specific workflow, use the `load_skill` tool to get the full instructions.
|
|
111
|
+
|
|
112
|
+
### How to Use Skills
|
|
113
|
+
|
|
114
|
+
1. Check if a skill is relevant to the user's request
|
|
115
|
+
2. Call `load_skill("skill-name")` to get detailed instructions
|
|
116
|
+
3. Follow the instructions in the skill
|
|
117
|
+
4. Use `read_skill_file()` if the skill references additional resources
|
|
118
|
+
|
|
119
|
+
**Available skills:**
|
|
120
|
+
|
|
121
|
+
- **context7-docs-lookup**: Look up documentation from Context7 for libraries and frameworks
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### Step 2: Add to Agent System Prompt
|
|
125
|
+
|
|
126
|
+
Copy the metadata output and add it to your LLM agent's system prompt. For example, in **Onyx**, **LibreChat**, or **Open WebUI**:
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
You are a helpful AI assistant.
|
|
130
|
+
|
|
131
|
+
[... other system prompt content ...]
|
|
132
|
+
|
|
133
|
+
## Available Skills
|
|
134
|
+
|
|
135
|
+
You have access to specialized skills that provide detailed instructions for specific tasks...
|
|
136
|
+
|
|
137
|
+
- **context7-docs-lookup**: Look up documentation from Context7...
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### Step 3: Agent Uses Skills
|
|
141
|
+
|
|
142
|
+
When relevant, the agent will:
|
|
143
|
+
|
|
144
|
+
1. **See skill in system prompt** → "context7-docs-lookup is available"
|
|
145
|
+
2. **Call load_skill** → `load_skill("context7-docs-lookup")`
|
|
146
|
+
3. **Receive full instructions** → Complete SKILL.md content
|
|
147
|
+
4. **Follow instructions** → Execute the skill workflow
|
|
148
|
+
|
|
149
|
+
### Example Conversation
|
|
150
|
+
|
|
151
|
+
**User:** "How do I use React hooks in Next.js?"
|
|
152
|
+
|
|
153
|
+
**Agent thinks:** *The context7-docs-lookup skill can help with documentation lookup*
|
|
154
|
+
|
|
155
|
+
**Agent calls:** `load_skill("context7-docs-lookup")`
|
|
156
|
+
|
|
157
|
+
**Agent receives:** Full skill instructions on how to use Context7 API
|
|
158
|
+
|
|
159
|
+
**Agent executes:** Follows skill instructions to look up Next.js documentation
|
|
160
|
+
|
|
161
|
+
**Agent responds:** "Here's how to use React hooks in Next.js..." (with accurate docs)
|
|
162
|
+
|
|
95
163
|
## Progressive Disclosure
|
|
96
164
|
|
|
97
165
|
### Level 1: System Prompt (Once per conversation)
|
|
98
166
|
```markdown
|
|
99
167
|
## Available Skills
|
|
100
|
-
- **
|
|
101
|
-
- **pptx**: Create presentations
|
|
168
|
+
- **context7-docs-lookup**: Look up documentation
|
|
102
169
|
```
|
|
103
170
|
**Cost:** ~200 tokens, sent ONCE
|
|
104
171
|
|
|
105
172
|
### Level 2: On-Demand Instructions
|
|
106
173
|
```python
|
|
107
|
-
load_skill("
|
|
174
|
+
load_skill("context7-docs-lookup") # Returns full SKILL.md
|
|
108
175
|
```
|
|
109
176
|
**Cost:** 0 tokens until loaded
|
|
110
177
|
|
|
111
178
|
### Level 3: Referenced Resources
|
|
112
179
|
```python
|
|
113
|
-
read_skill_file("
|
|
180
|
+
read_skill_file("context7-docs-lookup", "references/api.md")
|
|
114
181
|
```
|
|
115
182
|
**Cost:** 0 tokens until accessed
|
|
116
183
|
|
|
@@ -125,16 +192,22 @@ read_skill_file("pptx", "references/api.md")
|
|
|
125
192
|
For Onyx or other MCP clients that support system prompts:
|
|
126
193
|
|
|
127
194
|
```bash
|
|
195
|
+
# Markdown format (default)
|
|
128
196
|
progressive-skills-mcp --generate-metadata
|
|
129
|
-
```
|
|
130
197
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
You have access to specialized skills...
|
|
198
|
+
# JSON format
|
|
199
|
+
progressive-skills-mcp --generate-metadata --format json
|
|
200
|
+
```
|
|
136
201
|
|
|
137
|
-
|
|
202
|
+
JSON output:
|
|
203
|
+
```json
|
|
204
|
+
[
|
|
205
|
+
{
|
|
206
|
+
"name": "context7-docs-lookup",
|
|
207
|
+
"description": "Look up documentation from Context7 for libraries and frameworks",
|
|
208
|
+
"allowed_tools": []
|
|
209
|
+
}
|
|
210
|
+
]
|
|
138
211
|
```
|
|
139
212
|
|
|
140
213
|
## Usage
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
progressive_skills_mcp/__init__.py,sha256=WFbujAfiFsm3g567Ea91ZXjhLesI78EVhc3Ao3oy1PM,522
|
|
2
2
|
progressive_skills_mcp/__main__.py,sha256=AFR1CXSuPL4Td1RPNWZzuUXntdaHqgJOp9DL5iPk8QM,215
|
|
3
3
|
progressive_skills_mcp/_server.py,sha256=jWuqHTTad8ECpawX-qd0PdNCodb0t2hcOPJo5qUnxVI,41991
|
|
4
|
-
progressive_skills_mcp/_version.py,sha256=
|
|
4
|
+
progressive_skills_mcp/_version.py,sha256=aRZvnn0d3cT0nCnucc8oQ7KxmH8nEH65UHo0SQmxtNE,106
|
|
5
5
|
progressive_skills_mcp/progressive_disclosure.py,sha256=rSOGm0XodEXMoNlRTnkyPeDFiY3yug1i_pv3aUvHqPE,5855
|
|
6
6
|
progressive_skills_mcp/skills/context7-docs-lookup.zip,sha256=9jvk8QROayFq249BxCUCi2dhvaUdH2eOdEZunHjNSkg,2430
|
|
7
|
-
progressive_skills_mcp-0.2.
|
|
8
|
-
progressive_skills_mcp-0.2.
|
|
9
|
-
progressive_skills_mcp-0.2.
|
|
10
|
-
progressive_skills_mcp-0.2.
|
|
7
|
+
progressive_skills_mcp-0.2.2.dist-info/WHEEL,sha256=5DEXXimM34_d4Gx1AuF9ysMr1_maoEtGKjaILM3s4w4,80
|
|
8
|
+
progressive_skills_mcp-0.2.2.dist-info/entry_points.txt,sha256=v3yDRF-b-QfYLa8bfmOvTr40hHKTy9F0166K-DfoyGo,80
|
|
9
|
+
progressive_skills_mcp-0.2.2.dist-info/METADATA,sha256=5ihcmxPu5093uyJ8OFXIXZ8fcHaGdUewV2_dNo6Mu_o,8164
|
|
10
|
+
progressive_skills_mcp-0.2.2.dist-info/RECORD,,
|
|
File without changes
|
{progressive_skills_mcp-0.2.1.dist-info → progressive_skills_mcp-0.2.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|