figura-cli 0.10.1 → 0.11.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 +3 -3
- package/dist/index.js +154 -130
- package/dist/mcp.js +27 -27
- package/package.json +1 -1
- package/skills/fig/SKILL.md +74 -6
- package/skills/figura-brand/SKILL.md +10 -4
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# figura-cli
|
|
2
2
|
|
|
3
3
|
Command-line client for the **Figura** visualization SaaS. Talks to the Figura
|
|
4
|
-
`/
|
|
4
|
+
`/v1` HTTP API (base `https://api.figura.so`) with a Bearer `fig_` token.
|
|
5
5
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
@@ -49,7 +49,7 @@ Resolution precedence:
|
|
|
49
49
|
| Value | Order |
|
|
50
50
|
| ------ | ------------------------------------------------------ |
|
|
51
51
|
| token | `FIGURA_TOKEN` env → `--token` flag → project `.figura/config.json` → global `~/.figura/config.json` |
|
|
52
|
-
| apiUrl | `FIGURA_API_URL` env → `--api-url` flag → project config → global config → default `https://figura.so` |
|
|
52
|
+
| apiUrl | `FIGURA_API_URL` env → `--api-url` flag → project config → global config → default `https://api.figura.so` |
|
|
53
53
|
|
|
54
54
|
### Multiple teams — one per project
|
|
55
55
|
|
|
@@ -205,6 +205,6 @@ Every command accepts `--help`. Add `--json` where noted to get machine-readable
|
|
|
205
205
|
```bash
|
|
206
206
|
bun install
|
|
207
207
|
bun run dev -- --help # run from source with bun
|
|
208
|
-
bun run build # bundle + minify src -> dist/index.js
|
|
208
|
+
bun run build # bundle skills + minify src -> dist/index.js AND dist/mcp.js
|
|
209
209
|
node dist/index.js --help
|
|
210
210
|
```
|