stackprep-pro 0.2.17__tar.gz → 0.2.18__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.17 → stackprep_pro-0.2.18}/PKG-INFO +1 -1
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/pyproject.toml +1 -1
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/src/stackprep_pro/server.py +2 -1
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/uv.lock +1 -1
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/.claude/settings.json +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/.githooks/pre-commit +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/.github/workflows/publish.yml +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/.gitignore +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/.mcp.json +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/CLAUDE.md +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/README.md +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/scripts/bump_version.sh +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/scripts/generate_readme.py +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/src/stackprep_pro/__init__.py +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/src/stackprep_pro/skills/certification.md +0 -0
- {stackprep_pro-0.2.17 → stackprep_pro-0.2.18}/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.18
|
|
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
|
|
@@ -374,7 +374,8 @@ def save_study_pack(session_id: str, name: str, content: str) -> str:
|
|
|
374
374
|
pack_json_path.write_text(json.dumps(pack_data, indent=2, ensure_ascii=False), encoding="utf-8")
|
|
375
375
|
pack_md_path.write_text(f"# Study Pack: {safe_name}\n\n{content}", encoding="utf-8")
|
|
376
376
|
|
|
377
|
-
|
|
377
|
+
# Do NOT delete/end the session here — saving a study pack mid-session must keep
|
|
378
|
+
# the session alive so the user can continue.
|
|
378
379
|
|
|
379
380
|
return (
|
|
380
381
|
f"Study pack '{safe_name}' saved.\n"
|
|
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
|