symphony-orchestrator 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 +16 -3
- package/apps/frontend/dist/assets/{index-CI3z9Z5d.js → index-B7ZCNhPO.js} +7 -7
- package/apps/frontend/dist/assets/index-DBuecqDp.css +1 -0
- package/apps/frontend/dist/index.html +2 -2
- package/bin/symphony.js +5 -1
- package/package.json +1 -1
- package/vendor/symphony-darwin-arm64 +0 -0
- package/vendor/symphony-darwin-x64 +0 -0
- package/vendor/symphony-linux-x64 +0 -0
- package/vendor/symphony-win32-x64.exe +0 -0
- package/apps/frontend/dist/assets/index-ByxrBxkB.css +0 -1
package/README.md
CHANGED
|
@@ -58,9 +58,11 @@ pnpm npm:validate:release
|
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
The GitHub Actions `Export npm package` workflow builds those binaries on Linux, macOS, and Windows,
|
|
61
|
-
assembles the npm tarball, uploads the tarball and binaries as a GitHub workflow artifact, and
|
|
62
|
-
the same files to a GitHub Release
|
|
63
|
-
`publish_npm` is enabled and the repository
|
|
61
|
+
assembles the npm tarball, uploads the tarball and binaries as a GitHub workflow artifact, and publishes
|
|
62
|
+
the same files to a GitHub Release with the npm package URL. A `v*` tag uses that tag for the release;
|
|
63
|
+
manual runs publish a `v<package.json version>` release when `publish_npm` is enabled and the repository
|
|
64
|
+
has an `NPM_TOKEN` secret. The npm package is available at
|
|
65
|
+
https://www.npmjs.com/package/symphony-orchestrator.
|
|
64
66
|
|
|
65
67
|
## Set Up In A Workspace Repository
|
|
66
68
|
|
|
@@ -172,6 +174,7 @@ Configure or disable this in `.symphony/settings.json`:
|
|
|
172
174
|
{
|
|
173
175
|
"states": ["Backlog"],
|
|
174
176
|
"agent": "planner",
|
|
177
|
+
"skills": [],
|
|
175
178
|
"successStatus": "To-Do",
|
|
176
179
|
"retryStatus": "Backlog",
|
|
177
180
|
"goal": {
|
|
@@ -187,6 +190,7 @@ Configure or disable this in `.symphony/settings.json`:
|
|
|
187
190
|
{
|
|
188
191
|
"states": ["Todo", "To-Do", "In progress", "In Progress"],
|
|
189
192
|
"agent": "engineer",
|
|
193
|
+
"skills": [],
|
|
190
194
|
"startStatus": "In progress",
|
|
191
195
|
"successStatus": "In review",
|
|
192
196
|
"retryStatus": "To-Do",
|
|
@@ -203,6 +207,7 @@ Configure or disable this in `.symphony/settings.json`:
|
|
|
203
207
|
{
|
|
204
208
|
"states": ["In review", "In Review"],
|
|
205
209
|
"agent": "reviewer",
|
|
210
|
+
"skills": [],
|
|
206
211
|
"successStatus": "Done",
|
|
207
212
|
"retryStatus": "In progress",
|
|
208
213
|
"goal": {
|
|
@@ -222,6 +227,14 @@ Configure or disable this in `.symphony/settings.json`:
|
|
|
222
227
|
|
|
223
228
|
Set `"enabled": false` to use the single base `.symphony/prompt.md` for every issue.
|
|
224
229
|
|
|
230
|
+
Set `skills` to an ordered list of skill identifiers when a stage requires reusable Codex workflows.
|
|
231
|
+
Runtime Settings store identifiers without `$`, for example `"to-prd"` or `"github:gh-fix-ci"`.
|
|
232
|
+
When a matching Stage Agent runs, Symphony renders those as `$to-prd` style references in the normal
|
|
233
|
+
Agent Prompt after the Stage Agent instructions and before the base Agent Prompt. It does not expand
|
|
234
|
+
skill files and does not include Stage Skill Load in Stage Goal Context. Missing, malformed, or
|
|
235
|
+
duplicate skill identifiers are Readiness Gaps; Symphony checks all configured stages before
|
|
236
|
+
dispatch, resolving Workspace Repository skills before Codex Home skills.
|
|
237
|
+
|
|
225
238
|
Set `goal.enabled` to `true` on a specific stage to enable Stage Goal Handoff for that stage only.
|
|
226
239
|
When enabled, Symphony sends `/goal` with deterministic Stage Goal Context before the normal Agent
|
|
227
240
|
Prompt. Stage Goal Context includes issue identifier, title, description, URL, current project
|