@figs-so/cli 0.1.9 → 0.1.10
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/figs.mjs +3 -1
- package/package.json +1 -1
package/figs.mjs
CHANGED
|
@@ -38,7 +38,7 @@ import { homedir } from "node:os"
|
|
|
38
38
|
import { join } from "node:path"
|
|
39
39
|
import { randomUUID } from "node:crypto"
|
|
40
40
|
|
|
41
|
-
const VERSION = "0.1.
|
|
41
|
+
const VERSION = "0.1.10"
|
|
42
42
|
// Going-forward default; override with FIGS_ENDPOINT or .figs/config.json endpoint
|
|
43
43
|
// (e.g. FIGS_ENDPOINT=http://localhost:3000 for local dev).
|
|
44
44
|
const DEFAULT_ENDPOINT = "https://app.figs.so"
|
|
@@ -636,6 +636,8 @@ async function push() {
|
|
|
636
636
|
console.log(
|
|
637
637
|
`figs: ✓ pushed ${agent.name ?? agent.id} — ${runs.length} runs, ${asks.length} asks`,
|
|
638
638
|
)
|
|
639
|
+
// The wow-moment link — relay this to your human so they can see the agent.
|
|
640
|
+
console.log(` view at ${base}/w/${config.workspaceId}`)
|
|
639
641
|
|
|
640
642
|
await pushArtifacts(base, token, config, runs, asks)
|
|
641
643
|
}
|