@markmdev/pebble 0.1.0 → 0.1.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/README.md CHANGED
@@ -13,23 +13,25 @@ A lightweight, JSONL-based issue tracker with CLI and React UI.
13
13
  ## Installation
14
14
 
15
15
  ```bash
16
- npm install -g pebble
16
+ npm install -g @markmdev/pebble
17
17
  ```
18
18
 
19
+ After installation, the `pb` command is available globally.
20
+
19
21
  ## Quick Start
20
22
 
21
23
  ```bash
22
24
  # Create your first issue (auto-initializes .pebble/ directory)
23
- pebble create "Fix login bug" -t bug -p 1
25
+ pb create "Fix login bug" -t bug -p 1
24
26
 
25
27
  # List all issues
26
- pebble list
28
+ pb list
27
29
 
28
30
  # Show ready issues (no open blockers)
29
- pebble ready
31
+ pb ready
30
32
 
31
33
  # View in the browser
32
- pebble ui
34
+ pb ui
33
35
  ```
34
36
 
35
37
  ## Commands
@@ -38,37 +40,37 @@ pebble ui
38
40
 
39
41
  | Command | Description |
40
42
  |---------|-------------|
41
- | `pebble ready` | Issues with no open blockers |
42
- | `pebble blocked` | Issues with open blockers |
43
- | `pebble list [options]` | List issues with filters |
44
- | `pebble show <id>` | Full issue details |
43
+ | `pb ready` | Issues with no open blockers |
44
+ | `pb blocked` | Issues with open blockers |
45
+ | `pb list [options]` | List issues with filters |
46
+ | `pb show <id>` | Full issue details |
45
47
 
46
48
  ### Mutations
47
49
 
48
50
  | Command | Description |
49
51
  |---------|-------------|
50
- | `pebble create <title> [options]` | Create an issue |
51
- | `pebble update <ids...> [options]` | Update issues (supports batch) |
52
- | `pebble claim <ids...>` | Set status to in_progress (shorthand) |
53
- | `pebble close <ids...> [--reason] [--comment]` | Close issues (supports batch) |
54
- | `pebble reopen <id> [--reason]` | Reopen an issue |
52
+ | `pb create <title> [options]` | Create an issue |
53
+ | `pb update <ids...> [options]` | Update issues (supports batch) |
54
+ | `pb claim <ids...>` | Set status to in_progress (shorthand) |
55
+ | `pb close <ids...> [--reason] [--comment]` | Close issues (supports batch) |
56
+ | `pb reopen <id> [--reason]` | Reopen an issue |
55
57
 
56
58
  ### Dependencies
57
59
 
58
60
  | Command | Description |
59
61
  |---------|-------------|
60
- | `pebble dep add <id> <blocker>` | Add blocking dependency |
61
- | `pebble dep remove <id> <blocker>` | Remove dependency |
62
- | `pebble dep list <id>` | Show dependencies |
63
- | `pebble dep tree <id>` | Show dependency tree |
62
+ | `pb dep add <id> <blocker>` | Add blocking dependency |
63
+ | `pb dep remove <id> <blocker>` | Remove dependency |
64
+ | `pb dep list <id>` | Show dependencies |
65
+ | `pb dep tree <id>` | Show dependency tree |
64
66
 
65
67
  ### Comments & Visualization
66
68
 
67
69
  | Command | Description |
68
70
  |---------|-------------|
69
- | `pebble comments add <id> <text>` | Add a comment |
70
- | `pebble graph [--root id]` | Show dependency graph |
71
- | `pebble ui [--port 3333]` | Serve React UI |
71
+ | `pb comments add <id> <text>` | Add a comment |
72
+ | `pb graph [--root id]` | Show dependency graph |
73
+ | `pb ui [--port 3333]` | Serve React UI |
72
74
 
73
75
  ## Options
74
76
 
@@ -129,7 +131,7 @@ All data is stored in `.pebble/issues.jsonl` as append-only events:
129
131
 
130
132
  ## UI Features
131
133
 
132
- The React UI (`pebble ui`) provides full CRUD capabilities with real-time updates:
134
+ The React UI (`pb ui`) provides full CRUD capabilities with real-time updates:
133
135
 
134
136
  - **Issue List**: Hierarchical view (epics with children), sorting, filtering, search
135
137
  - **Create Issues**: "New Issue" button opens creation dialog