symphony-box 1.0.0 → 1.0.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 +2 -2
- package/cli.js +0 -1
- package/init.js +1 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# symphony-box
|
|
2
2
|
|
|
3
|
-
CLI to set up [Symphony](https://github.com/
|
|
3
|
+
CLI to set up [Symphony](https://github.com/openai/symphony) (OpenAI Codex orchestrator) on an [Upstash Box](https://upstash.com/docs/box/overall/getstarted) for a GitHub repo connected to a Linear project.
|
|
4
4
|
|
|
5
5
|
## What it does
|
|
6
6
|
|
package/cli.js
CHANGED
|
@@ -86,7 +86,6 @@ async function main() {
|
|
|
86
86
|
intro(chalk.cyan("Symphony Box Setup"));
|
|
87
87
|
|
|
88
88
|
const upstashBoxApiKey = await promptText("Upstash Box API key", "UPSTASH_BOX_API_KEY", opts.upstashBoxApiKey);
|
|
89
|
-
|
|
90
89
|
const openaiApiKey = await promptText("OpenAI API key", "OPENAI_API_KEY", opts.openaiApiKey, "sk-...");
|
|
91
90
|
const linearApiKey = await promptText("Linear API key", "LINEAR_API_KEY", opts.linearApiKey, "lin_api_...");
|
|
92
91
|
const githubToken = await promptText("GitHub token (requires read/write access for contents and pull requests)", "GITHUB_TOKEN", opts.githubToken, "ghp_...");
|
package/init.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Box } from "@upstash/box";
|
|
2
2
|
import { buildWorkflow } from "./workflow.js";
|
|
3
3
|
|
|
4
|
-
const SYMPHONY_URL = "https://github.com/
|
|
4
|
+
const SYMPHONY_URL = "https://github.com/openai/symphony.git";
|
|
5
5
|
const MISE = "/home/boxuser/.local/bin/mise";
|
|
6
6
|
|
|
7
7
|
async function linearQuery(linearApiKey, query, variables) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "symphony-box",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "CLI to set up Symphony (OpenAI Codex orchestrator) on an Upstash Box for a GitHub repo",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"cli",
|
|
21
21
|
"linear"
|
|
22
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/alitariksahin/symphony-box.git"
|
|
26
|
+
},
|
|
23
27
|
"license": "MIT",
|
|
24
28
|
"engines": {
|
|
25
29
|
"node": ">=18"
|