stackprep-pro 0.2.27__tar.gz → 0.2.28__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.27 → stackprep_pro-0.2.28}/PKG-INFO +2 -2
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/README.md +1 -1
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/pyproject.toml +1 -1
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/src/stackprep_pro/server.py +5 -2
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/uv.lock +1 -1
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/.claude/settings.json +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/.cursor/mcp.json +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/.githooks/pre-commit +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/.github/workflows/publish.yml +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/.gitignore +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/.mcp.json +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/CLAUDE.md +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/scripts/bump_version.sh +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/scripts/generate_readme.py +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/src/stackprep_pro/__init__.py +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/src/stackprep_pro/skills/certification.md +0 -0
- {stackprep_pro-0.2.27 → stackprep_pro-0.2.28}/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.28
|
|
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
|
|
@@ -181,7 +181,7 @@ Point this at any Dropbox, Google Drive, or OneDrive folder for cross-platform s
|
|
|
181
181
|
|
|
182
182
|
| Tool | Description | Args |
|
|
183
183
|
|---|---|---|
|
|
184
|
-
| `begin` |
|
|
184
|
+
| `begin` | Start a stackprep prep session. Call this ONLY when the user explicitly triggers stackprep — i.e. | |
|
|
185
185
|
| `start_session` | Start a new stackprep session. Returns a session ID and the skill rules for the AI to follow. | `mode`, `cert_name`, `cv`, `jd`, `extra_topics` |
|
|
186
186
|
| `submit_answer` | Record the result of an answered question. | `session_id`, `result`, `question` |
|
|
187
187
|
| `flag_for_study` | Manually flag the current question for the study pack. | `session_id`, `question` |
|
|
@@ -161,7 +161,7 @@ Point this at any Dropbox, Google Drive, or OneDrive folder for cross-platform s
|
|
|
161
161
|
|
|
162
162
|
| Tool | Description | Args |
|
|
163
163
|
|---|---|---|
|
|
164
|
-
| `begin` |
|
|
164
|
+
| `begin` | Start a stackprep prep session. Call this ONLY when the user explicitly triggers stackprep — i.e. | |
|
|
165
165
|
| `start_session` | Start a new stackprep session. Returns a session ID and the skill rules for the AI to follow. | `mode`, `cert_name`, `cv`, `jd`, `extra_topics` |
|
|
166
166
|
| `submit_answer` | Record the result of an answered question. | `session_id`, `result`, `question` |
|
|
167
167
|
| `flag_for_study` | Manually flag the current question for the study pack. | `session_id`, `question` |
|
|
@@ -128,8 +128,11 @@ def _load_skill(mode: str) -> str:
|
|
|
128
128
|
|
|
129
129
|
@mcp.tool()
|
|
130
130
|
def begin() -> str:
|
|
131
|
-
"""
|
|
132
|
-
|
|
131
|
+
"""Start a stackprep prep session. Call this ONLY when the user explicitly triggers stackprep — i.e.
|
|
132
|
+
they type "stackprep-pro", "stackprep", or clearly ask to start interview/certification prep. Do NOT
|
|
133
|
+
call this automatically, on launch, or at the start of a conversation. Until the user triggers it,
|
|
134
|
+
behave as a normal assistant. Returns the opening question as an elegant markdown block — show it to the
|
|
135
|
+
user VERBATIM (do not rephrase or reformat)."""
|
|
133
136
|
return BEGIN_BLOCK
|
|
134
137
|
|
|
135
138
|
@mcp.tool()
|
|
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
|