@figs-so/cli 0.1.10 → 0.1.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/figs.mjs +6 -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.11"
|
|
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"
|
|
@@ -496,6 +496,8 @@ This repo publishes to **Figs** (your manager's read-only window into what you d
|
|
|
496
496
|
- **Full guide + schema → ${endpoint}/llms.txt** — read this first.
|
|
497
497
|
- **Your contract → ./CONTRACT.md** — what you publish / hold back (you + your user author it).
|
|
498
498
|
- **Identity → config.json** (committed) · **charter → agent.json** (you write).
|
|
499
|
+
- **Stay visible:** keep the \`figs:begin\`…\`figs:end\` block in the instruction file you load every
|
|
500
|
+
session (CLAUDE.md/AGENTS.md/…). It's what brought you back here — don't remove it. (Phase-1 setup; see /llms.txt.)
|
|
499
501
|
|
|
500
502
|
**Where are you?** You may be reading this at any time — don't assume you're starting fresh. Run
|
|
501
503
|
\`figs status\` and check \`.figs/\` before acting:
|
|
@@ -567,6 +569,9 @@ async function init() {
|
|
|
567
569
|
console.log(
|
|
568
570
|
` Phase 1: author .figs/agent.json (your charter), then \`figs doctor\` && \`figs push\` to appear.`,
|
|
569
571
|
)
|
|
572
|
+
console.log(
|
|
573
|
+
` Then anchor Figs in the instruction file you load every session (CLAUDE.md/AGENTS.md/…) — see /llms.txt; without it, future sessions forget Figs.`,
|
|
574
|
+
)
|
|
570
575
|
console.log(` Full guide: ${endpoint}/llms.txt`)
|
|
571
576
|
}
|
|
572
577
|
|