restokes92 commited on
Commit
245244e
·
verified ·
1 Parent(s): 513c795

Upload Kaiju Coder 7 runtime quantization recipe

Browse files
Files changed (1) hide show
  1. PUBLIC_TESTING_QUICKSTART.md +14 -8
PUBLIC_TESTING_QUICKSTART.md CHANGED
@@ -25,15 +25,18 @@ python3 scripts/install_kaiju_opencode_profile.py --base-url http://127.0.0.1:18
25
  Then run OpenCode inside the project you want to edit:
26
 
27
  ```bash
28
- opencode -m kaiju/kaiju-coder-7 --agent kaiju-coder-7
29
  ```
30
 
 
 
 
 
31
  For a bounded smoke test:
32
 
33
  ```bash
34
  mkdir -p /tmp/kaiju-public-smoke
35
- opencode run -m kaiju/kaiju-coder-7 --agent kaiju-coder-7 \
36
- --dir /tmp/kaiju-public-smoke \
37
  "Create hello.txt with exactly: Kaiju Coder 7 is ready"
38
  ```
39
 
@@ -47,7 +50,10 @@ python3 scripts/run_kaiju_public_opencode_smoke.py
47
  The helper installer adds:
48
 
49
  - the `kaiju` OpenAI-compatible provider
 
50
  - the lean `kaiju-coder-7` OpenCode agent
 
 
51
  - the `kaiju-coder-7-run` router command for fast websites, owner packs, and
52
  Desktop artifact folders
53
  - the `kaiju_artifact` OpenCode custom tool and `/kaiju` command for routing
@@ -66,12 +72,12 @@ kaiju-coder-7-run \
66
  --prompt "Build a premium one-page website for Harborline Bookkeeping with pricing, FAQ, and a cleanup-call CTA."
67
  ```
68
 
69
- OpenCode should use this same command for large website, business-pack, and
70
- Desktop-output requests after the helper is installed.
71
 
72
- Inside OpenCode, use `/kaiju` for large generated artifacts. The command is
73
- prompt-backed, but it points the Kaiju agent at the `kaiju_artifact` custom tool
74
- instead of making the model hand-write every file.
75
 
76
  ### Path 2: Full Local Weights
77
 
 
25
  Then run OpenCode inside the project you want to edit:
26
 
27
  ```bash
28
+ opencode
29
  ```
30
 
31
+ The installer sets `kaiju/kaiju-coder-7` as the OpenCode model and
32
+ `kaiju-coder-7` as the default agent. You can still select
33
+ `kaiju/kaiju-coder-7` manually from OpenCode's model picker if you switch away.
34
+
35
  For a bounded smoke test:
36
 
37
  ```bash
38
  mkdir -p /tmp/kaiju-public-smoke
39
+ opencode run --dir /tmp/kaiju-public-smoke \
 
40
  "Create hello.txt with exactly: Kaiju Coder 7 is ready"
41
  ```
42
 
 
50
  The helper installer adds:
51
 
52
  - the `kaiju` OpenAI-compatible provider
53
+ - `model: kaiju/kaiju-coder-7` and `default_agent: kaiju-coder-7`
54
  - the lean `kaiju-coder-7` OpenCode agent
55
+ - Kaiju as the default primary agent, so selecting Kaiju Coder 7 uses the
56
+ hidden fast artifact path without requiring `/kaiju`
57
  - the `kaiju-coder-7-run` router command for fast websites, owner packs, and
58
  Desktop artifact folders
59
  - the `kaiju_artifact` OpenCode custom tool and `/kaiju` command for routing
 
72
  --prompt "Build a premium one-page website for Harborline Bookkeeping with pricing, FAQ, and a cleanup-call CTA."
73
  ```
74
 
75
+ OpenCode should use this same command internally for large website,
76
+ business-pack, and Desktop-output requests after the helper is installed.
77
 
78
+ Inside OpenCode, `/kaiju` is optional for large generated artifacts. The command
79
+ is prompt-backed, but it points the Kaiju agent at the `kaiju_artifact` custom
80
+ tool instead of making the model hand-write every file.
81
 
82
  ### Path 2: Full Local Weights
83