figura-cli 0.14.0 → 0.16.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 +8 -1
- package/dist/index.js +139 -111
- package/dist/mcp.js +12 -12
- package/package.json +1 -1
- package/skills/fig/SKILL.md +138 -23
package/README.md
CHANGED
|
@@ -171,10 +171,17 @@ badge), it *wraps* it, so both show: `[CAVEMAN] … · ⬡ figura 0.9.0`. `figur
|
|
|
171
171
|
figura whoami # show the authenticated identity
|
|
172
172
|
figura teams # list accessible teams
|
|
173
173
|
|
|
174
|
-
# Create a fig from a file or stdin
|
|
174
|
+
# Create a fig from a file or stdin — it lands as a workspace DRAFT (yours to
|
|
175
|
+
# iterate on; not in the team library, silent for teammates)
|
|
175
176
|
figura fig create --file mock.html --title "Feed redesign" --area feed --tags ui,feed
|
|
176
177
|
cat mock.html | figura fig create --area profile --orientation landscape
|
|
177
178
|
|
|
179
|
+
# Commit the session's final pick to the team library (notifies the team,
|
|
180
|
+
# digest-batched) — explorations stay drafts. Or commit-on-create with --commit.
|
|
181
|
+
figura fig commit <id>
|
|
182
|
+
figura fig create --file final.html --commit
|
|
183
|
+
figura fig uncommit <id> # back to a workspace draft
|
|
184
|
+
|
|
178
185
|
# List + inspect
|
|
179
186
|
figura fig list --area feed --tag ui --limit 20
|
|
180
187
|
figura fig list --json
|