figura-cli 0.20.0 → 0.22.0
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/README.md +17 -0
- package/dist/index.js +255 -162
- package/dist/mcp.js +48 -48
- package/package.json +9 -3
- package/skills/fig/SKILL.md +29 -11
package/README.md
CHANGED
|
@@ -82,6 +82,23 @@ Omitted fields keep their saved value — a name-only `brand set` won't wipe you
|
|
|
82
82
|
tokens. Best of all, let Claude Code build the whole profile from your codebase —
|
|
83
83
|
see the **figura-brand** skill below ("introduce my repo to Figura").
|
|
84
84
|
|
|
85
|
+
## Claude Code integration — one command
|
|
86
|
+
|
|
87
|
+
`figura install` sets up the **full** Claude Code integration in one shot — the
|
|
88
|
+
skills, the update hook, and the status-bar badge:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
figura install # skills → ~/.claude/skills, hook + badge → global
|
|
92
|
+
figura install --project # skills → ./.claude/skills (this repo); hook + badge global
|
|
93
|
+
figura install --uninstall # reverse all three
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
It composes the three commands below, so it's idempotent — re-run it to repair a
|
|
97
|
+
partial setup (e.g. you have the skill but no hook). `figura login --project` runs
|
|
98
|
+
this same path, so a fresh `link` already wires up everything. The individual
|
|
99
|
+
`figura skill install`, `figura hook install`, and `figura statusline install`
|
|
100
|
+
commands still work on their own.
|
|
101
|
+
|
|
85
102
|
## Claude Code skills
|
|
86
103
|
|
|
87
104
|
Install the bundled skills so Claude Code can work with Figura from any project:
|