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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-claude-cabinet",
3
- "version": "0.14.0",
3
+ "version": "0.14.2",
4
4
  "description": "Claude Cabinet — opinionated process scaffolding for Claude Code projects",
5
5
  "bin": {
6
6
  "create-claude-cabinet": "bin/create-claude-cabinet.js"
@@ -28,7 +28,7 @@ fi
28
28
 
29
29
  # Only care about memory directory paths
30
30
  case "$FILE_PATH" in
31
- */.claude/memory/*|*/.claude/projects/*/memory/*)
31
+ *.claude/memory/*|*.claude/projects/*/memory/*)
32
32
  ;;
33
33
  *)
34
34
  echo '{"decision":"allow"}'
@@ -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] Create an action
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)