@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.
Files changed (51) hide show
  1. package/.agents/plugins/marketplace.json +21 -21
  2. package/.codex-plugin/plugin.json +29 -29
  3. package/.cursorrules +197 -194
  4. package/AGENTS.md +3 -3
  5. package/README.md +368 -368
  6. package/bin/maestro.cjs +75 -75
  7. package/commands/compress.md +36 -36
  8. package/commands/frontier.md +124 -124
  9. package/commands/terse.md +23 -23
  10. package/docs/codex.md +167 -167
  11. package/docs/orchestration.md +168 -168
  12. package/frontier/cli.cjs +279 -252
  13. package/frontier/config.cjs +468 -468
  14. package/frontier/dispatch.cjs +267 -255
  15. package/frontier/judge.cjs +92 -92
  16. package/frontier/progress.cjs +138 -0
  17. package/frontier/run.cjs +201 -180
  18. package/frontier/schema.cjs +112 -112
  19. package/frontier/semaphore.cjs +49 -49
  20. package/frontier/synthesize.cjs +79 -79
  21. package/hooks/frontier-autorun.cjs +135 -120
  22. package/hooks/hooks.json +103 -103
  23. package/hooks/maestro-doctrine-guard.cjs +81 -81
  24. package/hooks/maestro-gate-reminder.cjs +22 -7
  25. package/hooks/maestro-gate-telemetry.cjs +79 -77
  26. package/hooks/maestro-phase-scope.cjs +118 -118
  27. package/hooks/maestro-statusline-sync.cjs +152 -152
  28. package/hooks/maestro-subagent-guard.cjs +148 -148
  29. package/hooks/maestro-terse-mode.cjs +189 -189
  30. package/hooks/maestro-toolbudget-advisory.cjs +127 -127
  31. package/integrations/README.md +111 -111
  32. package/integrations/cline/skills/frontier/SKILL.md +75 -75
  33. package/integrations/codex/prompts/frontier.md +70 -70
  34. package/integrations/codex/prompts/update.md +39 -39
  35. package/integrations/codex/skills/maestro-frontier/SKILL.md +122 -122
  36. package/integrations/codex/skills/maestro-settings/SKILL.md +55 -55
  37. package/integrations/codex/skills/maestro-terse/SKILL.md +58 -58
  38. package/integrations/codex/skills/maestro-update/SKILL.md +31 -31
  39. package/integrations/cursor/commands/frontier.md +63 -63
  40. package/integrations/cursor/commands/update.md +34 -34
  41. package/integrations/gemini/commands/frontier.toml +76 -76
  42. package/integrations/windsurf/workflows/frontier.md +70 -70
  43. package/package.json +59 -58
  44. package/scripts/install.cjs +1014 -1014
  45. package/settings/cli.cjs +140 -140
  46. package/settings/config.cjs +309 -309
  47. package/skills/maestro-frontier/SKILL.md +122 -122
  48. package/skills/maestro-settings/SKILL.md +55 -55
  49. package/skills/maestro-terse/SKILL.md +58 -58
  50. package/skills/maestro-update/SKILL.md +31 -31
  51. package/skills/terse/SKILL.md +74 -74
@@ -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.