stackprep-pro 0.2.13__tar.gz → 0.2.15__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stackprep-pro
3
- Version: 0.2.13
3
+ Version: 0.2.15
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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "stackprep-pro"
3
- version = "0.2.13"
3
+ version = "0.2.15"
4
4
  description = "stackprep-pro — interview & certification prep MCP server for any AI client"
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -7,6 +7,19 @@ description: Certification prep skill for the stackprep-pro MCP server. Activate
7
7
 
8
8
  Adaptive certification exam prep — one question at a time, with instant feedback and doc links.
9
9
 
10
+ ## ⛔ EXIT RULE (READ FIRST — NEVER SKIP)
11
+
12
+ The instant the user says ANYTHING meaning they want to stop — "exit", "quit", "stop", "leave", "X",
13
+ "done for now", "bye", "that's enough" — you MUST NOT just end the conversation. You MUST first ask:
14
+
15
+ > "Do you want to save this session so you can continue later? (y/n)"
16
+
17
+ - **Yes** → ask "What would you like to name this session?" (the user MUST give the name — never invent one),
18
+ then call `save_session(session_id, session_name=<that name>)`. It stays resumable under that name.
19
+ - **No** → only then end, saving nothing.
20
+
21
+ This is mandatory EVERY time, no matter how few questions were answered.
22
+
10
23
  ## Session setup
11
24
 
12
25
  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:
@@ -78,10 +91,12 @@ Handling the reply:
78
91
  - **Y** → next question.
79
92
  - **S** → the user is DONE and wants a study pack. Call `end_session` and follow its returned flow
80
93
  (generate study plan, name the study pack, save_study_pack). This marks the session finished.
81
- - **X** the user wants to PAUSE and resume later. Ask "Do you want to save this session to continue
94
+ - **X or ANY exit intent: "exit", "quit", "stop", "leave", "I'm done for now", "bye", etc.** the user
95
+ wants to PAUSE and resume later. You MUST, before ending, ask "Do you want to save this session to continue
82
96
  later? (y/n)". If yes, ask "What would you like to name this session?" — the user MUST name it (never
83
97
  auto-generate) — then call `save_session` with that name. The session stays RESUMABLE and appears later
84
- in the continue list under that name. If no, just exit without saving.
98
+ in the continue list under that name. If no, just exit without saving. NEVER end the conversation on an
99
+ exit intent without asking this save question first.
85
100
 
86
101
  ## Adaptive difficulty
87
102
 
@@ -7,6 +7,19 @@ description: Interview prep skill for the stackprep-pro MCP server. Activated wh
7
7
 
8
8
  Adaptive technical interview prep — one question at a time, with instant feedback and doc links.
9
9
 
10
+ ## ⛔ EXIT RULE (READ FIRST — NEVER SKIP)
11
+
12
+ The instant the user says ANYTHING meaning they want to stop — "exit", "quit", "stop", "leave", "X",
13
+ "done for now", "bye", "that's enough" — you MUST NOT just end the conversation. You MUST first ask:
14
+
15
+ > "Do you want to save this session so you can continue later? (y/n)"
16
+
17
+ - **Yes** → ask "What would you like to name this session?" (the user MUST give the name — never invent one),
18
+ then call `save_session(session_id, session_name=<that name>)`. It stays resumable under that name.
19
+ - **No** → only then end, saving nothing.
20
+
21
+ This is mandatory EVERY time, no matter how few questions were answered.
22
+
10
23
  ## Session setup
11
24
 
12
25
  Inputs arrive via MCP (CV, job description, extra topics). After analysing the CV and JD, present a clean, structured overview in this exact layout:
@@ -79,10 +92,12 @@ Handling the reply:
79
92
  - **Y** → next question.
80
93
  - **S** → the user is DONE and wants a study pack. Call `end_session` and follow its returned flow
81
94
  (generate study plan, name the study pack, save_study_pack). This marks the session finished.
82
- - **X** the user wants to PAUSE and resume later. Ask "Do you want to save this session to continue
95
+ - **X or ANY exit intent: "exit", "quit", "stop", "leave", "I'm done for now", "bye", etc.** the user
96
+ wants to PAUSE and resume later. You MUST, before ending, ask "Do you want to save this session to continue
83
97
  later? (y/n)". If yes, ask "What would you like to name this session?" — the user MUST name it (never
84
98
  auto-generate) — then call `save_session` with that name. The session stays RESUMABLE and appears later
85
- in the continue list under that name. If no, just exit without saving.
99
+ in the continue list under that name. If no, just exit without saving. NEVER end the conversation on an
100
+ exit intent without asking this save question first.
86
101
 
87
102
  ## Adaptive difficulty
88
103
 
@@ -723,7 +723,7 @@ wheels = [
723
723
 
724
724
  [[package]]
725
725
  name = "stackprep-pro"
726
- version = "0.2.13"
726
+ version = "0.2.15"
727
727
  source = { editable = "." }
728
728
  dependencies = [
729
729
  { name = "mcp", extra = ["cli"] },
File without changes
File without changes
File without changes