@olhapi/maestro-darwin-x64 0.1.0-rc.2 → 0.1.0-rc.4
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 +32 -5
- package/lib/maestro +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Maestro is a local-first orchestration runtime for agent-driven software work.
|
|
4
4
|
|
|
5
|
+
Website: [maestro.olhapi.com](https://maestro.olhapi.com/)
|
|
6
|
+
Repository: [github.com/olhapi/maestro](https://github.com/olhapi/maestro)
|
|
7
|
+
|
|
5
8
|
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.
|
|
6
9
|
|
|
7
10
|
Maestro stays local-first even when a project syncs issues from Linear. Provider-backed issues are synchronized into the local store, then supervised through the same local queue, runtime state, MCP tools, and dashboard surfaces as local kanban issues.
|
|
@@ -85,7 +88,7 @@ This writes a repo-local `WORKFLOW.md` with the default orchestration settings a
|
|
|
85
88
|
### 2. Create a project and queue some work
|
|
86
89
|
|
|
87
90
|
```bash
|
|
88
|
-
maestro project create "My App" --repo /absolute/path/to/my-app --desc "
|
|
91
|
+
maestro project create "My App" --repo /absolute/path/to/my-app --desc "Repo-wide Codex guidance: use pnpm, keep changes scoped, and run focused validation for touched packages."
|
|
89
92
|
maestro issue create "Add login page" --project <project_id> --labels feature,ui
|
|
90
93
|
maestro issue create "Fix auth bug" --project <project_id> --priority 1 --labels bug
|
|
91
94
|
maestro issue move ISS-1 ready
|
|
@@ -93,6 +96,8 @@ maestro issue move ISS-1 ready
|
|
|
93
96
|
|
|
94
97
|
Projects default to the local `kanban` provider. You can also register a project with limited Linear-backed sync by passing `--provider linear --provider-project-ref <slug>` and, if needed, `--provider-endpoint` or `--provider-assignee`.
|
|
95
98
|
|
|
99
|
+
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.
|
|
100
|
+
|
|
96
101
|
### 3. Start the daemon
|
|
97
102
|
|
|
98
103
|
```bash
|
|
@@ -107,22 +112,39 @@ Issue images are stored next to the active database under `assets/images`. With
|
|
|
107
112
|
|
|
108
113
|
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.
|
|
109
114
|
|
|
110
|
-
### 4.
|
|
115
|
+
### 4. Add the Maestro MCP server to your coding agent
|
|
116
|
+
|
|
117
|
+
Use the setup path that matches your coding agent:
|
|
118
|
+
|
|
119
|
+
Codex:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
codex mcp add maestro -- maestro mcp
|
|
123
|
+
```
|
|
111
124
|
|
|
112
|
-
|
|
125
|
+
Claude Code:
|
|
126
|
+
|
|
127
|
+
```bash
|
|
128
|
+
claude mcp add maestro -- maestro mcp
|
|
129
|
+
claude mcp add --scope project maestro -- maestro mcp
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Other MCP-capable agents:
|
|
113
133
|
|
|
114
134
|
```json
|
|
115
135
|
{
|
|
116
136
|
"mcpServers": {
|
|
117
137
|
"maestro": {
|
|
118
|
-
"command": "
|
|
138
|
+
"command": "maestro",
|
|
119
139
|
"args": ["mcp"]
|
|
120
140
|
}
|
|
121
141
|
}
|
|
122
142
|
}
|
|
123
143
|
```
|
|
124
144
|
|
|
125
|
-
|
|
145
|
+
If you built Maestro from source and did not add it to your `PATH`, replace `maestro` with the absolute path to the binary.
|
|
146
|
+
|
|
147
|
+
`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`.
|
|
126
148
|
|
|
127
149
|
### 5. Open the dashboard or use live CLI helpers
|
|
128
150
|
|
|
@@ -250,9 +272,14 @@ Supported prompt-template variables are:
|
|
|
250
272
|
- `{{ issue.title }}`
|
|
251
273
|
- `{{ issue.description }}`
|
|
252
274
|
- `{{ issue.state }}`
|
|
275
|
+
- `{{ project.id }}`
|
|
276
|
+
- `{{ project.name }}`
|
|
277
|
+
- `{{ project.description }}`
|
|
253
278
|
- `{{ phase }}`
|
|
254
279
|
- `{{ attempt }}`
|
|
255
280
|
|
|
281
|
+
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.
|
|
282
|
+
|
|
256
283
|
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.
|
|
257
284
|
|
|
258
285
|
Missing-file behavior differs by command:
|
package/lib/maestro
CHANGED
|
Binary file
|