@puffinstudio/fizzyx 0.5.5 → 0.6.1

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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # fizzyx
2
2
 
3
+ <img src="./src/planner/logo.svg" alt="fizzyx logo" width="120" />
4
+
3
5
  CLI tool for Fizzy board workflow, OSS/S3-compatible storage, and OpenAPI client generation.
4
6
 
5
7
  ## Install
@@ -18,12 +20,12 @@ Manage a Fizzy board from a repository-local `.fizzy.yaml`.
18
20
  fizzyx setup <board-id>
19
21
  fizzyx auth login <token>
20
22
  fizzyx auth status
21
- fizzyx flow doctor
23
+ fizzyx flow mine --fresh
22
24
  ```
23
25
 
24
- `flow doctor` shows account, board, workflow columns, and whether the CLI is ready to operate on the board.
26
+ `flow doctor` can still be run for an explicit health check, but new `fizzyx flow ...` commands auto-repair workflow columns and ids when needed.
25
27
 
26
- ### Create A Card
28
+ ### Create A Card (Manual)
27
29
 
28
30
  Use `--draft` to create a unique project-local draft file. This automatically creates `.fizzyx/` when needed and avoids collisions between multiple agents.
29
31
 
@@ -46,6 +48,7 @@ fizzyx flow add <user> "<title>" --desc <file|->
46
48
  ```sh
47
49
  fizzyx flow mine --fresh
48
50
  fizzyx flow next --fresh
51
+ fizzyx flow next --fresh --start
49
52
  fizzyx flow show <card>
50
53
  fizzyx flow start <card>
51
54
  fizzyx flow complete-steps <card>
@@ -62,8 +65,8 @@ fizzyx flow status [--fresh]
62
65
  fizzyx flow assign <card> <user|me> [user...]
63
66
  fizzyx flow block <card> "<reason>"
64
67
  fizzyx flow repair-markdown <card>
65
- fizzyx flow std <card>
66
- fizzyx flow std-all
68
+ fizzyx flow standardize <card> (alias: std)
69
+ fizzyx flow standardize-all (alias: std-all)
67
70
  fizzyx flow workflow
68
71
  fizzyx flow skill
69
72
  fizzyx flow skill init [--force]
@@ -74,6 +77,48 @@ fizzyx flow skill init [--force]
74
77
  - `flow block` moves the card to Not Now.
75
78
  - `flow workflow`, `flow skill`, and `flow template` prefer project-local overrides under `.agents/skills/fizzyx/`.
76
79
 
80
+ ![Flow command lifecycle](./docs/images/flow-workflow.svg)
81
+
82
+ ## Planner Dashboard
83
+
84
+ Start a local planner dashboard backed directly by the Fizzy API:
85
+
86
+ ```sh
87
+ fizzyx planner start
88
+ fizzyx planner snapshot
89
+ fizzyx planner snapshot --auto-fix
90
+ fizzyx planner health
91
+ fizzyx planner repair-metadata
92
+ fizzyx planner repair-metadata --apply
93
+ fizzyx planner repair-metadata --apply --default-priority p2 --default-type chore
94
+ ```
95
+
96
+ ![Planner dashboard workflow](./docs/images/planner-workflow.svg)
97
+
98
+ `planner snapshot` prints the same JSON used by the web dashboard. Project workflow uses `BACKLOG → READY → IN PROGRESS → REVIEW → DONE`, with `DONE` coming from closed cards and `BLOCKED` from Not Now/postponed cards.
99
+
100
+ `planner repair-metadata` is dry-run by default. It inserts/syncs deterministic frontmatter from existing tags and assignees. Missing priority/type are only filled when explicit defaults are passed.
101
+
102
+ Planner conventions use tags for filtering:
103
+
104
+ ```text
105
+ priority:p0 priority:p1 priority:p2
106
+ type:bug type:feature type:chore type:blocker
107
+ area:frontend area:api phase:integration
108
+ ```
109
+
110
+ Cards can also include frontmatter for richer project details:
111
+
112
+ ```md
113
+ ---
114
+ priority: P1
115
+ type: feature
116
+ owner: ellen
117
+ depends_on: [123]
118
+ api_status: not_connected
119
+ ---
120
+ ```
121
+
77
122
  ## OSS Commands
78
123
 
79
124
  Manage S3-compatible object storage (Alibaba Cloud OSS, AWS S3, MinIO, etc.).
@@ -97,6 +142,8 @@ fizzyx oss setup --env dev
97
142
  - Credentials are stored in OS keychain via `Bun.secrets`, never in config files or shell history
98
143
  - Without `--env`, keys are stored as `default` — all environments fall back to it
99
144
 
145
+ ![OSS command workflow](./docs/images/oss-workflow.svg)
146
+
100
147
  ### Sync
101
148
 
102
149
  Upload local files to the remote bucket:
@@ -239,6 +286,14 @@ const result = await someAction();
239
286
  fizzyx openapi list
240
287
  ```
241
288
 
289
+ ![OpenAPI generation workflow](./docs/images/openapi-workflow.svg)
290
+
291
+ ### Initialize OpenAPI config
292
+
293
+ ```sh
294
+ fizzyx openapi init
295
+ ```
296
+
242
297
  ### Config (`.fizzy.yaml`)
243
298
 
244
299
  ```yaml