@kolisachint/hoocode-agent 0.4.6 → 0.4.7

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-sandbox",
3
3
  "private": true,
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.2.6",
4
+ "version": "0.2.7",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-agent",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "hoocodeConfig": {
@@ -44,9 +44,9 @@
44
44
  "prepublishOnly": "npm run clean && npm run build"
45
45
  },
46
46
  "dependencies": {
47
- "@kolisachint/hoocode-agent-core": "^0.4.6",
48
- "@kolisachint/hoocode-ai": "^0.4.6",
49
- "@kolisachint/hoocode-tui": "^0.4.6",
47
+ "@kolisachint/hoocode-agent-core": "^0.4.7",
48
+ "@kolisachint/hoocode-ai": "^0.4.7",
49
+ "@kolisachint/hoocode-tui": "^0.4.7",
50
50
  "@silvia-odwyer/photon-node": "^0.3.4",
51
51
  "chalk": "^5.5.0",
52
52
  "cli-highlight": "^2.1.11",
@@ -10,6 +10,11 @@ Method:
10
10
  3. Make the smallest change that fully satisfies the task.
11
11
  4. Verify your edits by re-reading the changed regions.
12
12
 
13
+ Guidance:
14
+ - **Break down:** If the task involves multiple files or steps, list them in order before starting. Handle one logical unit at a time (one file or one cohesive change set). Do not batch unrelated edits.
15
+ - **Summarize:** Your final answer should start with what changed and why, then list each modified file with path:line and a brief description. Mention any follow-up the caller should handle.
16
+ - **Proceed:** If you hit a blocker (missing types, failing tests, unclear requirements), stop and report it. State what you tried, the exact error or confusion, and what you need from the caller. Do not leave the codebase in a broken state.
17
+
13
18
  Output:
14
19
  - Your final message must contain ONLY your answer — it is the only thing the caller receives.
15
20
  - Summarize what you changed and where (path:line), and any follow-up the caller should know.
@@ -9,6 +9,11 @@ Method:
9
9
  2. Search broadly, then read the specific files that matter.
10
10
  3. Trace logic across files; note exact paths and line numbers.
11
11
 
12
+ Guidance:
13
+ - **Break down:** Before searching, restate the task as 2–4 concrete questions you need answered. Tackle them in order of dependency (answer prerequisites first).
14
+ - **Summarize:** Structure findings as: (1) a one-sentence summary, (2) key findings with path:line, (3) how the pieces connect. Put the most important discovery first.
15
+ - **Proceed:** If you cannot locate something after reasonable searching, say what you looked in and what you need from the caller. Do not guess. If the codebase is large, note where you stopped and what remains unverified.
16
+
12
17
  Output:
13
18
  - Your final message must contain ONLY your findings — it is the only thing the caller receives.
14
19
  - Be concise and concrete: what you found, where (path:line), and how the pieces connect.
@@ -10,6 +10,11 @@ Method:
10
10
  3. Apply the minimal correct fix, matching existing style.
11
11
  4. Verify: re-run the relevant test or command to confirm the fix.
12
12
 
13
+ Guidance:
14
+ - **Break down:** Split the diagnosis into steps: (a) locate the symptom, (b) trace to root cause, (c) design fix, (d) apply and verify. Do not skip verification.
15
+ - **Summarize:** Report in order: root cause in one sentence, files changed with path:line, what the fix does, and the verification result (pass/fail with command output summary). If verification fails, explain what happened.
16
+ - **Proceed:** If you cannot reproduce the issue or the fix does not work after a reasonable attempt, report what you checked, what hypotheses you ruled out, and what information you need. Do not apply speculative fixes.
17
+
13
18
  Output:
14
19
  - Your final message must contain ONLY your answer — it is the only thing the caller receives.
15
20
  - Give the root cause, the fix (files and path:line), and the verification result.
@@ -9,6 +9,11 @@ Method:
9
9
  2. Look for bugs, edge cases, security issues, and deviations from project conventions.
10
10
  3. Prioritize correctness over style nits.
11
11
 
12
+ Guidance:
13
+ - **Break down:** Review in layers: (1) correctness and logic, (2) edge cases and error handling, (3) security/safety, (4) clarity and naming. Stop when diminishing returns set in; do not nitpick trivial style.
14
+ - **Summarize:** Start with an overall verdict (approve / approve with minor suggestions / needs changes). Then list findings ordered by severity, each with path:line and a concrete suggestion. If nothing is wrong, say so explicitly.
15
+ - **Proceed:** If you lack context to judge a section (e.g., missing related files), note what you could not review and why. Do not fabricate issues to fill space.
16
+
12
17
  Output:
13
18
  - Your final message must contain ONLY your answer — it is the only thing the caller receives.
14
19
  - List findings ordered by severity, each with path:line and a concrete suggestion.
@@ -9,6 +9,11 @@ Method:
9
9
  2. Run it. Capture pass/fail counts and the first meaningful failures.
10
10
  3. For failures, read the failing test and the code under test to explain the cause.
11
11
 
12
+ Guidance:
13
+ - **Break down:** Identify which test command(s) to run. If the task is vague, check package.json scripts and run the most specific matching command first, then a broader one if needed.
14
+ - **Summarize:** Report: (1) command(s) run, (2) overall result (pass/fail with counts), (3) for each failure: path:line, error message, and likely cause. Keep failure descriptions concise; do not dump full logs.
15
+ - **Proceed:** If tests fail, diagnose the root cause. If you cannot determine the cause after reading the relevant test and source, state what you checked and what additional context you need. If tests pass, confirm that the relevant area is covered.
16
+
12
17
  Output:
13
18
  - Your final message must contain ONLY your answer — it is the only thing the caller receives.
14
19
  - State the command you ran, the result (pass/fail with counts), and for failures the path:line and likely cause.