@jskit-ai/jskit-cli 0.2.80 → 0.2.81
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 +4 -4
- package/src/server/commandHandlers/session.js +71 -3
- package/src/server/core/argParser.js +12 -0
- package/src/server/core/commandCatalog.js +14 -7
- package/src/server/sessionRuntime/constants.js +150 -126
- package/src/server/sessionRuntime/paths.js +2 -4
- package/src/server/sessionRuntime/preconditions.js +25 -35
- package/src/server/sessionRuntime/prompts/app_blueprint.md +26 -2
- package/src/server/sessionRuntime/prompts/doctor_failure.md +12 -1
- package/src/server/sessionRuntime/prompts/execute_plan.md +35 -0
- package/src/server/sessionRuntime/prompts/new_issue.md +21 -3
- package/src/server/sessionRuntime/prompts/plan_issue.md +50 -0
- package/src/server/sessionRuntime/prompts/pr_failure.md +14 -1
- package/src/server/sessionRuntime/prompts/review_changes.md +36 -15
- package/src/server/sessionRuntime/prompts/user_check.md +7 -3
- package/src/server/sessionRuntime/responses.js +146 -19
- package/src/server/sessionRuntime/worktrees.js +31 -0
- package/src/server/sessionRuntime.js +419 -128
- package/src/server/sessionRuntime/prompts/implement_issue.md +0 -25
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
Work only in this session worktree:
|
|
2
|
-
|
|
3
|
-
{{worktree}}
|
|
4
|
-
|
|
5
|
-
Branch:
|
|
6
|
-
|
|
7
|
-
{{branch}}
|
|
8
|
-
|
|
9
|
-
Issue URL:
|
|
10
|
-
|
|
11
|
-
{{issue_url}}
|
|
12
|
-
|
|
13
|
-
Issue:
|
|
14
|
-
|
|
15
|
-
{{issue_text}}
|
|
16
|
-
|
|
17
|
-
Instructions:
|
|
18
|
-
|
|
19
|
-
- Keep changes scoped to this issue.
|
|
20
|
-
- Do not touch unrelated files.
|
|
21
|
-
- Prefer existing JSKIT package/runtime seams before adding local helpers.
|
|
22
|
-
- Ask the user when blocked by product or architecture ambiguity.
|
|
23
|
-
- Run relevant checks before reporting completion.
|
|
24
|
-
- Do not push, open a PR, merge, or remove the worktree unless JSKIT Studio explicitly instructs it.
|
|
25
|
-
- Report changed files and verification when the implementation is ready.
|