@olhapi/maestro-darwin-x64 0.1.0 → 0.1.1
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 +12 -5
- package/lib/maestro +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Docs: [maestro.olhapi.com/docs](https://maestro.olhapi.com/docs)
|
|
|
8
8
|
|
|
9
9
|
It combines a SQLite-backed tracker, an orchestrator that reads `WORKFLOW.md`, a private MCP daemon bridged by `maestro mcp`, and an HTTP server that serves the embedded dashboard plus JSON/WebSocket APIs.
|
|
10
10
|
|
|
11
|
-
Maestro stays local-first
|
|
11
|
+
Maestro stays local-first. External work is translated into Maestro projects and issues through the CLI, the embedded dashboard, or MCP prompts, then supervised through the same local queue, runtime state, MCP tools, and dashboard surfaces.
|
|
12
12
|
|
|
13
13
|
## Docs Website
|
|
14
14
|
|
|
@@ -106,7 +106,14 @@ maestro issue create "Fix auth bug" --project <project_id> --priority 1 --labels
|
|
|
106
106
|
maestro issue move ISS-1 ready
|
|
107
107
|
```
|
|
108
108
|
|
|
109
|
-
Projects
|
|
109
|
+
Projects use the local tracker only.
|
|
110
|
+
|
|
111
|
+
If you need to import work from another system, ask your MCP-capable agent to translate it into Maestro records. For example:
|
|
112
|
+
|
|
113
|
+
```text
|
|
114
|
+
Take my Jira issues from the "make a react todo app" epic and create the corresponding Maestro project, epics, and issues.
|
|
115
|
+
Use the current repo as the project repo path, keep the issues local, and mark the imported work ready.
|
|
116
|
+
```
|
|
110
117
|
|
|
111
118
|
Project descriptions are not just dashboard notes. Maestro passes `project.description` into every implementation, review, and done prompt by default, so use it for standing requirements, conventions, and validation expectations Codex should keep in mind for every issue.
|
|
112
119
|
|
|
@@ -184,7 +191,7 @@ maestro project stop <project_id> --api-url http://127.0.0.1:8787
|
|
|
184
191
|
|
|
185
192
|
`maestro run` is the long-lived process for a given database. It starts:
|
|
186
193
|
|
|
187
|
-
- the
|
|
194
|
+
- the local issue service and SQLite-backed store
|
|
188
195
|
- the orchestrator and agent runner
|
|
189
196
|
- a private MCP daemon used by `maestro mcp`
|
|
190
197
|
- the public HTTP server when `--port` is set or left at its default
|
|
@@ -224,7 +231,7 @@ maestro issue images list ISS-1
|
|
|
224
231
|
maestro issue images remove ISS-1 <image_id>
|
|
225
232
|
```
|
|
226
233
|
|
|
227
|
-
Image attachments are local-only
|
|
234
|
+
Image attachments are local-only for every issue. Maestro accepts PNG, JPEG, WEBP, and GIF files up to 10 MiB each and serves them back through the local HTTP API and dashboard.
|
|
228
235
|
|
|
229
236
|
Recurring automation:
|
|
230
237
|
|
|
@@ -292,7 +299,7 @@ Supported prompt-template variables are:
|
|
|
292
299
|
- `{{ attempt }}`
|
|
293
300
|
|
|
294
301
|
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.
|
|
295
|
-
The default done prompt also tells the agent to create a short local preview video when the change can be demonstrated and attach it to an issue comment when the available
|
|
302
|
+
The default done prompt also tells the agent to create a short local preview video when the change can be demonstrated and attach it to an issue comment when the available local issue tooling supports that flow.
|
|
296
303
|
|
|
297
304
|
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.
|
|
298
305
|
|
package/lib/maestro
CHANGED
|
Binary file
|