@maestrofrontier/frontier 1.4.3 → 1.4.5
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/plugins/marketplace.json +21 -0
- package/.codex-plugin/plugin.json +29 -0
- package/AGENTS.md +214 -214
- package/CLAUDE.md +29 -29
- package/README.md +113 -23
- package/docs/codex.md +81 -12
- package/frontier/cli.cjs +10 -6
- package/frontier/config.cjs +41 -14
- package/frontier/run.cjs +33 -1
- package/hooks/frontier-autorun.cjs +2 -6
- package/hooks/hooks.json +1 -1
- package/integrations/README.md +51 -34
- package/integrations/codex/prompts/frontier.md +22 -18
- package/integrations/codex/prompts/update.md +3 -0
- package/integrations/codex/skills/maestro-frontier/SKILL.md +122 -0
- package/integrations/codex/skills/{settings → maestro-settings}/SKILL.md +15 -6
- package/integrations/codex/skills/{terse → maestro-terse}/SKILL.md +15 -6
- package/integrations/codex/skills/maestro-update/SKILL.md +31 -0
- package/package.json +4 -1
- package/scripts/install.cjs +424 -15
- package/settings/cli.cjs +1 -1
- package/skills/maestro-frontier/SKILL.md +122 -0
- package/skills/maestro-settings/SKILL.md +55 -0
- package/skills/maestro-terse/SKILL.md +58 -0
- package/skills/maestro-update/SKILL.md +31 -0
- package/skills/terse/SKILL.md +74 -0
- package/integrations/codex/skills/frontier/SKILL.md +0 -91
- package/integrations/codex/skills/update/SKILL.md +0 -29
package/integrations/README.md
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
# Maestro integrations — slash commands for other CLIs
|
|
2
2
|
|
|
3
3
|
The Claude Code plugin ships Maestro's slash commands (`/maestro:*`) plus
|
|
4
|
-
enforcement hooks and auto-run.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
4
|
+
enforcement hooks and auto-run. Codex CLI/Desktop can install Maestro as a
|
|
5
|
+
native plugin from the repo marketplace; after the Maestro Codex plugin is
|
|
6
|
+
installed, enabled, and trusted, Frontier can auto-route normal Codex prompts
|
|
7
|
+
when you arm a project/workspace scope. Other agent CLIs mostly support
|
|
8
|
+
**custom slash commands** as prompt templates: they inject
|
|
9
|
+
instruction text, but do not run wrapper logic, gate tools, or auto-run every
|
|
10
|
+
prompt. Those ports are shortcuts around the portable `maestro frontier ...`
|
|
11
|
+
CLI, not plugin equivalents.
|
|
12
|
+
|
|
13
|
+
Portable integrations include `/frontier` and `/update`; Codex also installs
|
|
14
|
+
`maestro-frontier`, `maestro-settings`, `maestro-terse`, and `maestro-update`
|
|
15
|
+
skills. `/frontier` drives the portable engine (`maestro frontier ...`);
|
|
16
|
+
`/update` refreshes the install. `context-bar` is Claude Code-specific, while
|
|
17
|
+
settings and terse are available through Codex skills or the portable CLI. The
|
|
18
|
+
orchestration doctrine itself needs no command — it lives in `AGENTS.md` and
|
|
16
19
|
loads on demand.
|
|
17
20
|
|
|
18
21
|
## Placement
|
|
@@ -20,16 +23,25 @@ loads on demand.
|
|
|
20
23
|
| Runtime | Source in this repo | Install to | Invoke |
|
|
21
24
|
|---|---|---|---|
|
|
22
25
|
| Cursor | `integrations/cursor/commands/frontier.md` | `.cursor/commands/frontier.md` (per-repo) or `~/.cursor/commands/` (global) | `/frontier` |
|
|
23
|
-
| Codex (CLI +
|
|
26
|
+
| Codex (CLI + Desktop) | `skills/maestro-frontier/SKILL.md` in the plugin; `integrations/codex/skills/` mirrors the same files for portable installs | bundled by the `maestro@maestro` Codex plugin; portable fallback copies to `.agents/skills/<name>/SKILL.md` | ask for the Maestro skill |
|
|
24
27
|
|
|
25
|
-
After adding a file, restart the tool or open a new chat so it loads.
|
|
26
|
-
expand `$ARGUMENTS` to the full argument string — `/frontier fusion opus-gpt` passes
|
|
27
|
-
`fusion opus-gpt`.
|
|
28
|
+
After adding a file, restart the tool or open a new chat so it loads.
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
Use an explicit `--scope` flag when the runtime cannot autodetect one. Codex
|
|
31
|
+
plugin contexts resolve a project/workspace scope automatically (`codex-<8hex>`),
|
|
32
|
+
which is the recommended default for repo installs. For manual Codex commands,
|
|
33
|
+
use `--scope codex-project` from the repo root to target that same active scope:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
maestro frontier status --scope codex-project
|
|
37
|
+
maestro frontier mode fusion --preset chatgpt-duo --scope codex-project
|
|
38
|
+
maestro frontier mode fusion --preset frontier-trio --judge chatgpt --synth chatgpt --scope codex-project
|
|
39
|
+
maestro frontier mode off --scope codex-project
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Global/user scope is optional and should be intentional. Cursor uses
|
|
43
|
+
`--scope cursor`, Cline uses `--scope cline`, Gemini uses `--scope gemini`, and
|
|
44
|
+
Windsurf/Devin use `--scope windsurf`.
|
|
33
45
|
|
|
34
46
|
## Updating portable installs
|
|
35
47
|
|
|
@@ -60,7 +72,7 @@ updates are a single invocation:
|
|
|
60
72
|
| Runtime | Source in this repo | Install to | Invoke |
|
|
61
73
|
|---|---|---|---|
|
|
62
74
|
| Cursor | `integrations/cursor/commands/update.md` | `.cursor/commands/update.md` (per-repo) or `~/.cursor/commands/` (global) | `/update` |
|
|
63
|
-
| Codex (CLI +
|
|
75
|
+
| Codex (CLI + Desktop) | `integrations/codex/skills/maestro-update/SKILL.md` | `.agents/skills/maestro-update/SKILL.md` (project/workspace) or `~/.agents/skills/maestro-update/SKILL.md` (global/user) | ask for `maestro-update` |
|
|
64
76
|
|
|
65
77
|
**Version model:** Maestro pins no version for portable files. Fetching from
|
|
66
78
|
latest `main` always resolves the newest committed code — no manual version bump
|
|
@@ -68,26 +80,31 @@ needed per release.
|
|
|
68
80
|
|
|
69
81
|
## Caveats
|
|
70
82
|
|
|
71
|
-
- **
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
83
|
+
- **Auto-run parity varies.** Claude Code and Codex can auto-route after a mode is
|
|
84
|
+
armed. Cursor, Gemini, Cline, and Windsurf/Devin command ports are manual
|
|
85
|
+
shortcuts unless those runtimes add an equivalent trusted hook surface. Use
|
|
86
|
+
`maestro frontier run "<prompt>" ...` there for one-off panels.
|
|
87
|
+
- **Codex uses plugin-bundled skills, not prompts.** Install the marketplace
|
|
88
|
+
once with `codex plugin marketplace add mbanderas/maestro`, then install
|
|
89
|
+
`maestro@maestro` with `codex plugin add maestro@maestro`. The portable
|
|
90
|
+
fallback `maestro install --target codex` still copies the
|
|
91
|
+
`maestro-frontier`, `maestro-terse`, `maestro-settings`, and
|
|
92
|
+
`maestro-update` skills to `.agents/skills/<name>/SKILL.md`
|
|
93
|
+
(project/workspace) or `~/.agents/skills/<name>/SKILL.md` (global/user).
|
|
94
|
+
Deprecated `~/.codex/prompts/*.md` prompt files remain compatibility bridges
|
|
95
|
+
only.
|
|
80
96
|
- **Codex per-repo skill path:** `.agents/skills/<name>/SKILL.md` is the
|
|
81
97
|
repo-scoped option for Codex skills. The global path is
|
|
82
98
|
`~/.agents/skills/<name>/SKILL.md`.
|
|
83
99
|
- **Maestro Frontier ON indicator (Codex only).** When
|
|
84
|
-
`maestro frontier status --scope codex` reports mode != off, the `frontier` skill
|
|
100
|
+
`maestro frontier status --scope codex-project` reports mode != off, the `maestro-frontier` skill
|
|
85
101
|
instructs Codex to lead its reply with `Maestro Frontier ON (<label>)` —
|
|
86
102
|
`single · <model>` or `fusion · <preset>`. When mode is off, no indicator line
|
|
87
103
|
appears. This is Codex-scoped only and has no effect on Claude Code.
|
|
88
|
-
- **
|
|
89
|
-
|
|
90
|
-
|
|
104
|
+
- **Engine location.** Plugin installs run the bundled engine from the
|
|
105
|
+
installed plugin; portable/manual installs run `maestro frontier ...` (or
|
|
106
|
+
`node bin/maestro.cjs frontier ...`) from the repo root, so the engine must
|
|
107
|
+
have been copied in during install.
|
|
91
108
|
- **Windows + Gemini judge/synth.** `gemini` is fine as a panel member, but a poor
|
|
92
109
|
`--judge`/`--synth` on Windows (its arg-passing rejects the newline-bearing
|
|
93
110
|
judge/synth prompts, so the stage degrades). Use `opus` or `gpt-5.5` for
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Maestro Frontier local multi-CLI fusion engine —
|
|
2
|
+
description: Maestro Frontier local multi-CLI fusion engine — arm, disarm, inspect, or debug-run the panel
|
|
3
3
|
argument-hint: "<off | single <model> | fusion <preset> | status | run <prompt>>"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
Drive the **Maestro Frontier** engine — a zero-dependency local multi-CLI fusion
|
|
7
7
|
engine (a parallel panel of local CLIs → a judge model's analysis → a grounded
|
|
8
|
-
synthesis). It is the same engine the Claude Code plugin ships; here it runs
|
|
9
|
-
the `maestro` CLI, installed into this repo during setup.
|
|
8
|
+
synthesis). It is the same engine the Claude Code plugin ships; here it runs
|
|
9
|
+
through the `maestro` CLI, installed into this repo during setup.
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
(step 3).
|
|
11
|
+
When the Maestro Codex plugin hook is installed, enabled, and trusted, arming a
|
|
12
|
+
non-`off` mode makes ordinary later Codex prompts auto-run through Frontier
|
|
13
|
+
until disabled. Manual `run` remains available for advanced/debug one-offs.
|
|
15
14
|
|
|
16
15
|
Requested action: `$ARGUMENTS`
|
|
17
16
|
|
|
18
17
|
Map it to one engine CLI call and run it from the repo root. Do not edit
|
|
19
18
|
the engine's state file by hand.
|
|
20
19
|
|
|
21
|
-
1. Switch mode
|
|
22
|
-
|
|
20
|
+
1. Switch mode. Project/workspace scope is the default recommendation. Run from
|
|
21
|
+
the repo root with `--scope codex-project`; the CLI expands it to the same
|
|
22
|
+
`codex-<8hex>` scope the trusted Codex hook uses:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
maestro frontier mode off --scope codex
|
|
26
|
-
maestro frontier mode single --model <model> --scope codex
|
|
27
|
-
maestro frontier mode fusion --preset
|
|
28
|
-
maestro frontier mode fusion --preset
|
|
29
|
-
maestro frontier mode fusion --preset
|
|
25
|
+
maestro frontier mode off --scope codex-project
|
|
26
|
+
maestro frontier mode single --model <model> --scope codex-project
|
|
27
|
+
maestro frontier mode fusion --preset chatgpt-duo --scope codex-project
|
|
28
|
+
maestro frontier mode fusion --preset frontier-trio --judge chatgpt --synth chatgpt --scope codex-project
|
|
29
|
+
maestro frontier mode fusion --preset custom --models <a,b,c> --scope codex-project
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Models: `opus` (Claude Opus 4.8, needs `claude`), `gpt-5.5` (needs `codex`),
|
|
@@ -34,18 +34,22 @@ the engine's state file by hand.
|
|
|
34
34
|
`frontier-trio`, `custom`. Judge + synth default to Opus; `--judge`/`--synth`
|
|
35
35
|
override for any preset (e.g. `--judge opus --synth gpt-5.5`). `gpt-duo` runs
|
|
36
36
|
judge + synth on GPT-5.5 — a Codex-only fusion that needs no `claude`.
|
|
37
|
+
Friendly aliases are accepted: `chatgpt` -> `gpt-5.5`, and `chatgpt-duo` ->
|
|
38
|
+
`gpt-duo`.
|
|
37
39
|
|
|
38
40
|
2. Show the current mode/preset:
|
|
39
41
|
|
|
40
42
|
```bash
|
|
41
|
-
maestro frontier status --scope codex
|
|
43
|
+
maestro frontier status --scope codex-project
|
|
42
44
|
```
|
|
43
45
|
|
|
44
|
-
3.
|
|
45
|
-
|
|
46
|
+
3. Normal use after arming: type ordinary Codex prompts. The trusted hook
|
|
47
|
+
auto-runs Frontier and injects the synthesized answer as context.
|
|
48
|
+
|
|
49
|
+
4. Advanced/debug one-off run:
|
|
46
50
|
|
|
47
51
|
```bash
|
|
48
|
-
maestro frontier run "<prompt>" --scope codex
|
|
52
|
+
maestro frontier run "<prompt>" --scope codex-project
|
|
49
53
|
```
|
|
50
54
|
|
|
51
55
|
- `off`: prints a notice, spawns nothing.
|
|
@@ -30,6 +30,9 @@ curl -O https://raw.githubusercontent.com/mbanderas/maestro/main/bin/maestro.cjs
|
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
After updating, run `node bin/maestro.cjs frontier status` to confirm the engine is present.
|
|
33
|
+
For Codex skills, managed Maestro copies refresh automatically, user-edited
|
|
34
|
+
copies are preserved with next-step output, and older exact unprefixed Maestro
|
|
35
|
+
skills may be migrated to compatibility shims.
|
|
33
36
|
|
|
34
37
|
Report what was refreshed and note any errors.
|
|
35
38
|
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: maestro-frontier
|
|
3
|
+
description: Maestro Frontier local multi-CLI fusion engine - arm, disarm, inspect, or debug-run the panel
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Drive the **Maestro Frontier** engine: a zero-dependency local multi-CLI fusion
|
|
7
|
+
engine where a parallel panel of local CLIs feeds a judge model's analysis and a
|
|
8
|
+
grounded synthesis.
|
|
9
|
+
|
|
10
|
+
When the Maestro Codex plugin hook is installed, enabled, and trusted, arming a
|
|
11
|
+
non-`off` mode makes normal later Codex prompts auto-run through Frontier until
|
|
12
|
+
you turn it off. Users should not need to type `maestro frontier run "<prompt>"`
|
|
13
|
+
for normal use.
|
|
14
|
+
|
|
15
|
+
Map the user's request to one engine CLI call and run it from the repo root.
|
|
16
|
+
Do not edit the engine's state file by hand.
|
|
17
|
+
|
|
18
|
+
## Command launcher
|
|
19
|
+
|
|
20
|
+
Use `maestro` when it is on `PATH`. If it is not, and this skill is loaded
|
|
21
|
+
from the Maestro Codex plugin, locate the plugin root by walking up from this
|
|
22
|
+
`SKILL.md` until `.codex-plugin/plugin.json` is present, then run:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
node "<maestro-plugin-root>/bin/maestro.cjs" frontier ...
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
In the examples below, `maestro frontier ...` means either the bare command or
|
|
29
|
+
that plugin-root `node .../bin/maestro.cjs frontier ...` form.
|
|
30
|
+
|
|
31
|
+
## 1. Switch mode
|
|
32
|
+
|
|
33
|
+
Project/workspace scope is the default recommendation. Use `--scope
|
|
34
|
+
codex-project` from the repository root; the CLI expands it to the same
|
|
35
|
+
`codex-<8hex>` workspace scope the Codex plugin hook resolves from
|
|
36
|
+
`PLUGIN_ROOT` / `PLUGIN_DATA`. Default mode is `off`.
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
maestro frontier mode off --scope codex-project
|
|
40
|
+
maestro frontier mode single --model <model> --scope codex-project
|
|
41
|
+
maestro frontier mode fusion --preset chatgpt-duo --scope codex-project
|
|
42
|
+
maestro frontier mode fusion --preset frontier-trio --judge chatgpt --synth chatgpt --scope codex-project
|
|
43
|
+
maestro frontier mode fusion --preset custom --models <a,b,c> --scope codex-project
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Models: `opus` (Claude Opus 4.8, needs `claude`), `gpt-5.5` (needs `codex`),
|
|
47
|
+
`gemini` (needs `gemini`). Presets: `opus-duo`, `opus-gpt`, `gpt-duo`,
|
|
48
|
+
`frontier-trio`, `custom`. Friendly aliases are accepted: `chatgpt` maps to
|
|
49
|
+
`gpt-5.5`, and `chatgpt-duo` maps to `gpt-duo`.
|
|
50
|
+
|
|
51
|
+
Judge + synth default to Opus except for presets with explicit stage defaults.
|
|
52
|
+
Override them for mixed panels with `--judge <model>` and `--synth <model>`;
|
|
53
|
+
for example, `--judge chatgpt --synth chatgpt`.
|
|
54
|
+
|
|
55
|
+
## 2. Show current mode/preset
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
maestro frontier status --scope codex-project
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
If you intentionally want one shared Codex state across unrelated repos, choose
|
|
62
|
+
an explicit global name such as `--scope codex-global`. Do not use global scope
|
|
63
|
+
unless that cross-repo behavior is what you want.
|
|
64
|
+
|
|
65
|
+
## 3. Normal use after arming
|
|
66
|
+
|
|
67
|
+
After mode is non-`off`, type ordinary Codex prompts. The trusted Codex hook
|
|
68
|
+
auto-runs Frontier and injects the synthesized answer as context for the live
|
|
69
|
+
reply. Turn it off with:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
maestro frontier mode off --scope codex-project
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## 4. Advanced/debug one-off run
|
|
76
|
+
|
|
77
|
+
Manual one-off execution remains available for debugging:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
maestro frontier run "<prompt>" --scope codex-project
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
- `off`: prints a notice, spawns nothing.
|
|
84
|
+
- `single`: dispatches the one selected CLI, prints its answer.
|
|
85
|
+
- `fusion`: runs the panel in parallel, then judge, then synthesizer; prints
|
|
86
|
+
the final answer (a one-line run meta goes to stderr). Report stdout verbatim.
|
|
87
|
+
|
|
88
|
+
On error the engine prints `ERROR [<reason>]: <detail>` to stderr and exits
|
|
89
|
+
non-zero; relay the reason.
|
|
90
|
+
|
|
91
|
+
## Indicator instruction
|
|
92
|
+
|
|
93
|
+
<!-- INDICATOR INSTRUCTION - apply every turn while this skill is active -->
|
|
94
|
+
|
|
95
|
+
Before composing your first reply each turn, run:
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
maestro frontier status --scope codex-project
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Parse the returned JSON `mode` field:
|
|
102
|
+
|
|
103
|
+
- If `mode` is not `off`, make the **first line** of your reply exactly:
|
|
104
|
+
`Maestro Frontier ON (<label>)`
|
|
105
|
+
where `<label>` is formed as follows:
|
|
106
|
+
- single mode -> `single - <model>` (e.g. `single - opus`)
|
|
107
|
+
- fusion mode -> `fusion - <preset>` (e.g. `fusion - frontier-trio`);
|
|
108
|
+
for a custom preset use `fusion - custom (<model1>, <model2>, ...)`
|
|
109
|
+
- If `mode` is `off`, output no indicator line.
|
|
110
|
+
|
|
111
|
+
<!-- END INDICATOR INSTRUCTION -->
|
|
112
|
+
|
|
113
|
+
## Notes
|
|
114
|
+
|
|
115
|
+
- Real `single`/`fusion` runs spawn local CLIs and cost tokens; `off` is free.
|
|
116
|
+
- The autorun hook no-ops when `FUSION_DEPTH >= 1`, so child `codex`, `claude`,
|
|
117
|
+
and `gemini` panel processes do not recursively run Frontier.
|
|
118
|
+
- Each model's CLI must be on `PATH`, or point at a specific build with
|
|
119
|
+
`MAESTRO_CLAUDE_BIN` / `MAESTRO_CODEX_BIN` / `MAESTRO_GEMINI_BIN`.
|
|
120
|
+
- Requires `node` on `PATH`. The bare `maestro` command is optional when the
|
|
121
|
+
skill is loaded from the Maestro Codex plugin; use the plugin-root launcher
|
|
122
|
+
above.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: settings
|
|
2
|
+
name: maestro-settings
|
|
3
3
|
description: View and change Maestro toggles (terse, frontier, context-bar) via the settings CLI
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -9,14 +9,24 @@ the three primary toggles: `terse`, `frontier`, and `context-bar`.
|
|
|
9
9
|
When the user invokes this skill, run the settings CLI from the repo root.
|
|
10
10
|
Do not edit settings files by hand.
|
|
11
11
|
|
|
12
|
+
## Command launcher
|
|
13
|
+
|
|
14
|
+
Use `node settings/cli.cjs` when Maestro is installed in the project root. If
|
|
15
|
+
that file is not present and this skill is loaded from the Maestro Codex
|
|
16
|
+
plugin, locate the plugin root by walking up from this `SKILL.md` until
|
|
17
|
+
`.codex-plugin/plugin.json` is present, then run:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
node "<maestro-plugin-root>/settings/cli.cjs" ...
|
|
21
|
+
```
|
|
22
|
+
|
|
12
23
|
## Discover available commands
|
|
13
24
|
|
|
14
25
|
```bash
|
|
15
26
|
node settings/cli.cjs --help
|
|
16
27
|
```
|
|
17
28
|
|
|
18
|
-
If `settings/cli.cjs` is not present,
|
|
19
|
-
correct entry point.
|
|
29
|
+
If `settings/cli.cjs` is not present, use the plugin-root launcher above.
|
|
20
30
|
|
|
21
31
|
## Common operations
|
|
22
32
|
|
|
@@ -41,6 +51,5 @@ printed by `--help` — do not guess flags.
|
|
|
41
51
|
|
|
42
52
|
- Changes persist in Maestro's settings store and apply to subsequent agent
|
|
43
53
|
turns in this project.
|
|
44
|
-
- Requires `node` on `PATH
|
|
45
|
-
|
|
46
|
-
`npx github:mbanderas/maestro install --target codex`
|
|
54
|
+
- Requires `node` on `PATH`. A project-local Maestro install is optional when
|
|
55
|
+
the skill is loaded from the Maestro Codex plugin.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: terse
|
|
2
|
+
name: maestro-terse
|
|
3
3
|
description: Toggle Maestro terse output level (lite, full, ultra, off) via the settings CLI
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -10,6 +10,17 @@ condenses agent replies; levels range from `off` (default verbosity) through
|
|
|
10
10
|
When the user invokes this skill, run the settings CLI to read or change the
|
|
11
11
|
terse level. Do not edit settings files by hand.
|
|
12
12
|
|
|
13
|
+
## Command launcher
|
|
14
|
+
|
|
15
|
+
Use `node settings/cli.cjs` when Maestro is installed in the project root. If
|
|
16
|
+
that file is not present and this skill is loaded from the Maestro Codex
|
|
17
|
+
plugin, locate the plugin root by walking up from this `SKILL.md` until
|
|
18
|
+
`.codex-plugin/plugin.json` is present, then run:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
node "<maestro-plugin-root>/settings/cli.cjs" ...
|
|
22
|
+
```
|
|
23
|
+
|
|
13
24
|
## Check current terse level
|
|
14
25
|
|
|
15
26
|
```bash
|
|
@@ -17,8 +28,7 @@ node settings/cli.cjs --help
|
|
|
17
28
|
```
|
|
18
29
|
|
|
19
30
|
Consult the help output for the exact read subcommand, then run it. If
|
|
20
|
-
`settings/cli.cjs` is not present,
|
|
21
|
-
correct path.
|
|
31
|
+
`settings/cli.cjs` is not present, use the plugin-root launcher above.
|
|
22
32
|
|
|
23
33
|
## Set terse level
|
|
24
34
|
|
|
@@ -44,6 +54,5 @@ If the CLI rejects an argument or the subcommand name differs, run
|
|
|
44
54
|
|
|
45
55
|
- The change persists in Maestro's settings store; it applies to subsequent
|
|
46
56
|
agent turns in this project.
|
|
47
|
-
- Requires `node` on `PATH
|
|
48
|
-
|
|
49
|
-
`npx github:mbanderas/maestro install --target codex`
|
|
57
|
+
- Requires `node` on `PATH`. A project-local Maestro install is optional when
|
|
58
|
+
the skill is loaded from the Maestro Codex plugin.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: maestro-update
|
|
3
|
+
description: Update Maestro to the latest marketplace version for Codex
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Update **Maestro** to the latest Codex marketplace code. This refreshes the
|
|
7
|
+
configured Git marketplace and reinstalls the Maestro plugin from it.
|
|
8
|
+
|
|
9
|
+
When the user invokes this skill, run:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
codex plugin marketplace upgrade maestro
|
|
13
|
+
codex plugin add maestro@maestro
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
The update is idempotent. It will:
|
|
17
|
+
|
|
18
|
+
- Pull the latest Maestro source from the repository.
|
|
19
|
+
- Refresh the installed Maestro plugin cache.
|
|
20
|
+
- Refresh bundled Codex skills and hooks exposed by the plugin.
|
|
21
|
+
- Leave project-local configuration (state files, secrets) untouched.
|
|
22
|
+
|
|
23
|
+
## Notes
|
|
24
|
+
|
|
25
|
+
- Requires the Codex CLI on `PATH`.
|
|
26
|
+
- After reinstalling, restart the Codex session or open a new thread so updated
|
|
27
|
+
skills and hooks take effect.
|
|
28
|
+
- If the marketplace is not configured yet, run
|
|
29
|
+
`codex plugin marketplace add mbanderas/maestro` first.
|
|
30
|
+
- Portable/manual installs can still be refreshed with
|
|
31
|
+
`npx github:mbanderas/maestro install --target codex` from the project root.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maestrofrontier/frontier",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "Achieve Frontier AI performance in your CLI by fusing the model CLIs you already run. Maestro Frontier is an opt-in, zero-dependency local multi-CLI fusion engine for AI coding agents: fan a prompt across a panel of any 1 to 8 local model CLIs you pick, have a judge model and a synthesizer you choose read the answers into a structured analysis and write one grounded synthesis (default Opus 4.8, override either with --judge/--synth). On a 100-task benchmark every fusion panel outscored its individual member models. Three adapters ship today: Opus 4.8, GPT-5.5, Gemini 3.1 Pro, with Kimi, DeepSeek, GLM, and Qwen to follow. Off, single, and fusion modes switch via /maestro:frontier. Built on Maestro orchestration discipline: decision-gated routing, verified done-claims, surgical scope, and structural enforcement hooks.",
|
|
5
5
|
"keywords": ["multi-cli-fusion", "fusion-engine", "frontier", "multi-agent", "orchestration", "claude-code", "gemini", "codex", "agents", "hooks", "doctrine"],
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"frontier/semaphore.cjs",
|
|
26
26
|
"frontier/synthesize.cjs",
|
|
27
27
|
"scripts/install.cjs",
|
|
28
|
+
".codex-plugin/",
|
|
29
|
+
".agents/plugins/marketplace.json",
|
|
30
|
+
"skills/",
|
|
28
31
|
"AGENTS.md",
|
|
29
32
|
"CLAUDE.md",
|
|
30
33
|
"GEMINI.md",
|