@agentic-surfaces/cli 0.1.27 → 0.1.28
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/dist/index.js +4 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -106,7 +106,7 @@ function launchUi(opts) {
|
|
|
106
106
|
onRun: opts.onRun,
|
|
107
107
|
cache: opts.cache,
|
|
108
108
|
pause: opts.pause,
|
|
109
|
-
config: { dryRun: opts.dryRun, agent: opts.agentDefaults, version: VERSION },
|
|
109
|
+
config: { dryRun: opts.dryRun, agent: opts.agentDefaults, version: VERSION, atlassianSite: opts.atlassianSite },
|
|
110
110
|
});
|
|
111
111
|
const url = `http://127.0.0.1:${p}`;
|
|
112
112
|
openBrowser(url);
|
|
@@ -179,6 +179,7 @@ export async function run(argv) {
|
|
|
179
179
|
pause,
|
|
180
180
|
dryRun: pc?.dryRun,
|
|
181
181
|
agentDefaults: { model: pc?.agent?.model, effort: pc?.agent?.effort },
|
|
182
|
+
atlassianSite: pc?.atlassianSite,
|
|
182
183
|
});
|
|
183
184
|
console.log(`\n▶ agentic-surfaces ${VERSION} — ${url}`);
|
|
184
185
|
console.log(` project: ${dir} · ${allWorkflows.size} workflow(s) · Ctrl-C to exit`);
|
|
@@ -222,6 +223,7 @@ export async function run(argv) {
|
|
|
222
223
|
cache: services.cache,
|
|
223
224
|
dryRun: pc?.dryRun,
|
|
224
225
|
agentDefaults: { model: pc?.agent?.model, effort: pc?.agent?.effort },
|
|
226
|
+
atlassianSite: pc?.atlassianSite,
|
|
225
227
|
}) : undefined;
|
|
226
228
|
// A run error must NOT tear down the --ui server: the failure is already
|
|
227
229
|
// streamed to the dashboard (the failed node + run), so keep serving so it
|
|
@@ -275,6 +277,7 @@ export async function run(argv) {
|
|
|
275
277
|
pause,
|
|
276
278
|
dryRun: pc?.dryRun,
|
|
277
279
|
agentDefaults: { model: pc?.agent?.model, effort: pc?.agent?.effort },
|
|
280
|
+
atlassianSite: pc?.atlassianSite,
|
|
278
281
|
});
|
|
279
282
|
console.log(`▶ agentic-surfaces ${VERSION} — ${url}`);
|
|
280
283
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentic-surfaces/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.28",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"README.md"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@agentic-surfaces/core": "0.1.
|
|
26
|
-
"@agentic-surfaces/agent": "0.1.
|
|
27
|
-
"@agentic-surfaces/server": "0.1.
|
|
25
|
+
"@agentic-surfaces/core": "0.1.28",
|
|
26
|
+
"@agentic-surfaces/agent": "0.1.28",
|
|
27
|
+
"@agentic-surfaces/server": "0.1.28"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|