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.
Files changed (2) hide show
  1. package/README.md +25 -0
  2. 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
+ ![Dry run preview showing parsed tasks](screenshots/dry-run/dry-run-01.png)
25
+
26
+ **Generated GitHub Issues**
27
+
28
+ ![GitHub issues list with labels](screenshots/repo-screenshots/issue-list.png)
29
+
30
+ **Individual Issue Detail**
31
+
32
+ ![Individual issue with subtasks](screenshots/repo-screenshots/individual-issue.png)
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
+ ![Production run with confirmation](screenshots/prod-run/prod-run-02.png)
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-gh-ticket-gen",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "AI-powered CLI tool to parse roadmap documents and generate GitHub issues",
5
5
  "main": "dist/cli/index.js",
6
6
  "bin": {