@an-sdk/cli 0.0.10 → 0.0.11
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 +3 -3
- package/package.json +1 -1
- package/src/deploy.ts +3 -3
package/dist/index.js
CHANGED
|
@@ -275,7 +275,7 @@ async function deploy() {
|
|
|
275
275
|
p2.log.info(`
|
|
276
276
|
Deployed before failure:`);
|
|
277
277
|
for (const a of deployed) {
|
|
278
|
-
p2.log.info(` ${a.slug} \u2192 ${AN_BASE}/
|
|
278
|
+
p2.log.info(` ${a.slug} \u2192 ${AN_BASE}/agents`);
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
281
|
process.exit(1);
|
|
@@ -288,13 +288,13 @@ Deployed before failure:`);
|
|
|
288
288
|
p2.log.success(`Deployed ${deployed.length} agent${deployed.length > 1 ? "s" : ""}`);
|
|
289
289
|
console.log();
|
|
290
290
|
for (const agent of deployed) {
|
|
291
|
-
console.log(` ${agent.slug} \u2192 ${AN_BASE}/
|
|
291
|
+
console.log(` ${agent.slug} \u2192 ${AN_BASE}/agents`);
|
|
292
292
|
}
|
|
293
293
|
console.log();
|
|
294
294
|
p2.log.info("Next steps:");
|
|
295
295
|
console.log(" \xB7 Open the link above to test your agent");
|
|
296
296
|
console.log(" \xB7 Run `an deploy` again after changes");
|
|
297
|
-
console.log(` \xB7 View all deployments: ${AN_BASE}/
|
|
297
|
+
console.log(` \xB7 View all deployments: ${AN_BASE}/agents`);
|
|
298
298
|
p2.outro("Done");
|
|
299
299
|
}
|
|
300
300
|
|
package/package.json
CHANGED
package/src/deploy.ts
CHANGED
|
@@ -67,7 +67,7 @@ export async function deploy() {
|
|
|
67
67
|
if (deployed.length > 0) {
|
|
68
68
|
p.log.info(`\nDeployed before failure:`)
|
|
69
69
|
for (const a of deployed) {
|
|
70
|
-
p.log.info(` ${a.slug} → ${AN_BASE}/
|
|
70
|
+
p.log.info(` ${a.slug} → ${AN_BASE}/agents`)
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
process.exit(1)
|
|
@@ -83,13 +83,13 @@ export async function deploy() {
|
|
|
83
83
|
p.log.success(`Deployed ${deployed.length} agent${deployed.length > 1 ? "s" : ""}`)
|
|
84
84
|
console.log()
|
|
85
85
|
for (const agent of deployed) {
|
|
86
|
-
console.log(` ${agent.slug} → ${AN_BASE}/
|
|
86
|
+
console.log(` ${agent.slug} → ${AN_BASE}/agents`)
|
|
87
87
|
}
|
|
88
88
|
console.log()
|
|
89
89
|
p.log.info("Next steps:")
|
|
90
90
|
console.log(" · Open the link above to test your agent")
|
|
91
91
|
console.log(" · Run `an deploy` again after changes")
|
|
92
|
-
console.log(` · View all deployments: ${AN_BASE}/
|
|
92
|
+
console.log(` · View all deployments: ${AN_BASE}/agents`)
|
|
93
93
|
|
|
94
94
|
p.outro("Done")
|
|
95
95
|
}
|