stackprep-pro 0.2.7__tar.gz → 0.2.8__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.7 → stackprep_pro-0.2.8}/PKG-INFO +1 -1
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/pyproject.toml +1 -1
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/src/stackprep_pro/server.py +4 -2
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/uv.lock +1 -1
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/.claude/settings.json +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/.githooks/pre-commit +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/.github/workflows/publish.yml +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/.gitignore +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/.mcp.json +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/CLAUDE.md +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/README.md +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/scripts/bump_version.sh +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/scripts/generate_readme.py +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/src/stackprep_pro/__init__.py +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/src/stackprep_pro/skills/certification.md +0 -0
- {stackprep_pro-0.2.7 → stackprep_pro-0.2.8}/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.8
|
|
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
|
|
@@ -79,11 +79,13 @@ def start_session(
|
|
|
79
79
|
) -> str:
|
|
80
80
|
"""Start a new stackprep session. Returns a session ID and the skill rules for the AI to follow.
|
|
81
81
|
|
|
82
|
-
STARTUP FLOW (follow exactly, in plain language — never show tool or field names to the user)
|
|
82
|
+
STARTUP FLOW (follow exactly, in plain language — never show tool or field names to the user).
|
|
83
|
+
Present EVERY step of this flow as elegant RENDERED markdown blocks — use bold headers, dividers,
|
|
84
|
+
and bullet/numbered lists so each question renders as a clean UI block. Never output flat plain text.
|
|
83
85
|
1. First ask the user, in plain language, what they want to prep for (e.g. "What would you like to prep for?") and let them indicate interview or certification.
|
|
84
86
|
2. After they choose, check for saved sessions of that mode (call list_sessions silently).
|
|
85
87
|
- If matching saved sessions exist, ask: "Do you want to continue a saved session or start a new one?"
|
|
86
|
-
and list the saved sessions by the name the user gave them.
|
|
88
|
+
and list the saved sessions by the name the user gave them, as a clean markdown list block.
|
|
87
89
|
- If none exist, just proceed to start a new session.
|
|
88
90
|
3. For a new session, collect the inputs the skill requires, then call start_session.
|
|
89
91
|
|
|
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
|