claude-gh-ticket-gen 1.0.3 → 1.0.4
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 +25 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,20 @@ Claude Ticket Generator is a standalone npm package that uses Claude AI to intel
|
|
|
17
17
|
- **Filtering**: Filter by phase, priority, and optional items
|
|
18
18
|
- **Interactive Setup**: Easy configuration wizard
|
|
19
19
|
|
|
20
|
+
## Screenshots
|
|
21
|
+
|
|
22
|
+
**CLI Preview (Dry Run)**
|
|
23
|
+
|
|
24
|
+

|
|
25
|
+
|
|
26
|
+
**Generated GitHub Issues**
|
|
27
|
+
|
|
28
|
+

|
|
29
|
+
|
|
30
|
+
**Individual Issue Detail**
|
|
31
|
+
|
|
32
|
+

|
|
33
|
+
|
|
20
34
|
## Prerequisites
|
|
21
35
|
|
|
22
36
|
- Node.js >= 18.0.0
|
|
@@ -360,6 +374,17 @@ claude-ticket-gen generate --filter-phase "Phase 1: Foundation"
|
|
|
360
374
|
claude-ticket-gen generate --dry-run --include-optional
|
|
361
375
|
```
|
|
362
376
|
|
|
377
|
+
**Example: Creating Issues with Phase Filtering**
|
|
378
|
+
|
|
379
|
+

|
|
380
|
+
|
|
381
|
+
The tool will:
|
|
382
|
+
1. Parse only the specified phase from your document
|
|
383
|
+
2. Show a preview of tasks to be created
|
|
384
|
+
3. Ask for confirmation before creating issues
|
|
385
|
+
4. Automatically create labels if they don't exist
|
|
386
|
+
5. Create each issue with proper formatting and labels
|
|
387
|
+
|
|
363
388
|
## Development
|
|
364
389
|
|
|
365
390
|
```bash
|