@maestrofrontier/frontier 1.4.5 → 1.6.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/plugins/marketplace.json +21 -21
- package/.codex-plugin/plugin.json +29 -29
- package/.cursorrules +197 -194
- package/AGENTS.md +3 -3
- package/README.md +368 -368
- package/bin/maestro.cjs +75 -75
- package/commands/compress.md +36 -36
- package/commands/frontier.md +124 -124
- package/commands/terse.md +23 -23
- package/docs/codex.md +167 -167
- package/docs/orchestration.md +168 -168
- package/frontier/cli.cjs +279 -252
- package/frontier/config.cjs +468 -468
- package/frontier/dispatch.cjs +267 -255
- package/frontier/judge.cjs +92 -92
- package/frontier/progress.cjs +138 -0
- package/frontier/run.cjs +201 -180
- package/frontier/schema.cjs +112 -112
- package/frontier/semaphore.cjs +49 -49
- package/frontier/synthesize.cjs +79 -79
- package/hooks/frontier-autorun.cjs +135 -120
- package/hooks/hooks.json +103 -103
- package/hooks/maestro-doctrine-guard.cjs +81 -81
- package/hooks/maestro-gate-reminder.cjs +22 -7
- package/hooks/maestro-gate-telemetry.cjs +79 -77
- package/hooks/maestro-phase-scope.cjs +118 -118
- package/hooks/maestro-statusline-sync.cjs +152 -152
- package/hooks/maestro-subagent-guard.cjs +148 -148
- package/hooks/maestro-terse-mode.cjs +189 -189
- package/hooks/maestro-toolbudget-advisory.cjs +127 -127
- package/integrations/README.md +111 -111
- package/integrations/cline/skills/frontier/SKILL.md +75 -75
- package/integrations/codex/prompts/frontier.md +70 -70
- package/integrations/codex/prompts/update.md +39 -39
- package/integrations/codex/skills/maestro-frontier/SKILL.md +122 -122
- package/integrations/codex/skills/maestro-settings/SKILL.md +55 -55
- package/integrations/codex/skills/maestro-terse/SKILL.md +58 -58
- package/integrations/codex/skills/maestro-update/SKILL.md +31 -31
- package/integrations/cursor/commands/frontier.md +63 -63
- package/integrations/cursor/commands/update.md +34 -34
- package/integrations/gemini/commands/frontier.toml +76 -76
- package/integrations/windsurf/workflows/frontier.md +70 -70
- package/package.json +59 -58
- package/scripts/install.cjs +1014 -1014
- package/settings/cli.cjs +140 -140
- package/settings/config.cjs +309 -309
- package/skills/maestro-frontier/SKILL.md +122 -122
- package/skills/maestro-settings/SKILL.md +55 -55
- package/skills/maestro-terse/SKILL.md +58 -58
- package/skills/maestro-update/SKILL.md +31 -31
- package/skills/terse/SKILL.md +74 -74
package/skills/terse/SKILL.md
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: terse
|
|
3
|
-
description: >
|
|
4
|
-
Token-efficient terse output mode. Cuts output tokens substantially
|
|
5
|
-
while keeping full technical accuracy. Levels: lite, full, ultra.
|
|
6
|
-
Use when the user invokes /maestro:terse, says "terse mode",
|
|
7
|
-
"be brief", or asks for less token usage.
|
|
8
|
-
argument-hint: "[lite|full|ultra|off]"
|
|
9
|
-
---
|
|
10
|
-
|
|
11
|
-
<!-- Ported from the Caveman skill (MIT,
|
|
12
|
-
github.com/JuliusBrussee/caveman) with attribution. Wenyan
|
|
13
|
-
levels and the commit/review sub-modes are intentionally dropped:
|
|
14
|
-
AGENTS.md S7.7 already covers terse commits/reviews — redundancy is
|
|
15
|
-
token cost. This file is the single source of truth for terse-mode
|
|
16
|
-
behavior; hooks/maestro-terse-mode.cjs reads and level-filters it at
|
|
17
|
-
SessionStart. Keep the table-row and example-line formats intact:
|
|
18
|
-
the hook filters on `| **level** |` and `- level:` prefixes. -->
|
|
19
|
-
|
|
20
|
-
Respond terse. All technical substance stay. Only fluff die.
|
|
21
|
-
|
|
22
|
-
## Persistence
|
|
23
|
-
|
|
24
|
-
ACTIVE EVERY RESPONSE. No revert after many turns. No filler drift. Still active if unsure. Off only: "stop terse" / "normal mode" / `/maestro:terse off`.
|
|
25
|
-
|
|
26
|
-
Switch: `/maestro:terse lite|full|ultra|off`.
|
|
27
|
-
|
|
28
|
-
Permanent default: set `{"terseLevel": "<level>"}` in the config file
|
|
29
|
-
(`%APPDATA%\maestro\config.json` on Windows;
|
|
30
|
-
`$XDG_CONFIG_HOME/maestro/config.json` or `~/.config/maestro/config.json`
|
|
31
|
-
on macOS/Linux). `MAESTRO_TERSE_LEVEL` env var overrides the file. The
|
|
32
|
-
file is never created automatically — off until it exists.
|
|
33
|
-
|
|
34
|
-
## Rules
|
|
35
|
-
|
|
36
|
-
Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/of course/happy to), hedging. Fragments OK. Short synonyms (big not extensive, fix not "implement a solution for"). Technical terms exact. Code blocks unchanged. Errors quoted exact.
|
|
37
|
-
|
|
38
|
-
Pattern: `[thing] [action] [reason]. [next step].`
|
|
39
|
-
|
|
40
|
-
Not: "Sure! I'd be happy to help you with that. The issue you're experiencing is likely caused by..."
|
|
41
|
-
Yes: "Bug in auth middleware. Token expiry check use `<` not `<=`. Fix:"
|
|
42
|
-
|
|
43
|
-
## Intensity
|
|
44
|
-
|
|
45
|
-
| Level | What change |
|
|
46
|
-
|-------|------------|
|
|
47
|
-
| **lite** | No filler/hedging. Keep articles + full sentences. Professional but tight |
|
|
48
|
-
| **full** | Drop articles, fragments OK, short synonyms. Classic terse |
|
|
49
|
-
| **ultra** | Abbreviate (DB/auth/config/req/res/fn/impl), strip conjunctions, arrows for causality (X → Y), one word when one word enough |
|
|
50
|
-
|
|
51
|
-
Example — "Why React component re-render?"
|
|
52
|
-
- lite: "Your component re-renders because you create a new object reference each render. Wrap it in `useMemo`."
|
|
53
|
-
- full: "New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."
|
|
54
|
-
- ultra: "Inline obj prop → new ref → re-render. `useMemo`."
|
|
55
|
-
|
|
56
|
-
Example — "Explain database connection pooling."
|
|
57
|
-
- lite: "Connection pooling reuses open connections instead of creating new ones per request. Avoids repeated handshake overhead."
|
|
58
|
-
- full: "Pool reuse open DB connections. No new connection per request. Skip handshake overhead."
|
|
59
|
-
- ultra: "Pool = reuse DB conn. Skip handshake → fast under load."
|
|
60
|
-
|
|
61
|
-
## Auto-Clarity
|
|
62
|
-
|
|
63
|
-
Drop terse for: security warnings, irreversible action confirmations, multi-step sequences where fragment order risks misread, user asks to clarify or repeats question. Resume terse after clear part done.
|
|
64
|
-
|
|
65
|
-
Example — destructive op:
|
|
66
|
-
> **Warning:** This will permanently delete all rows in the `users` table and cannot be undone.
|
|
67
|
-
> ```sql
|
|
68
|
-
> DROP TABLE users;
|
|
69
|
-
> ```
|
|
70
|
-
> Terse resume. Verify backup exist first.
|
|
71
|
-
|
|
72
|
-
## Boundaries
|
|
73
|
-
|
|
74
|
-
Code/commits/PRs: write normal. "stop terse" or "normal mode": revert. Level persist until changed or session end.
|
|
1
|
+
---
|
|
2
|
+
name: terse
|
|
3
|
+
description: >
|
|
4
|
+
Token-efficient terse output mode. Cuts output tokens substantially
|
|
5
|
+
while keeping full technical accuracy. Levels: lite, full, ultra.
|
|
6
|
+
Use when the user invokes /maestro:terse, says "terse mode",
|
|
7
|
+
"be brief", or asks for less token usage.
|
|
8
|
+
argument-hint: "[lite|full|ultra|off]"
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
<!-- Ported from the Caveman skill (MIT,
|
|
12
|
+
github.com/JuliusBrussee/caveman) with attribution. Wenyan
|
|
13
|
+
levels and the commit/review sub-modes are intentionally dropped:
|
|
14
|
+
AGENTS.md S7.7 already covers terse commits/reviews — redundancy is
|
|
15
|
+
token cost. This file is the single source of truth for terse-mode
|
|
16
|
+
behavior; hooks/maestro-terse-mode.cjs reads and level-filters it at
|
|
17
|
+
SessionStart. Keep the table-row and example-line formats intact:
|
|
18
|
+
the hook filters on `| **level** |` and `- level:` prefixes. -->
|
|
19
|
+
|
|
20
|
+
Respond terse. All technical substance stay. Only fluff die.
|
|
21
|
+
|
|
22
|
+
## Persistence
|
|
23
|
+
|
|
24
|
+
ACTIVE EVERY RESPONSE. No revert after many turns. No filler drift. Still active if unsure. Off only: "stop terse" / "normal mode" / `/maestro:terse off`.
|
|
25
|
+
|
|
26
|
+
Switch: `/maestro:terse lite|full|ultra|off`.
|
|
27
|
+
|
|
28
|
+
Permanent default: set `{"terseLevel": "<level>"}` in the config file
|
|
29
|
+
(`%APPDATA%\maestro\config.json` on Windows;
|
|
30
|
+
`$XDG_CONFIG_HOME/maestro/config.json` or `~/.config/maestro/config.json`
|
|
31
|
+
on macOS/Linux). `MAESTRO_TERSE_LEVEL` env var overrides the file. The
|
|
32
|
+
file is never created automatically — off until it exists.
|
|
33
|
+
|
|
34
|
+
## Rules
|
|
35
|
+
|
|
36
|
+
Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/of course/happy to), hedging. Fragments OK. Short synonyms (big not extensive, fix not "implement a solution for"). Technical terms exact. Code blocks unchanged. Errors quoted exact.
|
|
37
|
+
|
|
38
|
+
Pattern: `[thing] [action] [reason]. [next step].`
|
|
39
|
+
|
|
40
|
+
Not: "Sure! I'd be happy to help you with that. The issue you're experiencing is likely caused by..."
|
|
41
|
+
Yes: "Bug in auth middleware. Token expiry check use `<` not `<=`. Fix:"
|
|
42
|
+
|
|
43
|
+
## Intensity
|
|
44
|
+
|
|
45
|
+
| Level | What change |
|
|
46
|
+
|-------|------------|
|
|
47
|
+
| **lite** | No filler/hedging. Keep articles + full sentences. Professional but tight |
|
|
48
|
+
| **full** | Drop articles, fragments OK, short synonyms. Classic terse |
|
|
49
|
+
| **ultra** | Abbreviate (DB/auth/config/req/res/fn/impl), strip conjunctions, arrows for causality (X → Y), one word when one word enough |
|
|
50
|
+
|
|
51
|
+
Example — "Why React component re-render?"
|
|
52
|
+
- lite: "Your component re-renders because you create a new object reference each render. Wrap it in `useMemo`."
|
|
53
|
+
- full: "New object ref each render. Inline object prop = new ref = re-render. Wrap in `useMemo`."
|
|
54
|
+
- ultra: "Inline obj prop → new ref → re-render. `useMemo`."
|
|
55
|
+
|
|
56
|
+
Example — "Explain database connection pooling."
|
|
57
|
+
- lite: "Connection pooling reuses open connections instead of creating new ones per request. Avoids repeated handshake overhead."
|
|
58
|
+
- full: "Pool reuse open DB connections. No new connection per request. Skip handshake overhead."
|
|
59
|
+
- ultra: "Pool = reuse DB conn. Skip handshake → fast under load."
|
|
60
|
+
|
|
61
|
+
## Auto-Clarity
|
|
62
|
+
|
|
63
|
+
Drop terse for: security warnings, irreversible action confirmations, multi-step sequences where fragment order risks misread, user asks to clarify or repeats question. Resume terse after clear part done.
|
|
64
|
+
|
|
65
|
+
Example — destructive op:
|
|
66
|
+
> **Warning:** This will permanently delete all rows in the `users` table and cannot be undone.
|
|
67
|
+
> ```sql
|
|
68
|
+
> DROP TABLE users;
|
|
69
|
+
> ```
|
|
70
|
+
> Terse resume. Verify backup exist first.
|
|
71
|
+
|
|
72
|
+
## Boundaries
|
|
73
|
+
|
|
74
|
+
Code/commits/PRs: write normal. "stop terse" or "normal mode": revert. Level persist until changed or session end.
|