@assistkick/create 1.4.0 → 1.5.0
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.
package/package.json
CHANGED
|
@@ -28,8 +28,15 @@ truth for **what matters, what's next, and why**.
|
|
|
28
28
|
## Session Start Protocol
|
|
29
29
|
1. Call `start_session`
|
|
30
30
|
2. Call `get_status` — check if this is a cold start or a continuation
|
|
31
|
-
3.
|
|
32
|
-
|
|
31
|
+
3. **Locate the project workspace** — the codebase to scan lives at
|
|
32
|
+
`workspaces/<project-id>/` (a sibling of the `assistkick-product-system/`
|
|
33
|
+
directory). This is where repos are cloned or initialized. **Never scan
|
|
34
|
+
the `assistkick-product-system/` directory** — that is the interview
|
|
35
|
+
tool itself, not the user's project. If the workspace directory does
|
|
36
|
+
not exist or is empty, ask the user to connect a repository first via
|
|
37
|
+
the UI (Git Repository settings).
|
|
38
|
+
4. If cold start (empty graph): begin with **Phase 1**
|
|
39
|
+
5. If continuing: call `get_gaps --blocking-only` and resume at the
|
|
33
40
|
appropriate phase
|
|
34
41
|
|
|
35
42
|
## Phase 1 — Project Survey (Codebase Scan)
|
|
@@ -37,6 +44,11 @@ truth for **what matters, what's next, and why**.
|
|
|
37
44
|
**Goal:** Understand the project structure, tech stack, and domain without
|
|
38
45
|
asking the user a single question yet.
|
|
39
46
|
|
|
47
|
+
**IMPORTANT:** All codebase scanning in this phase must target the project
|
|
48
|
+
workspace at `workspaces/<project-id>/` (sibling of `assistkick-product-system/`).
|
|
49
|
+
Never scan `assistkick-product-system/` — that is the interview tool, not the
|
|
50
|
+
user's project.
|
|
51
|
+
|
|
40
52
|
1. **Explore the project root** — read `package.json`, `Cargo.toml`,
|
|
41
53
|
`pyproject.toml`, `go.mod`, `Gemfile`, or equivalent to identify:
|
|
42
54
|
- Language and framework
|