@dfosco/storyboard 0.6.0-beta.3 → 0.6.0-beta.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/package.json
CHANGED
|
@@ -33,6 +33,39 @@
|
|
|
33
33
|
"resizable": false,
|
|
34
34
|
"defaultWidth": 800,
|
|
35
35
|
"defaultHeight": 450
|
|
36
|
+
},
|
|
37
|
+
"agents": {
|
|
38
|
+
"copilot": {
|
|
39
|
+
"label": "Copilot CLI",
|
|
40
|
+
"default": true,
|
|
41
|
+
"icon": "primer/copilot",
|
|
42
|
+
"startupCommand": "copilot --agent terminal-agent",
|
|
43
|
+
"resumeCommand": "copilot --resume={id} --agent terminal-agent",
|
|
44
|
+
"sessionIdEnv": "COPILOT_AGENT_SESSION_ID",
|
|
45
|
+
"postStartup": "/allow-all on",
|
|
46
|
+
"readinessSignal": "Environment loaded:",
|
|
47
|
+
"resizable": true
|
|
48
|
+
},
|
|
49
|
+
"claude": {
|
|
50
|
+
"label": "Claude Code",
|
|
51
|
+
"icon": "claude",
|
|
52
|
+
"startupCommand": "claude --agent terminal-agent --dangerously-skip-permissions",
|
|
53
|
+
"resumeCommand": "claude --resume {id} --agent terminal-agent --dangerously-skip-permissions",
|
|
54
|
+
"sessionIdEnv": "CLAUDE_SESSION_ID",
|
|
55
|
+
"sessionStateGlob": "~/.claude/projects/*/{id}.jsonl",
|
|
56
|
+
"readinessSignal": "bypass permissions",
|
|
57
|
+
"resizable": true
|
|
58
|
+
},
|
|
59
|
+
"codex": {
|
|
60
|
+
"label": "Codex CLI",
|
|
61
|
+
"icon": "codex",
|
|
62
|
+
"startupCommand": "codex --ask-for-approval never",
|
|
63
|
+
"resumeCommand": "codex resume {id}",
|
|
64
|
+
"sessionIdEnv": "CODEX_SESSION_ID",
|
|
65
|
+
"sessionStateGlob": "~/.codex/sessions/**/rollout-*-{id}.jsonl",
|
|
66
|
+
"configFiles": [".codex/config.toml"],
|
|
67
|
+
"resizable": true
|
|
68
|
+
}
|
|
36
69
|
}
|
|
37
70
|
},
|
|
38
71
|
"customerMode": {
|