@kenkaiiii/ggcoder 4.3.187 → 4.3.188
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompt-commands.d.ts","sourceRoot":"","sources":["../../src/core/prompt-commands.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,eAAe,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"prompt-commands.d.ts","sourceRoot":"","sources":["../../src/core/prompt-commands.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,eAAe,EAAE,aAAa,EAoyC1C,CAAC;AAEF,gDAAgD;AAChD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,aAAa,GAAG,SAAS,CAExE"}
|
|
@@ -27,11 +27,12 @@ Each sub-agent must return only candidates with file:line ranges, estimated line
|
|
|
27
27
|
|
|
28
28
|
For every candidate, validate it yourself before reporting it:
|
|
29
29
|
|
|
30
|
-
1. Search for references with grep/find and language-aware patterns where possible.
|
|
30
|
+
1. Search for references with grep/find and language-aware patterns where possible, including exact symbol names, filenames, route names, config keys, CLI command names, test names, and documented examples.
|
|
31
31
|
2. Check exports and package/public entrypoints before marking anything removable.
|
|
32
|
-
3. Check framework conventions and dynamic lookup risks before marking anything removable.
|
|
32
|
+
3. Check framework conventions and dynamic lookup risks before marking anything removable. Use official docs when a framework/tool convention could imply usage without direct imports.
|
|
33
33
|
4. Check whether removing it would change public API, CLI behavior, routes, config support, migration behavior, generated artifacts, docs examples, tests, or side effects.
|
|
34
|
-
5.
|
|
34
|
+
5. For code-level removal tasks, kencode search is secondary: use it only to verify framework/tool conventions or common generated-code patterns that could make code appear unused locally. Do not treat absence from public code search as proof that local code is dead.
|
|
35
|
+
6. If evidence is incomplete, mark safety as Low or drop the finding.
|
|
35
36
|
|
|
36
37
|
## What counts as dead code
|
|
37
38
|
|
|
@@ -84,7 +85,7 @@ C) Skip
|
|
|
84
85
|
|
|
85
86
|
Do not start deleting or editing until the user chooses.
|
|
86
87
|
|
|
87
|
-
If the user chooses A or B, do not remove code directly. Instead, use the tasks tool to create one task per selected removal or tightly coupled removal group, ordered by dependency and risk. Each task prompt must be standalone and include the exact locations, safety evidence, reference-search requirements, removal instructions, project verification commands, and instructions to
|
|
88
|
+
If the user chooses A or B, do not remove code directly. Instead, use the tasks tool to create one task per selected removal or tightly coupled removal group, ordered by dependency and risk. Each task prompt must be standalone and include the exact locations, safety evidence, reference-search requirements, removal instructions, project verification commands, and instructions to prove the removal did not delete used code before marking the task complete. That proof must include fresh local reference searches after editing, relevant project checks/tests, and official-docs or kencode comparison only where framework/tool conventions or generated-code patterns could imply hidden usage. After creating tasks, tell the user exactly: "Tasks created. Press CTRL + T to open the Tasks Pane and press R to run all tasks." Do not begin executing them unless the user explicitly starts a task.`,
|
|
88
89
|
},
|
|
89
90
|
{
|
|
90
91
|
name: "verify",
|
|
@@ -474,7 +475,7 @@ Cite these as needed per audit. Do not dump them into the report — use them to
|
|
|
474
475
|
|
|
475
476
|
First, if it's not clear what the project is building, ask me to describe the features, target platform, and any constraints. If you can infer this from the codebase, proceed directly.
|
|
476
477
|
|
|
477
|
-
Then spawn 6 sub-agents in parallel using the subagent tool (call the subagent tool 6 times in a single response, each with a different task). Every agent must verify ALL recommendations - no training-data assumptions allowed.
|
|
478
|
+
Then spawn 6 sub-agents in parallel using the subagent tool (call the subagent tool 6 times in a single response, each with a different task). Every agent must verify ALL recommendations with current official docs, package registries, releases, or maintained source repositories - no training-data assumptions allowed. Use kencode search for architecture and implementation-shape comparisons where real code examples matter.
|
|
478
479
|
|
|
479
480
|
**Agent 1 - Project Scan**: Read the current working directory. Catalog what already exists: config files, installed deps, directory structure, language/framework already chosen. Report exactly what's in place.
|
|
480
481
|
|
|
@@ -490,10 +491,11 @@ Then spawn 6 sub-agents in parallel using the subagent tool (call the subagent t
|
|
|
490
491
|
|
|
491
492
|
## Agent Rules
|
|
492
493
|
|
|
493
|
-
1. Every recommendation MUST be verified - no guessing
|
|
494
|
-
2. Confirm latest stable versions - do not assume version numbers
|
|
495
|
-
3.
|
|
496
|
-
4.
|
|
494
|
+
1. Every recommendation MUST be verified with a source URL/date - no guessing
|
|
495
|
+
2. Confirm latest stable versions from official registries or release pages - do not assume version numbers
|
|
496
|
+
3. Verify CLI flags, config keys, and file formats against official docs before recommending them
|
|
497
|
+
4. Pick ONE best option per category - no "you could also use X"
|
|
498
|
+
5. No prose, no hedging, no alternatives lists - decisive answers only
|
|
497
499
|
|
|
498
500
|
## Output
|
|
499
501
|
|
|
@@ -531,7 +533,7 @@ Stack: [framework + language + runtime]
|
|
|
531
533
|
[URLs used for verification]
|
|
532
534
|
\`\`\`
|
|
533
535
|
|
|
534
|
-
Write the file, then summarize what was researched.`,
|
|
536
|
+
Write the file, then summarize what was researched and list the verification sources used. If any recommendation could not be verified from current official sources or maintained repos, omit it rather than guessing.`,
|
|
535
537
|
},
|
|
536
538
|
{
|
|
537
539
|
name: "init",
|
|
@@ -570,7 +572,7 @@ Check for config files:
|
|
|
570
572
|
- go.mod -> Go
|
|
571
573
|
- Cargo.toml -> Rust
|
|
572
574
|
|
|
573
|
-
Extract exact commands that are useful project facts. Do not restate generic "run checks after edits" behavior unless this project requires a stricter command sequence than the system prompt's Verification section.
|
|
575
|
+
Extract exact commands that are useful project facts. Verify commands against local package scripts, manifests, Makefiles, CI, or documented project workflows; do not invent commands from convention alone. Do not restate generic "run checks after edits" behavior unless this project requires a stricter command sequence than the system prompt's Verification section.
|
|
574
576
|
|
|
575
577
|
## Step 4: Generate Project Tree
|
|
576
578
|
|
|
@@ -588,7 +590,7 @@ Create CLAUDE.md with only sections that add project-specific value. Prefer this
|
|
|
588
590
|
|
|
589
591
|
Avoid generic sections named "Code Quality", "Organization Rules", or "How to Work" unless every bullet is specific to this project. Do not duplicate language style packs or generic verification rules.
|
|
590
592
|
|
|
591
|
-
Keep total file under 100 lines. If updating, preserve any custom sections the user added.
|
|
593
|
+
Keep total file under 100 lines. If updating, preserve any custom sections the user added. After writing, re-read CLAUDE.md and confirm it contains only project-specific facts supported by local files.
|
|
592
594
|
|
|
593
595
|
## Step 6: Restart Notice
|
|
594
596
|
|
|
@@ -624,7 +626,7 @@ Based on the project type, check if linting/typechecking tools are already confi
|
|
|
624
626
|
|
|
625
627
|
## Step 3: Install Missing Tools (if needed)
|
|
626
628
|
|
|
627
|
-
Only install what's missing. Use the detected package manager.
|
|
629
|
+
Only install what's missing. Use the detected package manager. Before installing or writing config, verify current recommended setup, CLI flags, and config filenames against official docs for the selected tools.
|
|
628
630
|
|
|
629
631
|
## Step 4: Generate /fix Command
|
|
630
632
|
|
|
@@ -662,7 +664,7 @@ Replace [INSERT PROJECT-SPECIFIC COMMANDS] with the actual commands for the dete
|
|
|
662
664
|
|
|
663
665
|
## Step 5: Confirm
|
|
664
666
|
|
|
665
|
-
Report what was detected, what was installed, and that /fix is now available.`,
|
|
667
|
+
Report what was detected, what official docs or local configs were used to verify it, what was installed, and that /fix is now available.`,
|
|
666
668
|
},
|
|
667
669
|
{
|
|
668
670
|
name: "setup-commit",
|
|
@@ -674,9 +676,11 @@ Report what was detected, what was installed, and that /fix is now available.`,
|
|
|
674
676
|
|
|
675
677
|
Check for config files and extract the lint/typecheck commands:
|
|
676
678
|
- package.json -> Extract lint, typecheck scripts
|
|
677
|
-
- pyproject.toml -> Use mypy, pylint/ruff
|
|
678
|
-
- go.mod -> Use go vet
|
|
679
|
-
- Cargo.toml -> Use cargo clippy
|
|
679
|
+
- pyproject.toml -> Use configured mypy, pylint/ruff commands
|
|
680
|
+
- go.mod -> Use configured go vet/gofmt/staticcheck commands
|
|
681
|
+
- Cargo.toml -> Use configured cargo clippy/fmt commands
|
|
682
|
+
|
|
683
|
+
Prefer existing project scripts. If you must synthesize a command from tool conventions, verify the current CLI flags against official docs first.
|
|
680
684
|
|
|
681
685
|
## Step 2: Generate /commit Command
|
|
682
686
|
|
|
@@ -711,7 +715,7 @@ Keep the command file under 20 lines.
|
|
|
711
715
|
|
|
712
716
|
## Step 3: Confirm
|
|
713
717
|
|
|
714
|
-
Report that /commit is now available with quality checks and AI-generated commit messages.`,
|
|
718
|
+
Report that /commit is now available with quality checks and AI-generated commit messages, and mention which local scripts/docs verified the commands.`,
|
|
715
719
|
},
|
|
716
720
|
{
|
|
717
721
|
name: "setup-tests",
|
|
@@ -725,7 +729,7 @@ Detect the project type, framework, and architecture. Identify all critical busi
|
|
|
725
729
|
|
|
726
730
|
## Step 2: Determine Testing Strategy
|
|
727
731
|
|
|
728
|
-
Use these tools based on project type (2025-2026 best practices):
|
|
732
|
+
Use these tools based on project type (2025-2026 best practices), but verify current versions, install commands, config files, and runner flags against official docs before installing anything:
|
|
729
733
|
|
|
730
734
|
| Language | Unit/Integration | E2E | Notes |
|
|
731
735
|
|----------|------------------|-----|-------|
|
|
@@ -744,7 +748,7 @@ Spawn 4 sub-agents in parallel using the subagent tool (call the subagent tool 4
|
|
|
744
748
|
**Agent 3 - Integration Tests**: Create integration tests for APIs, database operations, and service interactions
|
|
745
749
|
**Agent 4 - E2E Tests** (if applicable): Create end-to-end tests for critical user flows
|
|
746
750
|
|
|
747
|
-
Each agent should create COMPREHENSIVE tests covering all critical code paths - not just samples.
|
|
751
|
+
Each agent should create COMPREHENSIVE tests covering all critical code paths - not just samples. Each agent must verify test framework APIs and helper patterns against official docs or current maintained examples before adding tests.
|
|
748
752
|
|
|
749
753
|
## Step 4: Verify and Generate /test Command
|
|
750
754
|
|
|
@@ -777,7 +781,7 @@ Replace placeholders with the actual test commands for this project.
|
|
|
777
781
|
|
|
778
782
|
## Step 5: Report
|
|
779
783
|
|
|
780
|
-
Summarize what was set up, how many tests were created, and that /test is now available.`,
|
|
784
|
+
Summarize what was set up, how many tests were created, what official docs/current examples verified the setup, and that /test is now available.`,
|
|
781
785
|
},
|
|
782
786
|
{
|
|
783
787
|
name: "setup-update",
|
|
@@ -825,7 +829,7 @@ Run a clean install and read ALL output carefully. Look for:
|
|
|
825
829
|
## Step 4: Fix Issues
|
|
826
830
|
|
|
827
831
|
For each warning/deprecation:
|
|
828
|
-
1. Research the recommended replacement or fix
|
|
832
|
+
1. Research the recommended replacement or fix using official changelogs, migration guides, advisories, or package docs
|
|
829
833
|
2. Update code/dependencies accordingly
|
|
830
834
|
3. Re-run installation
|
|
831
835
|
4. Verify no warnings remain
|
|
@@ -845,7 +849,7 @@ Replace all placeholders with the actual commands for the detected project type
|
|
|
845
849
|
|
|
846
850
|
## Step 3: Confirm
|
|
847
851
|
|
|
848
|
-
Report that /update is now available with dependency updates, security audits, and deprecation fixes.`,
|
|
852
|
+
Report that /update is now available with dependency updates, security audits, and deprecation fixes, and mention that generated update steps require official changelog/migration-guide verification before applying changes.`,
|
|
849
853
|
},
|
|
850
854
|
{
|
|
851
855
|
name: "setup-eyes",
|
|
@@ -859,7 +863,7 @@ Build the perception probes this project needs and document them in CLAUDE.md so
|
|
|
859
863
|
|
|
860
864
|
1. \`ggcoder eyes list\` — see what's already installed/verified. **Resume**, don't restart. Skip verified probes; re-run failed ones.
|
|
861
865
|
2. \`ggcoder eyes detect\` — emits JSON of \`{capability: {candidates, primary}}\` for this project.
|
|
862
|
-
3. **Pick 3–8 capabilities to install this run.** Heuristics:
|
|
866
|
+
3. **Pick 3–8 capabilities to install this run.** Verify any capability assumptions against \`ggcoder eyes\` help output or official/local CLI docs before installing. Heuristics:
|
|
863
867
|
- Universal: \`http\` for any API/backend, \`runtime_logs\` for anything with a server.
|
|
864
868
|
- UI: \`visual\` — for multi-stack projects (e.g. React Native), install all primary candidates with distinct names: \`install visual --impl playwright --as visual-web\`, \`install visual --impl adb --as visual-android\`, \`install visual --impl simctl --as visual-ios\`.
|
|
865
869
|
- Backend with email/webhooks: \`capture_email\`, \`capture_webhook\`.
|
|
@@ -867,7 +871,7 @@ Build the perception probes this project needs and document them in CLAUDE.md so
|
|
|
867
871
|
4. For each pick: \`ggcoder eyes install <cap> [--impl <name>] [--as <name>]\`. On failure: retry once, then mark and continue — don't abort the whole run.
|
|
868
872
|
5. \`ggcoder eyes verify\` — runs every installed probe's self-test. Some failures (\`adb\` no device, \`simctl\` no booted simulator) are expected; they get recorded.
|
|
869
873
|
6. **Write/update the \`## Eyes\` section in CLAUDE.md** (create CLAUDE.md if missing; do NOT clobber other sections). Use the template below. The triggers are the load-bearing piece — make them project-specific and actionable.
|
|
870
|
-
7. **Report**: list verified ✓ / failed ✗ / deferred. End with the restart notice.
|
|
874
|
+
7. **Report**: list verified ✓ / failed ✗ / deferred, and note which probe self-tests or docs verified the setup. End with the restart notice.
|
|
871
875
|
|
|
872
876
|
## CLAUDE.md \`## Eyes\` template
|
|
873
877
|
|
|
@@ -951,9 +955,9 @@ Read the open signals in \`.gg/eyes/journal.jsonl\`, group related ones, propose
|
|
|
951
955
|
- **New/updated trigger**: bullet added under \`## Eyes → When to use\` in CLAUDE.md.
|
|
952
956
|
5. Present all proposals as a numbered list with diffs inline. Ask: **"Accept which? Reply with numbers (e.g. '1, 3') or 'none'."**
|
|
953
957
|
6. On user reply:
|
|
954
|
-
- For accepted: apply the change. Then \`ggcoder eyes log ack <id>\` for every journal entry the proposal covers.
|
|
958
|
+
- For accepted: apply the change. Then run the relevant probe self-test or a focused command that exercises the changed probe/trigger. Then \`ggcoder eyes log ack <id>\` for every journal entry the proposal covers.
|
|
955
959
|
- For unmentioned / rejected: \`ggcoder eyes log defer <id>\` so they stop appearing in context every turn. The user can resurrect deferred entries later.
|
|
956
|
-
7. **Report**: applied changes (one line each), entries acked, entries deferred.
|
|
960
|
+
7. **Report**: applied changes (one line each), verification run, entries acked, entries deferred.
|
|
957
961
|
|
|
958
962
|
## Rules
|
|
959
963
|
|
|
@@ -1015,7 +1019,9 @@ Review the same changes for efficiency:
|
|
|
1015
1019
|
|
|
1016
1020
|
Wait for all three agents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.
|
|
1017
1021
|
|
|
1018
|
-
|
|
1022
|
+
Before making any non-trivial pattern/API change, verify the intended approach against local neighboring code first; use kencode search or official docs when the change touches framework APIs, lifecycle behavior, concurrency, cleanup, or other conventions where real-world practice matters.
|
|
1023
|
+
|
|
1024
|
+
When done, run relevant project checks/tests, then briefly summarize what was fixed (or confirm the code was already clean) and what verification ran.`,
|
|
1019
1025
|
},
|
|
1020
1026
|
{
|
|
1021
1027
|
name: "batch",
|
|
@@ -1077,11 +1083,12 @@ For each worker, the task must be fully self-contained. Include:
|
|
|
1077
1083
|
\`\`\`
|
|
1078
1084
|
After you finish implementing the change:
|
|
1079
1085
|
1. Self-review your diff for code reuse, quality, and efficiency. Search the codebase for existing utilities that could replace new code. Fix any issues found.
|
|
1080
|
-
2.
|
|
1081
|
-
3.
|
|
1082
|
-
4.
|
|
1083
|
-
5.
|
|
1084
|
-
6.
|
|
1086
|
+
2. For framework/API/config changes, compare the approach with official docs or kencode search examples before finalizing. Do not use kencode for purely local renames or mechanical edits.
|
|
1087
|
+
3. Run the project's test suite (check for package.json scripts, Makefile targets, or common commands like npm test, pnpm test, pytest, go test). If tests fail, fix them.
|
|
1088
|
+
4. Follow the e2e test recipe above. If it says to skip e2e, skip it.
|
|
1089
|
+
5. Commit all changes with a clear message, push the branch, and create a PR with gh pr create. Use a descriptive title.
|
|
1090
|
+
6. Switch back to the original branch with git checkout -.
|
|
1091
|
+
7. End with exactly: PR: <url> or PR: none — <reason>
|
|
1085
1092
|
\`\`\`
|
|
1086
1093
|
|
|
1087
1094
|
## Phase 4: Track Results
|
|
@@ -1177,7 +1184,7 @@ Don't invent. Don't pad.
|
|
|
1177
1184
|
|
|
1178
1185
|
After all sub-agents complete, use the **skill** tool to invoke the \`find-skills\` skill. Feed it the aggregated candidate list with search terms. Let find-skills drive discovery across skills.sh, vercel-labs/agent-skills, and anthropics/skills.
|
|
1179
1186
|
|
|
1180
|
-
For each candidate, record the best 0–1 ecosystem match: skill name, source repo URL. If no fit exists, record "no match". **Do NOT install anything yet.**
|
|
1187
|
+
For each candidate, record the best 0–1 ecosystem match: skill name, source repo URL, and enough evidence from the skill README/source to prove it fits this project. If no fit exists, record "no match". **Do NOT install anything yet.**
|
|
1181
1188
|
|
|
1182
1189
|
## Phase 5: Prioritized recommendation
|
|
1183
1190
|
|
|
@@ -1260,7 +1267,7 @@ Report which are present, missing, or configured below the pack's strictness rec
|
|
|
1260
1267
|
|
|
1261
1268
|
"Active style packs" refers specifically to the per-language sub-sections inside the **Language Style Packs** section in your system prompt (e.g. \`### TypeScript\`, \`### Python\`, \`### Go\`). It does **NOT** include the cross-cutting \`### Agent-Written Code\` preamble that sits above them — those are guidelines for how code is *written*, not project-scaffolding to audit. It also does **NOT** include Skills (\`.gg/skills/\`) or any other extension category. If the Language Style Packs section is absent or empty, **skip this entire section entirely** — do not substitute Skills or any other concept.
|
|
1262
1269
|
|
|
1263
|
-
When per-language packs are present, compare the project against each pack's **Tooling** bullet and the system prompt's **Verification** commands:
|
|
1270
|
+
When per-language packs are present, compare the project against each pack's **Tooling** bullet and the system prompt's **Verification** commands. For tool recommendations or config semantics, verify against official docs when local files are ambiguous:
|
|
1264
1271
|
- Tooling: which strict-mode flags or lint-rule presets does the pack recommend that the project is missing? (e.g. \`tsconfig\` missing \`noUncheckedIndexedAccess\`, \`pyproject\` missing \`[tool.ruff]\`, Go project missing \`golangci-lint\` config).
|
|
1265
1272
|
- Dependencies: list which pack-mentioned libs (Zod, Pydantic, thiserror, anyhow, etc.) the project uses, has an equivalent for, or lacks. **Observation only — no recommendation to install.**
|
|
1266
1273
|
|
|
@@ -1304,7 +1311,7 @@ Which (if any) would you like me to fix? Options:
|
|
|
1304
1311
|
## Rules
|
|
1305
1312
|
|
|
1306
1313
|
- **Report only.** No edits, no installs, no commits without explicit user confirmation after the report.
|
|
1307
|
-
- **Task handoff for fixes.** If the user chooses A, B, or C, do not fix directly. Use the tasks tool to create one standalone task per selected gap or tightly coupled gap group. Each task must include the gap, affected files/configs, safe-additive constraints, implementation instructions, project verification commands, and instructions to
|
|
1314
|
+
- **Task handoff for fixes.** If the user chooses A, B, or C, do not fix directly. Use the tasks tool to create one standalone task per selected gap or tightly coupled gap group. Each task must include the gap, affected files/configs, safe-additive constraints, implementation instructions, project verification commands, and instructions to verify relevant tool/config semantics against official docs before marking the task complete. Use kencode search only for code-level examples, not as proof of scaffolding requirements. After creating tasks, tell the user exactly: "Tasks created. Press CTRL + T to open the Tasks Pane and press R to run all tasks." Do not begin executing them unless the user explicitly starts a task.
|
|
1308
1315
|
- **No code refactors recommended.** This audit is about scaffolding/tooling, not code review. Use \`/scan\` or \`/verify\` for code-level findings.
|
|
1309
1316
|
- **No dependency installations in the report.** Listing them as observations is fine; recommending installation is not — that's the user's call.
|
|
1310
1317
|
- **Skip empty categories.** If a category has no findings, omit it.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompt-commands.js","sourceRoot":"","sources":["../../src/core/prompt-commands.ts"],"names":[],"mappings":"AAAA;;;GAGG;AASH,MAAM,CAAC,MAAM,eAAe,GAAoB;IAC9C;QACE,IAAI,EAAE,MAAM;QACZ,OAAO,EAAE,EAAE;QACX,WAAW,EAAE,+BAA+B;QAC5C,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"prompt-commands.js","sourceRoot":"","sources":["../../src/core/prompt-commands.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kenkaiiii/ggcoder",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.188",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI coding agent with OAuth authentication for Anthropic and OpenAI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -78,10 +78,10 @@
|
|
|
78
78
|
"string-width": "^8.2.0",
|
|
79
79
|
"wrap-ansi": "^10.0.0",
|
|
80
80
|
"zod": "^4.4.3",
|
|
81
|
-
"@kenkaiiii/
|
|
82
|
-
"@kenkaiiii/gg-ai": "4.3.187",
|
|
81
|
+
"@kenkaiiii/ggcoder-eyes": "0.1.2",
|
|
83
82
|
"@kenkaiiii/gg-pixel": "4.3.95",
|
|
84
|
-
"@kenkaiiii/
|
|
83
|
+
"@kenkaiiii/gg-ai": "4.3.188",
|
|
84
|
+
"@kenkaiiii/gg-agent": "4.3.188"
|
|
85
85
|
},
|
|
86
86
|
"optionalDependencies": {
|
|
87
87
|
"@huggingface/transformers": "^3.6.0",
|