create-claude-cabinet 0.14.0 → 0.14.2
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/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
// Usage:
|
|
9
9
|
// node scripts/pib-db.mjs init # Create/migrate DB
|
|
10
10
|
// node scripts/pib-db.mjs query "SELECT * FROM ..." # Run a query
|
|
11
|
-
// node scripts/pib-db.mjs create-action "Do the thing" --area dev
|
|
11
|
+
// node scripts/pib-db.mjs create-action "Do the thing" --projectFid prj:abc --area dev
|
|
12
12
|
// node scripts/pib-db.mjs list-actions [--status X] # Open actions (or filtered)
|
|
13
13
|
// node scripts/pib-db.mjs update-action act:abc --status in-progress
|
|
14
14
|
// node scripts/pib-db.mjs complete-action act:abc123
|
|
@@ -356,7 +356,7 @@ switch (command) {
|
|
|
356
356
|
Commands:
|
|
357
357
|
init Create/migrate the database
|
|
358
358
|
query "SQL" Run a SQL query
|
|
359
|
-
create-action "text" [--area X]
|
|
359
|
+
create-action "text" [--projectFid X] [--area X] [--due X] [--notes X] Create an action
|
|
360
360
|
list-actions [--status X] [--project X] List actions (default: open)
|
|
361
361
|
update-action <fid> [--status X] [--text X] [--tags X] [--notes X]
|
|
362
362
|
complete-action <fid> Mark action complete (status=done)
|