@olhapi/maestro-darwin-x64 0.1.2 → 0.1.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 +12 -2
- package/lib/maestro +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ Website: [maestro.olhapi.com](https://maestro.olhapi.com/)
|
|
|
6
6
|
Repository: [github.com/olhapi/maestro](https://github.com/olhapi/maestro)
|
|
7
7
|
Docs: [maestro.olhapi.com/docs](https://maestro.olhapi.com/docs)
|
|
8
8
|
|
|
9
|
+
This project is inspired by [openai/symphony](https://github.com/openai/symphony).
|
|
10
|
+
|
|
9
11
|
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
12
|
|
|
11
13
|
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.
|
|
@@ -131,9 +133,17 @@ Issue images are stored next to the active database under `assets/images`. With
|
|
|
131
133
|
|
|
132
134
|
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
135
|
|
|
134
|
-
### 4.
|
|
136
|
+
### 4. Install the Maestro skill bundle and add the MCP server to your coding agent
|
|
137
|
+
|
|
138
|
+
Install the bundled Maestro skill first so Codex and Claude Code can load the repo-specific guidance automatically:
|
|
139
|
+
|
|
140
|
+
```bash
|
|
141
|
+
maestro install --skills
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
That writes the skill to `~/.agents/skills/maestro` for Codex and `~/.claude/skills/maestro` for Claude Code.
|
|
135
145
|
|
|
136
|
-
|
|
146
|
+
Then use the setup path that matches your coding agent:
|
|
137
147
|
|
|
138
148
|
Codex:
|
|
139
149
|
|
package/lib/maestro
CHANGED
|
Binary file
|