stackprep-pro 0.2.5__tar.gz → 0.2.6__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.5 → stackprep_pro-0.2.6}/CLAUDE.md +2 -1
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/PKG-INFO +1 -1
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/pyproject.toml +1 -1
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/src/stackprep_pro/server.py +1 -1
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/src/stackprep_pro/skills/certification.md +26 -4
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/src/stackprep_pro/skills/interview.md +22 -5
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/uv.lock +1 -1
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/.claude/settings.json +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/.githooks/pre-commit +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/.github/workflows/publish.yml +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/.gitignore +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/.mcp.json +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/README.md +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/scripts/bump_version.sh +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/scripts/generate_readme.py +0 -0
- {stackprep_pro-0.2.5 → stackprep_pro-0.2.6}/src/stackprep_pro/__init__.py +0 -0
|
@@ -38,4 +38,5 @@ Rules for working on this repo. **Do NOT violate these. Do NOT touch things that
|
|
|
38
38
|
|
|
39
39
|
## Commit messages
|
|
40
40
|
|
|
41
|
-
-
|
|
41
|
+
- **ALWAYS give a commit title after making any change.** Every time you edit files, end your response with a single concise conventional-commit title — never skip it, never make the user ask for it.
|
|
42
|
+
- Do not commit/push unless explicitly asked.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stackprep-pro
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.6
|
|
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
|
|
@@ -80,7 +80,7 @@ def start_session(
|
|
|
80
80
|
"""Start a new stackprep session. Returns a session ID and the skill rules for the AI to follow.
|
|
81
81
|
|
|
82
82
|
STARTUP FLOW (follow exactly, in plain language — never show tool or field names to the user):
|
|
83
|
-
1. First ask
|
|
83
|
+
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
84
|
2. After they choose, check for saved sessions of that mode (call list_sessions silently).
|
|
85
85
|
- If matching saved sessions exist, ask: "Do you want to continue a saved session or start a new one?"
|
|
86
86
|
and list the saved sessions by the name the user gave them.
|
|
@@ -9,11 +9,33 @@ Adaptive certification exam prep — one question at a time, with instant feedba
|
|
|
9
9
|
|
|
10
10
|
## Session setup
|
|
11
11
|
|
|
12
|
-
Inputs arrive via MCP (certification name, extra topics).
|
|
13
|
-
- Exam structure overview
|
|
14
|
-
- Key domains and weightings from the latest official exam guide
|
|
12
|
+
Inputs arrive via MCP (certification name, extra topics). After looking up the latest official exam guide, present a clean, structured overview in this exact layout:
|
|
15
13
|
|
|
16
|
-
|
|
14
|
+
```
|
|
15
|
+
[Cert name + code] — confirmed active as of [date] (replaces [prev version] if applicable).
|
|
16
|
+
|
|
17
|
+
**Exam structure:**
|
|
18
|
+
— [N] questions | [time] min | Passing: [score] | [price] via [provider]
|
|
19
|
+
|
|
20
|
+
**Domains & weightings:**
|
|
21
|
+
|
|
22
|
+
| Domain | Weight |
|
|
23
|
+
|------------------------------------------|--------|
|
|
24
|
+
| [Domain 1] | [X]% |
|
|
25
|
+
| [Domain 2] | [X]% |
|
|
26
|
+
| ... | ... |
|
|
27
|
+
|
|
28
|
+
**Notable [version] additions:** [short note on what's new, if applicable].
|
|
29
|
+
|
|
30
|
+
**Sources:**
|
|
31
|
+
— [Title] ([url])
|
|
32
|
+
— [Title] ([url])
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
Ready when you are — first question?
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Then wait — questions are requested one at a time.
|
|
17
39
|
|
|
18
40
|
## Question format
|
|
19
41
|
|
|
@@ -9,12 +9,29 @@ Adaptive technical interview prep — one question at a time, with instant feedb
|
|
|
9
9
|
|
|
10
10
|
## Session setup
|
|
11
11
|
|
|
12
|
-
Inputs arrive via MCP (CV, job description, extra topics).
|
|
13
|
-
- Seniority level inferred from CV
|
|
14
|
-
- Key domains
|
|
15
|
-
- Top skill gaps vs. the job description
|
|
12
|
+
Inputs arrive via MCP (CV, job description, extra topics). After analysing the CV and JD, present a clean, structured overview in this exact layout:
|
|
16
13
|
|
|
17
|
-
|
|
14
|
+
```
|
|
15
|
+
[Role / target position] — [seniority level inferred from CV].
|
|
16
|
+
|
|
17
|
+
**Interview focus:**
|
|
18
|
+
— Based on your CV vs. the job description
|
|
19
|
+
|
|
20
|
+
**Domains & focus:**
|
|
21
|
+
|
|
22
|
+
| Domain | Focus |
|
|
23
|
+
|------------------------------------------|--------|
|
|
24
|
+
| [Domain 1] | [High/Med/Low] |
|
|
25
|
+
| [Domain 2] | [High/Med/Low] |
|
|
26
|
+
| ... | ... |
|
|
27
|
+
|
|
28
|
+
**Top skill gaps vs. the JD:** [short note on the biggest gaps to drill].
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
Ready when you are — first question?
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Then wait — questions are requested one at a time.
|
|
18
35
|
|
|
19
36
|
## Question format
|
|
20
37
|
|
|
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
|