@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 +24 -22
- package/dist/cli/index.js +503 -90
- package/dist/cli/index.js.map +1 -1
- package/dist/ui/assets/index-AlD6QW_g.js +333 -0
- package/dist/ui/assets/index-C5MfnA01.css +1 -0
- package/dist/ui/index.html +2 -2
- package/package.json +2 -2
- package/dist/ui/assets/index-CdQQtrFF.js +0 -328
- package/dist/ui/assets/index-ZZBUE9NI.css +0 -1
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
|
-
|
|
25
|
+
pb create "Fix login bug" -t bug -p 1
|
|
24
26
|
|
|
25
27
|
# List all issues
|
|
26
|
-
|
|
28
|
+
pb list
|
|
27
29
|
|
|
28
30
|
# Show ready issues (no open blockers)
|
|
29
|
-
|
|
31
|
+
pb ready
|
|
30
32
|
|
|
31
33
|
# View in the browser
|
|
32
|
-
|
|
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
|
-
| `
|
|
42
|
-
| `
|
|
43
|
-
| `
|
|
44
|
-
| `
|
|
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
|
-
| `
|
|
51
|
-
| `
|
|
52
|
-
| `
|
|
53
|
-
| `
|
|
54
|
-
| `
|
|
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
|
-
| `
|
|
61
|
-
| `
|
|
62
|
-
| `
|
|
63
|
-
| `
|
|
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
|
-
| `
|
|
70
|
-
| `
|
|
71
|
-
| `
|
|
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 (`
|
|
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
|