@orkestrel/scaffold 0.0.37 → 0.0.38
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/dist/host/CLAUDE.md +2 -0
- package/dist/host/agents/orchestration.md +51 -24
- package/dist/host/agents/skills/orkestrel-debrief/SKILL.md +7 -2
- package/dist/host/agents/skills/orkestrel-debrief/references/field-testing.md +3 -0
- package/dist/host/agents/skills/orkestrel-debrief/references/instruction-audit.md +6 -0
- package/dist/host/claude/agents/analyst.md +6 -3
- package/dist/host/claude/agents/checker.md +1 -1
- package/dist/host/claude/agents/codex.md +13 -9
- package/dist/host/claude/agents/grok.md +3 -2
- package/dist/host/claude/agents/orkestrel.md +13 -10
- package/dist/host/claude/agents/planner.md +2 -1
- package/dist/host/claude/agents/reviewer.md +15 -14
- package/dist/host/claude/agents/sol.md +4 -2
- package/dist/host/claude/rules/quality.md +2 -1
- package/dist/host/claude/rules/tests.md +1 -0
- package/dist/host/codex/agents/analyst.toml +5 -5
- package/dist/host/codex/agents/claude.toml +34 -0
- package/dist/host/codex/agents/grok.toml +3 -3
- package/dist/host/codex/agents/opus.toml +16 -20
- package/dist/host/codex/agents/planner.toml +12 -17
- package/dist/host/codex/agents/reviewer.toml +13 -18
- package/dist/host/guides/guide.md +193 -98
- package/dist/host/manifest.json +6 -1
- package/dist/host/tests/config.test.ts +10 -7
- package/dist/src/core/index.cjs +2 -2
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.js +2 -2
- package/dist/src/core/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -4,24 +4,20 @@ model = "gpt-5.6-terra"
|
|
|
4
4
|
model_reasoning_effort = "low"
|
|
5
5
|
sandbox_mode = "workspace-write"
|
|
6
6
|
developer_instructions = """
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
destructive commands, shared-file edits, and tree-wide mutating gates. After it
|
|
24
|
-
returns, verify with git status, the diff, and scoped validation, then return
|
|
25
|
-
touched files, diffstat, validation evidence, and deviation state labeled
|
|
26
|
-
untrusted. Never route orchestration or acceptance across this bridge. Never read credentials or spawn another agent.
|
|
7
|
+
`.codex/agents/claude.toml` owns the Claude transport contract in full; read it and
|
|
8
|
+
follow it.
|
|
9
|
+
|
|
10
|
+
This route pins `--permission-mode acceptEdits`, in the main checkout, as the sole
|
|
11
|
+
serial writer from a clean committed baseline.
|
|
12
|
+
|
|
13
|
+
The brief requires owned files, off-limits files, acceptance criteria, TTTDD, and a
|
|
14
|
+
deviation contract. It forbids dependency installation, commits, pushes, publishing,
|
|
15
|
+
credentials, destructive commands, shared-file edits, and tree-wide mutating gates.
|
|
16
|
+
|
|
17
|
+
If the CLI is absent or the dispatch fails, return the failure immediately so the unit
|
|
18
|
+
can route to the Sol implementer instead.
|
|
19
|
+
|
|
20
|
+
After the run returns, verify it with git status, the diff, and scoped validation, then
|
|
21
|
+
return touched files, diffstat, validation evidence, and deviation state labeled
|
|
22
|
+
untrusted, plus any CLI/auth deviation.
|
|
27
23
|
"""
|
|
@@ -4,21 +4,16 @@ model = "gpt-5.6-terra"
|
|
|
4
4
|
model_reasoning_effort = "low"
|
|
5
5
|
sandbox_mode = "read-only"
|
|
6
6
|
developer_instructions = """
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
for the Orchestrator to
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
alternatives, bounded units that each name their role and engine, subjective tensions,
|
|
20
|
-
and risks. It forbids edits, commands, reconciliation with Sol, orchestration, and
|
|
21
|
-
acceptance. Never route orchestration or acceptance across this bridge,
|
|
22
|
-
read credentials, edit, or spawn. Return the Opus proposal labeled untrusted plus
|
|
23
|
-
any CLI/auth deviation.
|
|
7
|
+
`.codex/agents/claude.toml` owns the Claude transport contract in full; read it and
|
|
8
|
+
follow it.
|
|
9
|
+
|
|
10
|
+
This route pins `--permission-mode plan`.
|
|
11
|
+
|
|
12
|
+
The brief asks for coherent API shape, vocabulary, and ergonomics; at most two
|
|
13
|
+
alternatives; bounded units that each name their role and engine; tensions named for
|
|
14
|
+
the other lane to challenge, or for the Orchestrator to rule when one engine holds
|
|
15
|
+
both lanes; and risks. It forbids edits, commands, reconciliation, orchestration, and
|
|
16
|
+
acceptance.
|
|
17
|
+
|
|
18
|
+
Return the Opus proposal labeled untrusted plus any CLI/auth deviation.
|
|
24
19
|
"""
|
|
@@ -4,22 +4,17 @@ model = "gpt-5.6-terra"
|
|
|
4
4
|
model_reasoning_effort = "low"
|
|
5
5
|
sandbox_mode = "read-only"
|
|
6
6
|
developer_instructions = """
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
settleable on subjective grounds to come back as an Analyst referral. For a rendered or externally
|
|
21
|
-
driven surface, require capture citations as primary evidence and the verdict shape
|
|
22
|
-
of the dispatch-named skill. Forbid edits, commands, orchestration, reconciliation,
|
|
23
|
-
and acceptance. Never route orchestration or acceptance across this bridge, read credentials,
|
|
24
|
-
edit, or spawn. Return the Opus audit labeled untrusted plus any CLI/auth deviation.
|
|
7
|
+
`.codex/agents/claude.toml` owns the Claude transport contract in full; read it and
|
|
8
|
+
follow it.
|
|
9
|
+
|
|
10
|
+
This route pins `--permission-mode plan`.
|
|
11
|
+
|
|
12
|
+
The brief requires the `orkestrel-falsify` verdict shape and its single terminal line,
|
|
13
|
+
unless the dispatch names a different skill that fixes one; file:line evidence on every
|
|
14
|
+
required change; out-of-lane questions returned as referrals rather than verdicts; and,
|
|
15
|
+
for a rendered or externally driven surface, the capture portfolio as primary evidence
|
|
16
|
+
with source as corroboration. It forbids edits, commands, orchestration, reconciliation,
|
|
17
|
+
and acceptance.
|
|
18
|
+
|
|
19
|
+
Return the Opus audit labeled untrusted plus any CLI/auth deviation.
|
|
25
20
|
"""
|