@olhapi/maestro-darwin-x64 0.1.1 → 0.1.3
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/README.md +13 -3
- package/lib/maestro +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -131,9 +131,17 @@ Issue images are stored next to the active database under `assets/images`. With
|
|
|
131
131
|
|
|
132
132
|
The preview warning on `run` is intentional. Pass `--i-understand-that-this-will-be-running-without-the-usual-guardrails` only when unattended Codex execution is actually what you want.
|
|
133
133
|
|
|
134
|
-
### 4.
|
|
134
|
+
### 4. Install the Maestro skill bundle and add the MCP server to your coding agent
|
|
135
135
|
|
|
136
|
-
|
|
136
|
+
Install the bundled Maestro skill first so Codex and Claude Code can load the repo-specific guidance automatically:
|
|
137
|
+
|
|
138
|
+
```bash
|
|
139
|
+
maestro install --skills
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
That writes the skill to `~/.agents/skills/maestro` for Codex and `~/.claude/skills/maestro` for Claude Code.
|
|
143
|
+
|
|
144
|
+
Then use the setup path that matches your coding agent:
|
|
137
145
|
|
|
138
146
|
Codex:
|
|
139
147
|
|
|
@@ -165,6 +173,8 @@ If you built Maestro from source and did not add it to your `PATH`, replace `mae
|
|
|
165
173
|
|
|
166
174
|
`maestro mcp` is a stdio bridge into the live `maestro run` daemon for the same database. Start `maestro run` first, then let your coding agent invoke `maestro mcp`.
|
|
167
175
|
|
|
176
|
+
Paginated MCP list tools return a `pagination` object when more results remain. When `pagination.has_more` is true, call the exact `pagination.next_request` payload to fetch the next batch instead of guessing the next offset by hand.
|
|
177
|
+
|
|
168
178
|
### 5. Open the dashboard or use live CLI helpers
|
|
169
179
|
|
|
170
180
|
By default, `maestro run` serves:
|
|
@@ -299,7 +309,7 @@ Supported prompt-template variables are:
|
|
|
299
309
|
- `{{ attempt }}`
|
|
300
310
|
|
|
301
311
|
When a project has a description, Maestro's default implementation, review, and done prompts include it automatically under a `Project context:` section. Custom workflows can place `{{ project.description }}` wherever they want.
|
|
302
|
-
The default done prompt
|
|
312
|
+
The default done prompt now focuses on merge-back, PR readiness, and blocker reporting instead of asking for a preview artifact.
|
|
303
313
|
|
|
304
314
|
The checked-in [`WORKFLOW.md`](WORKFLOW.md) is this repository's own workflow example. It is not guaranteed to match fresh `workflow init` defaults exactly.
|
|
305
315
|
|
package/lib/maestro
CHANGED
|
Binary file
|