docks-kit 0.2.0 → 0.4.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/AGENTS.md +5 -3
- package/README.md +15 -7
- package/cli/docs/install.md +12 -12
- package/cli/docs/overview.md +7 -1
- package/cli/docs/platforms.md +8 -7
- package/cli/docs/sync-layers.md +15 -7
- package/cli/docs/toolchain.md +8 -2
- package/cli/src/engine-native/DESIGN.md +25 -14
- package/cli/src/engine-native/bun.ts +87 -0
- package/cli/src/engine-native/claudeRuntime.ts +132 -0
- package/cli/src/engine-native/claudeSync.ts +179 -115
- package/cli/src/engine-native/codexSync.ts +42 -36
- package/cli/src/engine-native/deps.ts +27 -10
- package/cli/src/engine-native/exec.ts +8 -23
- package/cli/src/engine-native/index.ts +8 -8
- package/cli/src/engine-native/models.ts +14 -16
- package/cli/src/engine-native/modes.ts +18 -9
- package/cli/src/engine-native/parseArgs.ts +1 -17
- package/cli/src/engine-native/powershell.ts +11 -0
- package/cli/src/engine-native/skillsSync.ts +11 -46
- package/cli/src/engine-native/toolchain.ts +6 -6
- package/cli/src/generated/sotPayload.ts +41 -0
- package/cli/src/kitHome.ts +15 -11
- package/cli/src/manifests.ts +17 -15
- package/cli/src/payload.ts +28 -0
- package/docks-kit +6 -6
- package/package.json +2 -3
- package/SoT/.agents/skills.txt +0 -14
- package/SoT/.claude/CLAUDE.md +0 -146
- package/SoT/.claude/fetch-usage.sh +0 -66
- package/SoT/.claude/hooks/notify.sh +0 -14
- package/SoT/.claude/mcp-servers.json +0 -10
- package/SoT/.claude/settings.json +0 -235
- package/SoT/.claude/statusline.sh +0 -175
- package/SoT/.codex/AGENTS.md +0 -75
- package/SoT/.codex/agents/.gitkeep +0 -1
- package/SoT/.codex/config.toml +0 -45
- package/SoT/.codex/plugins/marketplace.json +0 -50
- package/SoT/.codex/rules/docks.rules +0 -116
- package/SoT/models.json +0 -31
- package/SoT/toolchain.json +0 -27
- package/notification.mp3 +0 -0
package/SoT/.codex/AGENTS.md
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
# AGENTS.md
|
|
2
|
-
|
|
3
|
-
## Research Before Implementation
|
|
4
|
-
|
|
5
|
-
Before writing or modifying code that uses an API, hook, method, or config surface you have not verified in this session, research current documentation first.
|
|
6
|
-
|
|
7
|
-
Research workflow:
|
|
8
|
-
1. Prefer official documentation and primary sources for the specific library, framework, or API.
|
|
9
|
-
2. If a local docs or MCP tool is available, use it before broad web search.
|
|
10
|
-
3. Only then proceed to implementation.
|
|
11
|
-
|
|
12
|
-
Research when:
|
|
13
|
-
- Installing or configuring a dependency.
|
|
14
|
-
- Using an API, hook, method, or pattern not verified in this session.
|
|
15
|
-
- Upgrading or migrating between versions.
|
|
16
|
-
- Any task where relying on memory could cause stale syntax or behavior.
|
|
17
|
-
|
|
18
|
-
Do not:
|
|
19
|
-
- Assume API signatures, method names, or config options from memory.
|
|
20
|
-
- Generate framework code without checking current docs first.
|
|
21
|
-
- Skip research because the library seems familiar.
|
|
22
|
-
|
|
23
|
-
<constraint>
|
|
24
|
-
Research the codebase before editing. Never change code you have not read.
|
|
25
|
-
</constraint>
|
|
26
|
-
|
|
27
|
-
## Agentic Harness Heuristics
|
|
28
|
-
|
|
29
|
-
Model-agnostic operating rules for coding-agent work.
|
|
30
|
-
|
|
31
|
-
1. Persistence. Keep going until the user's request is actually handled. Only yield when the problem is solved or a concrete blocker is identified. Resolve in the fewest useful tool loops — once you can answer the core request with evidence, answer. Before ending a turn, check the last paragraph: if it is a plan, a question you can answer yourself, or a promise of work not done, do that work now.
|
|
32
|
-
2. Default to parallel. When multiple reads, searches, inspections, or independent checks can run without depending on each other, run them together.
|
|
33
|
-
3. Multi-pass search. First-pass search often misses — vary the wording before concluding something does not exist.
|
|
34
|
-
4. Trace symbols. Before modifying a symbol, trace its definition and usages. Do not infer behavior from one call site.
|
|
35
|
-
5. Linter-loop 3-strike rule. Do not loop more than 3 times fixing the same lint/test failure without reassessing the diagnosis.
|
|
36
|
-
6. Read-before-edit TTL. If you have not read a file recently, re-read it before editing. User edits can make cached context stale.
|
|
37
|
-
7. Big-file rule. For files over 1000 lines, prefer targeted search plus scoped reads over whole-file reads.
|
|
38
|
-
8. Task hygiene. Track meaningful deliverables, not operational sub-steps. Mark work complete as soon as it is done.
|
|
39
|
-
9. Literal-instruction rule. Treat explicit user requirements as checklists with success criteria. Do not silently broaden scope.
|
|
40
|
-
10. Context hygiene. Prefer a fresh session at task boundaries over carrying stale context; preserve useful state before quality decays. Never stop, summarize, or suggest a new session on account of context limits.
|
|
41
|
-
11. Autonomy calibration. For minor choices (naming, formatting, defaults, equivalent approaches), pick a reasonable option and note it — do not ask. Ask first only for scope changes, destructive actions, or decisions that change the deliverable. When the user is describing a problem or asking a question rather than requesting a change, the deliverable is your assessment — report findings and stop; do not apply fixes until asked.
|
|
42
|
-
12. Capability triggering. Search or fetch current documentation when the answer depends on current or version-specific information. When work fans out across independent items, parallelize or delegate; never delegate work you can complete directly. For verification, prefer a fresh-context check over self-critique. On long tasks, keep running notes and re-read them between phases.
|
|
43
|
-
|
|
44
|
-
<constraint>
|
|
45
|
-
Treat these heuristics as protocol. If a turn violates an applicable rule, self-correct before continuing.
|
|
46
|
-
</constraint>
|
|
47
|
-
|
|
48
|
-
## Engineering Discipline
|
|
49
|
-
|
|
50
|
-
- Prefer the repository's existing patterns and helpers over new abstractions.
|
|
51
|
-
- Keep edits scoped to the user's request and the surrounding ownership boundary.
|
|
52
|
-
- Add abstractions only when they remove real complexity or match an established local pattern.
|
|
53
|
-
- Preserve user changes. Never revert unrelated dirty work unless explicitly asked.
|
|
54
|
-
- Verify with the narrowest useful command first, then broaden if risk warrants it.
|
|
55
|
-
- Surface any test or verification you could not run.
|
|
56
|
-
- Before the first tool call, state in one or two sentences what you are about to do; give a brief progress update every few execution steps.
|
|
57
|
-
- Concise teammate tone: no status tics, no log-style updates; reference file paths instead of dumping contents; lead with what changed and why, not a "Summary" heading.
|
|
58
|
-
- The final message is for a reader who did not watch the work: outcome first, complete sentences. Shorten by dropping detail, never by compressing into fragments or arrow chains.
|
|
59
|
-
|
|
60
|
-
<constraint>
|
|
61
|
-
No secrets in committed config. Treat plugin marketplaces, installers, and downloaded artifacts as untrusted until verified.
|
|
62
|
-
</constraint>
|
|
63
|
-
|
|
64
|
-
## Agentic Engineering Discipline
|
|
65
|
-
|
|
66
|
-
1. **State assumptions; push back when warranted.** If a requirement is ambiguous in a way that changes the deliverable, surface the ambiguity and propose 1–2 concrete interpretations in your first message — do not silently pick one. Surface inconsistencies instead of guessing past them; present tradeoffs when approaches genuinely differ; push back when the request looks wrong.
|
|
67
|
-
2. **Minimum code that solves the stated problem.** No speculative features, no abstractions without a second caller, no broad exception handling around internally-trusted calls, no dead code left behind after a refactor, no comments that restate what the code says.
|
|
68
|
-
3. **Surgical changes only.** Do not modify code, comments, or formatting outside the explicit scope of the request. Surface unrelated issues as follow-ups — do not fix inline.
|
|
69
|
-
4. **State how success will be verified before implementing.** Name the test, build, smoke check, or diff inspection that will prove the change works. Prefer executable criteria — a test that fails before and passes after, a command with expected output — and keep each change small enough that its diff is reviewable in one sitting.
|
|
70
|
-
5. **Review scope follows the pipeline.** In pipeline reviews with a downstream filter, report every issue found with confidence and severity — filtering happens downstream. In ad-hoc reviews, flag only gaps that affect correctness or the stated requirements; treat the rest as optional.
|
|
71
|
-
6. **Ground every progress claim in evidence.** Before reporting progress or completion, audit each claim against a tool result from this session — show the test output, the command and what it returned. If something is unverified, say so explicitly; if tests fail, say so with the output.
|
|
72
|
-
|
|
73
|
-
<constraint>
|
|
74
|
-
Treat the six rules above as preventive (during generation), not remedial (after the fact). Self-correct if a turn drifts.
|
|
75
|
-
</constraint>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
package/SoT/.codex/config.toml
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
model = "gpt-5.6-sol"
|
|
2
|
-
model_reasoning_effort = "xhigh"
|
|
3
|
-
plan_mode_reasoning_effort = "xhigh"
|
|
4
|
-
model_reasoning_summary = "detailed"
|
|
5
|
-
model_verbosity = "medium"
|
|
6
|
-
personality = "pragmatic"
|
|
7
|
-
web_search = "live"
|
|
8
|
-
project_doc_max_bytes = 131072
|
|
9
|
-
approval_policy = "on-request"
|
|
10
|
-
sandbox_mode = "workspace-write"
|
|
11
|
-
approvals_reviewer = "auto_review"
|
|
12
|
-
|
|
13
|
-
[sandbox_workspace_write]
|
|
14
|
-
network_access = true
|
|
15
|
-
|
|
16
|
-
[features]
|
|
17
|
-
memories = true
|
|
18
|
-
|
|
19
|
-
[memories]
|
|
20
|
-
dedicated_tools = true
|
|
21
|
-
max_rollout_age_days = 30
|
|
22
|
-
|
|
23
|
-
[agents]
|
|
24
|
-
max_threads = 12
|
|
25
|
-
max_depth = 2
|
|
26
|
-
|
|
27
|
-
[tui]
|
|
28
|
-
status_line_use_colors = true
|
|
29
|
-
status_line = [
|
|
30
|
-
"model-with-reasoning",
|
|
31
|
-
"current-dir",
|
|
32
|
-
"git-branch",
|
|
33
|
-
"context-used",
|
|
34
|
-
"five-hour-limit",
|
|
35
|
-
"weekly-limit",
|
|
36
|
-
]
|
|
37
|
-
|
|
38
|
-
[plugins."docks@docks"]
|
|
39
|
-
enabled = true
|
|
40
|
-
|
|
41
|
-
[plugins."session-relay@docks"]
|
|
42
|
-
enabled = true
|
|
43
|
-
|
|
44
|
-
[plugins."effect-kit@docks"]
|
|
45
|
-
enabled = true
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "docks",
|
|
3
|
-
"interface": {
|
|
4
|
-
"displayName": "DocksDocks"
|
|
5
|
-
},
|
|
6
|
-
"plugins": [
|
|
7
|
-
{
|
|
8
|
-
"name": "docks",
|
|
9
|
-
"source": {
|
|
10
|
-
"source": "git-subdir",
|
|
11
|
-
"url": "https://github.com/DocksDocks/docks.git",
|
|
12
|
-
"path": "./plugins/docks",
|
|
13
|
-
"ref": "main"
|
|
14
|
-
},
|
|
15
|
-
"policy": {
|
|
16
|
-
"installation": "AVAILABLE",
|
|
17
|
-
"authentication": "ON_INSTALL"
|
|
18
|
-
},
|
|
19
|
-
"category": "Productivity"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"name": "session-relay",
|
|
23
|
-
"source": {
|
|
24
|
-
"source": "git-subdir",
|
|
25
|
-
"url": "https://github.com/DocksDocks/docks.git",
|
|
26
|
-
"path": "./plugins/session-relay",
|
|
27
|
-
"ref": "main"
|
|
28
|
-
},
|
|
29
|
-
"policy": {
|
|
30
|
-
"installation": "AVAILABLE",
|
|
31
|
-
"authentication": "ON_INSTALL"
|
|
32
|
-
},
|
|
33
|
-
"category": "Productivity"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "effect-kit",
|
|
37
|
-
"source": {
|
|
38
|
-
"source": "git-subdir",
|
|
39
|
-
"url": "https://github.com/DocksDocks/docks.git",
|
|
40
|
-
"path": "./plugins/effect-kit",
|
|
41
|
-
"ref": "main"
|
|
42
|
-
},
|
|
43
|
-
"policy": {
|
|
44
|
-
"installation": "AVAILABLE",
|
|
45
|
-
"authentication": "ON_INSTALL"
|
|
46
|
-
},
|
|
47
|
-
"category": "Productivity"
|
|
48
|
-
}
|
|
49
|
-
]
|
|
50
|
-
}
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
prefix_rule(pattern=["pwd"], decision="allow")
|
|
2
|
-
prefix_rule(pattern=["ls"], decision="allow")
|
|
3
|
-
prefix_rule(pattern=["cat"], decision="allow")
|
|
4
|
-
prefix_rule(pattern=["head"], decision="allow")
|
|
5
|
-
prefix_rule(pattern=["tail"], decision="allow")
|
|
6
|
-
prefix_rule(pattern=["wc"], decision="allow")
|
|
7
|
-
prefix_rule(pattern=["nl"], decision="allow")
|
|
8
|
-
prefix_rule(pattern=["grep"], decision="allow")
|
|
9
|
-
prefix_rule(pattern=["sort"], decision="allow")
|
|
10
|
-
prefix_rule(pattern=["uniq"], decision="allow")
|
|
11
|
-
prefix_rule(pattern=["diff"], decision="allow")
|
|
12
|
-
prefix_rule(pattern=["which"], decision="allow")
|
|
13
|
-
prefix_rule(pattern=["date"], decision="allow")
|
|
14
|
-
prefix_rule(pattern=["basename"], decision="allow")
|
|
15
|
-
prefix_rule(pattern=["dirname"], decision="allow")
|
|
16
|
-
prefix_rule(pattern=["realpath"], decision="allow")
|
|
17
|
-
prefix_rule(pattern=["readlink"], decision="allow")
|
|
18
|
-
prefix_rule(pattern=["jq"], decision="allow")
|
|
19
|
-
prefix_rule(pattern=["tree"], decision="allow")
|
|
20
|
-
prefix_rule(pattern=["cut"], decision="allow")
|
|
21
|
-
prefix_rule(pattern=["tr"], decision="allow")
|
|
22
|
-
prefix_rule(pattern=["echo"], decision="allow")
|
|
23
|
-
prefix_rule(pattern=["printf"], decision="allow")
|
|
24
|
-
prefix_rule(pattern=["printenv"], decision="allow")
|
|
25
|
-
prefix_rule(pattern=["uname"], decision="allow")
|
|
26
|
-
prefix_rule(pattern=["file"], decision="allow")
|
|
27
|
-
prefix_rule(pattern=["stat"], decision="allow")
|
|
28
|
-
prefix_rule(pattern=["du"], decision="allow")
|
|
29
|
-
prefix_rule(pattern=["id"], decision="allow")
|
|
30
|
-
prefix_rule(pattern=["whoami"], decision="allow")
|
|
31
|
-
|
|
32
|
-
prefix_rule(pattern=["git", "status"], decision="allow")
|
|
33
|
-
prefix_rule(pattern=["git", "diff"], decision="allow")
|
|
34
|
-
prefix_rule(pattern=["git", "log"], decision="allow")
|
|
35
|
-
prefix_rule(pattern=["git", "show"], decision="allow")
|
|
36
|
-
prefix_rule(pattern=["git", "blame"], decision="allow")
|
|
37
|
-
prefix_rule(pattern=["git", "rev-parse"], decision="allow")
|
|
38
|
-
prefix_rule(pattern=["git", "ls-files"], decision="allow")
|
|
39
|
-
prefix_rule(pattern=["git", "grep"], decision="allow")
|
|
40
|
-
prefix_rule(pattern=["git", "ls-tree"], decision="allow")
|
|
41
|
-
prefix_rule(pattern=["git", "branch", "--show-current"], decision="allow")
|
|
42
|
-
prefix_rule(pattern=["git", "branch", "-vv"], decision="allow")
|
|
43
|
-
prefix_rule(pattern=["git", "mv"], decision="allow")
|
|
44
|
-
|
|
45
|
-
prefix_rule(pattern=["gh", "pr", "view"], decision="allow")
|
|
46
|
-
prefix_rule(pattern=["gh", "pr", "list"], decision="allow")
|
|
47
|
-
prefix_rule(pattern=["gh", "pr", "diff"], decision="allow")
|
|
48
|
-
prefix_rule(pattern=["gh", "pr", "status"], decision="allow")
|
|
49
|
-
prefix_rule(pattern=["gh", "pr", "checks"], decision="allow")
|
|
50
|
-
|
|
51
|
-
prefix_rule(pattern=["docker", "ps"], decision="allow")
|
|
52
|
-
|
|
53
|
-
prefix_rule(pattern=["git", "push"], decision="prompt")
|
|
54
|
-
prefix_rule(pattern=["git", "reset"], decision="prompt")
|
|
55
|
-
prefix_rule(pattern=["git", "clean"], decision="prompt")
|
|
56
|
-
prefix_rule(pattern=["git", "merge"], decision="prompt")
|
|
57
|
-
prefix_rule(pattern=["git", "rebase"], decision="prompt")
|
|
58
|
-
prefix_rule(pattern=["git", "checkout"], decision="prompt")
|
|
59
|
-
|
|
60
|
-
prefix_rule(pattern=["rm"], decision="prompt")
|
|
61
|
-
prefix_rule(pattern=["mv"], decision="prompt")
|
|
62
|
-
prefix_rule(pattern=["chmod"], decision="prompt")
|
|
63
|
-
prefix_rule(pattern=["chown"], decision="prompt")
|
|
64
|
-
prefix_rule(pattern=["kill"], decision="prompt")
|
|
65
|
-
prefix_rule(pattern=["pkill"], decision="prompt")
|
|
66
|
-
|
|
67
|
-
prefix_rule(pattern=["npm", "install"], decision="prompt")
|
|
68
|
-
prefix_rule(pattern=["npm", "uninstall"], decision="prompt")
|
|
69
|
-
prefix_rule(pattern=["pnpm", "add"], decision="prompt")
|
|
70
|
-
prefix_rule(pattern=["pnpm", "remove"], decision="prompt")
|
|
71
|
-
prefix_rule(pattern=["yarn", "add"], decision="prompt")
|
|
72
|
-
prefix_rule(pattern=["yarn", "remove"], decision="prompt")
|
|
73
|
-
prefix_rule(pattern=["pip", "install"], decision="prompt")
|
|
74
|
-
prefix_rule(pattern=["pip", "uninstall"], decision="prompt")
|
|
75
|
-
prefix_rule(pattern=["pip3", "install"], decision="prompt")
|
|
76
|
-
prefix_rule(pattern=["pip3", "uninstall"], decision="prompt")
|
|
77
|
-
|
|
78
|
-
prefix_rule(pattern=["docker", "run"], decision="prompt")
|
|
79
|
-
prefix_rule(pattern=["docker", "rm"], decision="prompt")
|
|
80
|
-
prefix_rule(pattern=["docker", "stop"], decision="prompt")
|
|
81
|
-
prefix_rule(pattern=["docker", "volume"], decision="prompt")
|
|
82
|
-
prefix_rule(pattern=["docker", "system"], decision="prompt")
|
|
83
|
-
prefix_rule(pattern=["docker", "compose", "up"], decision="prompt")
|
|
84
|
-
prefix_rule(pattern=["docker", "compose", "down"], decision="prompt")
|
|
85
|
-
prefix_rule(pattern=["docker", "compose", "rm"], decision="prompt")
|
|
86
|
-
prefix_rule(pattern=["docker", "compose", "stop"], decision="prompt")
|
|
87
|
-
prefix_rule(pattern=["docker-compose", "up"], decision="prompt")
|
|
88
|
-
prefix_rule(pattern=["docker-compose", "down"], decision="prompt")
|
|
89
|
-
prefix_rule(pattern=["docker-compose", "rm"], decision="prompt")
|
|
90
|
-
prefix_rule(pattern=["docker-compose", "stop"], decision="prompt")
|
|
91
|
-
|
|
92
|
-
# `tail -f`/`--follow` never returns and hangs the agent (bare `tail` stays allowed above).
|
|
93
|
-
prefix_rule(pattern=["tail", "-f"], decision="prompt")
|
|
94
|
-
prefix_rule(pattern=["tail", "--follow"], decision="prompt")
|
|
95
|
-
# rg and `sed -n` are prompt, NOT allow: argv-prefix matching cannot gate their
|
|
96
|
-
# code-exec forms (rg --pre=CMD or a reordered --pre; sed -n 'e CMD' / -ni) while a
|
|
97
|
-
# shorter allow prefix would auto-approve the whole command.
|
|
98
|
-
prefix_rule(pattern=["rg"], decision="prompt")
|
|
99
|
-
prefix_rule(pattern=["sed", "-n"], decision="prompt")
|
|
100
|
-
prefix_rule(pattern=["find"], decision="prompt")
|
|
101
|
-
prefix_rule(pattern=["sed", "-i"], decision="prompt")
|
|
102
|
-
prefix_rule(pattern=["sed", "--in-place"], decision="prompt")
|
|
103
|
-
prefix_rule(pattern=["awk"], decision="prompt")
|
|
104
|
-
prefix_rule(pattern=["xargs"], decision="prompt")
|
|
105
|
-
prefix_rule(pattern=["tee"], decision="prompt")
|
|
106
|
-
prefix_rule(pattern=["curl"], decision="prompt")
|
|
107
|
-
prefix_rule(pattern=["env"], decision="prompt")
|
|
108
|
-
|
|
109
|
-
prefix_rule(pattern=["sudo"], decision="forbidden")
|
|
110
|
-
prefix_rule(pattern=["eval"], decision="forbidden")
|
|
111
|
-
prefix_rule(pattern=["mkfs"], decision="forbidden")
|
|
112
|
-
prefix_rule(pattern=["dd"], decision="forbidden")
|
|
113
|
-
prefix_rule(pattern=["git", "push", "--force", "origin", "main"], decision="forbidden")
|
|
114
|
-
prefix_rule(pattern=["git", "push", "--force", "origin", "master"], decision="forbidden")
|
|
115
|
-
prefix_rule(pattern=["git", "push", "-f", "origin", "main"], decision="forbidden")
|
|
116
|
-
prefix_rule(pattern=["git", "push", "-f", "origin", "master"], decision="forbidden")
|
package/SoT/models.json
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$comment": "Kit-verified model catalog — single source for EngineNative validators, the docks-kit CLI (models/model commands, pickers, bare-flag help), and docs. Entries are research-proofed: update an entry and its tool-level `verified` date when a model ships or retires. The catalog informs, it doesn't imprison: well-formed IDs outside it (claude-* / codex charset) apply with a warning.",
|
|
3
|
-
"claude": {
|
|
4
|
-
"verified": "2026-07-08",
|
|
5
|
-
"models": [
|
|
6
|
-
{ "id": "best", "kind": "alias", "note": "Fable 5 where the org has access, latest Opus otherwise (Claude Code >=2.1.170)" },
|
|
7
|
-
{ "id": "opus", "kind": "alias", "note": "latest Opus (currently Opus 4.8) — the kit SoT default, paired with the fable advisor" },
|
|
8
|
-
{ "id": "fable", "kind": "alias", "note": "Fable 5 — needs org access + Claude Code >=2.1.170" },
|
|
9
|
-
{ "id": "sonnet", "kind": "alias", "note": "latest Sonnet (currently Sonnet 5)" },
|
|
10
|
-
{ "id": "haiku", "kind": "alias", "note": "latest Haiku (currently Haiku 4.5)" },
|
|
11
|
-
{ "id": "default", "kind": "alias", "note": "engine pseudo-value: deletes the deployed model key so the account default applies" },
|
|
12
|
-
{ "id": "claude-fable-5", "kind": "id", "note": "Fable 5" },
|
|
13
|
-
{ "id": "claude-opus-4-8", "kind": "id", "note": "Opus 4.8" },
|
|
14
|
-
{ "id": "claude-sonnet-5", "kind": "id", "note": "Sonnet 5" },
|
|
15
|
-
{ "id": "claude-haiku-4-5-20251001", "kind": "id", "note": "Haiku 4.5" }
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
"codex": {
|
|
19
|
-
"verified": "2026-07-09",
|
|
20
|
-
"models": [
|
|
21
|
-
{ "id": "gpt-5.6-sol", "kind": "id", "note": "GPT-5.6 Sol — frontier, recommended default; the kit SoT pin" },
|
|
22
|
-
{ "id": "gpt-5.6-terra", "kind": "id", "note": "GPT-5.6 Terra — balanced tier" },
|
|
23
|
-
{ "id": "gpt-5.6-luna", "kind": "id", "note": "GPT-5.6 Luna — fast/light tier" },
|
|
24
|
-
{ "id": "gpt-5.5", "kind": "id", "note": "previous generation" },
|
|
25
|
-
{ "id": "gpt-5.5-codex", "kind": "id", "note": "codex-tuned gpt-5.5" },
|
|
26
|
-
{ "id": "gpt-5.1", "kind": "id", "note": "previous generation" },
|
|
27
|
-
{ "id": "gpt-5", "kind": "id", "note": "previous generation" },
|
|
28
|
-
{ "id": "gpt-5-codex", "kind": "id", "note": "codex-tuned gpt-5" }
|
|
29
|
-
]
|
|
30
|
-
}
|
|
31
|
-
}
|
package/SoT/toolchain.json
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$comment": "Kit toolchain manifest — DATA only (versions, floors, policy); check/install logic lives in cli/src/engine-native/toolchain.ts with per-surface sync callbacks in cli/src/engine-native/. kind: required (preflight hard dep) | check (doctor visibility only) | managed (kit installs/upgrades it) | pin (no binary probe — a version pin for a tool the kit invokes via npx). policy (managed only): track (upgrade toward latest, gated by `verified`) | present (install when missing, never upgrade). `verified` = last kit-tested version — anything above it prompts before install (--yes auto-accepts; non-TTY declines and falls back to the pinned `verified` when pinnable). Supply-chain stance: every kit-driven install is pinned to `verified` or gated by it — never floating @latest (npm-worm/Shai-Hulud surface). Update `verified` after testing a new release.",
|
|
3
|
-
"tools": {
|
|
4
|
-
"jq": { "kind": "required", "note": "deployed Claude hooks/statusline assets" },
|
|
5
|
-
"curl": { "kind": "required", "note": "installers + usage fetch" },
|
|
6
|
-
"git": { "kind": "check", "note": "plugin marketplaces (claude/codex clone them) + kit checkout updates" },
|
|
7
|
-
"node": { "kind": "check", "note": "hosts npm globals (agent-browser, LSP servers)" },
|
|
8
|
-
"npm": { "kind": "check", "note": "npm-global installer" },
|
|
9
|
-
"claude": { "kind": "check", "floor": "2.1.170", "note": "kit floor — `best` alias + Fable 5 need >=2.1.170 (mirrors settings minimumVersion)" },
|
|
10
|
-
"codex": { "kind": "check", "note": "upstream-owned; standalone installer prints when missing" },
|
|
11
|
-
"ffplay": { "kind": "check", "note": "Notification hook sound (previously unchecked)" },
|
|
12
|
-
"bwrap": { "kind": "check", "os": "linux", "note": "Codex Linux sandbox runtime" },
|
|
13
|
-
"intelephense": { "kind": "check", "verified": "1.18.5", "note": "php-lsp server binary; `verified` pins claude::sync_lsp_servers' npm install" },
|
|
14
|
-
"typescript-language-server": { "kind": "check", "verified": "5.3.0", "note": "typescript-lsp server binary; `verified` pins claude::sync_lsp_servers' npm install" },
|
|
15
|
-
"tsc": { "kind": "check", "verified": "6.0.3", "note": "typescript-lsp dependency (npm package `typescript`); `verified` pins claude::sync_lsp_servers' npm install. Deliberately on the 6.x line: typescript-language-server embeds TypeScript's programmatic API, which TS7 (native) doesn't yet expose — the repo's own devDependency runs TS7 for tsc --noEmit" },
|
|
16
|
-
"rtk": { "kind": "managed", "policy": "track", "floor": "0.43.0", "verified": "0.43.0", "pinnable": true,
|
|
17
|
-
"note": "PreToolUse hook — supply-chain review before unverified upgrades; installer honors RTK_VERSION=vX.Y.Z pin" },
|
|
18
|
-
"bun": { "kind": "managed", "policy": "present", "verified": "1.3.14", "pinnable": true,
|
|
19
|
-
"note": "runtime for effect-solutions + the docks-kit CLI; bootstrap installs the verified release (installer takes bun-vX.Y.Z); self-updates via `bun upgrade` when wanted" },
|
|
20
|
-
"effect-solutions": { "kind": "managed", "policy": "track", "verified": "0.5.3", "pinnable": true,
|
|
21
|
-
"note": "Effect docs CLI (bun global) — track keeps it self-upgrading, gated by the verified pin" },
|
|
22
|
-
"agent-browser": { "kind": "managed", "policy": "track", "verified": "0.31.1", "pinnable": true,
|
|
23
|
-
"note": "browser-automation CLI (npm global), gated by the verified pin; first install also downloads Chrome for Testing" },
|
|
24
|
-
"skills-cli": { "kind": "pin", "verified": "1.5.15",
|
|
25
|
-
"note": "the `skills` npm package the kit runs via `npx skills@<verified>` on every agents sync (universal-skill install/remove) — pinned, never @latest" }
|
|
26
|
-
}
|
|
27
|
-
}
|
package/notification.mp3
DELETED
|
Binary file
|