stackprep-pro 0.2.8__tar.gz → 0.2.9__tar.gz
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.
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/PKG-INFO +1 -1
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/pyproject.toml +1 -1
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/src/stackprep_pro/server.py +17 -1
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/uv.lock +1 -1
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/.claude/settings.json +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/.githooks/pre-commit +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/.github/workflows/publish.yml +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/.gitignore +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/.mcp.json +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/CLAUDE.md +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/README.md +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/scripts/bump_version.sh +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/scripts/generate_readme.py +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/src/stackprep_pro/__init__.py +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/src/stackprep_pro/skills/certification.md +0 -0
- {stackprep_pro-0.2.8 → stackprep_pro-0.2.9}/src/stackprep_pro/skills/interview.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stackprep-pro
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.9
|
|
4
4
|
Summary: stackprep-pro — interview & certification prep MCP server for any AI client
|
|
5
5
|
Project-URL: Homepage, https://github.com/youngpada1/stackprep-pro
|
|
6
6
|
Project-URL: Repository, https://github.com/youngpada1/stackprep-pro
|
|
@@ -9,7 +9,23 @@ from typing import Any
|
|
|
9
9
|
|
|
10
10
|
from mcp.server.fastmcp import FastMCP
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
SERVER_INSTRUCTIONS = """\
|
|
13
|
+
stackprep-pro — adaptive interview & certification prep.
|
|
14
|
+
|
|
15
|
+
PRESENTATION (applies to EVERY message from the very first one, before and after a session starts):
|
|
16
|
+
Always respond as elegant, RENDERED markdown blocks — use bold headers, dividers, and clean lists or
|
|
17
|
+
tables so each step renders as a polished UI block. NEVER output flat plain text.
|
|
18
|
+
|
|
19
|
+
STARTUP FLOW (in plain human language — never show tool or field names to the user):
|
|
20
|
+
1. Ask what they want to prep for (interview or certification), as a clean block.
|
|
21
|
+
2. After they choose, silently check for saved sessions of that mode. If any exist, ask whether they
|
|
22
|
+
want to continue a saved session (list them by the name the user gave them) or start a new one.
|
|
23
|
+
If none exist, just start a new one.
|
|
24
|
+
3. Collect the inputs the skill requires, then call start_session.
|
|
25
|
+
|
|
26
|
+
Follow the skill rules returned by start_session exactly. The skill is the source of truth for behavior."""
|
|
27
|
+
|
|
28
|
+
mcp = FastMCP("stackprep-pro", instructions=SERVER_INSTRUCTIONS)
|
|
13
29
|
|
|
14
30
|
SKILLS_DIR = Path(__file__).parent / "skills"
|
|
15
31
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|