trace-to-skill 0.1.107 → 0.1.108

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
@@ -559,7 +559,7 @@ jobs:
559
559
  issues: write
560
560
  steps:
561
561
  - uses: actions/checkout@v5
562
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
562
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
563
563
  with:
564
564
  mode: all
565
565
  doctor-threshold: "85"
@@ -608,7 +608,7 @@ Composite action usage:
608
608
 
609
609
  ```yaml
610
610
  - id: trace-to-skill
611
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
611
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
612
612
  with:
613
613
  mode: all
614
614
  doctor-threshold: "85"
@@ -626,7 +626,7 @@ Issue-map action usage for direct GitHub issue demand mining:
626
626
 
627
627
  ```yaml
628
628
  - id: codex-issue-map
629
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
629
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
630
630
  with:
631
631
  mode: issue-map
632
632
  issue-map-repo: openai/codex
@@ -643,7 +643,7 @@ Issue-heat action usage for recency-weighted GitHub issue movement:
643
643
 
644
644
  ```yaml
645
645
  - id: codex-issue-heat
646
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
646
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
647
647
  with:
648
648
  mode: issue-heat
649
649
  issue-heat-repo: openai/codex
@@ -657,6 +657,21 @@ Issue-heat action usage for recency-weighted GitHub issue movement:
657
657
  - run: echo "Hottest recent Codex issue cluster is ${{ steps.codex-issue-heat.outputs.issue-heat-top-kind }}"
658
658
  ```
659
659
 
660
+ Duplicate-audit action usage for checking Codex Action duplicate suggestions:
661
+
662
+ ```yaml
663
+ - id: codex-duplicate-audit
664
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
665
+ with:
666
+ mode: duplicate-audit
667
+ duplicate-audit-repo: openai/codex
668
+ duplicate-audit-issue: "25507"
669
+ duplicate-audit-candidates: "25391,25488"
670
+ job-summary: "true"
671
+ github-token: ${{ github.token }}
672
+ - run: echo "Top duplicate verdict is ${{ steps.codex-duplicate-audit.outputs.duplicate-audit-top-verdict }}"
673
+ ```
674
+
660
675
  Action outputs:
661
676
 
662
677
  | Output | Description |
@@ -687,10 +702,20 @@ Action outputs:
687
702
  | `issue-map-top-kind` | Highest-priority issue-map failure class |
688
703
  | `issue-map-report` | Markdown issue-map report path |
689
704
  | `issue-map-json` | JSON issue-map report path |
705
+ | `issue-heat-issues` | Number of GitHub issues fetched by issue-heat mode |
706
+ | `issue-heat-top-kind` | Hottest recent issue failure class |
707
+ | `issue-heat-report` | Markdown issue-heat report path |
708
+ | `issue-heat-json` | JSON issue-heat report path |
709
+ | `duplicate-audit-candidates` | Number of duplicate candidates checked |
710
+ | `duplicate-audit-likely` | Number of likely duplicate candidates |
711
+ | `duplicate-audit-related` | Number of related but not exact duplicate candidates |
712
+ | `duplicate-audit-top-verdict` | Highest-confidence duplicate audit verdict |
713
+ | `duplicate-audit-report` | Markdown duplicate-audit report path |
714
+ | `duplicate-audit-json` | JSON duplicate-audit report path |
690
715
 
691
716
  By default, generated reports are also appended to the GitHub Actions Job Summary. Set `job-summary: "false"` to disable that UI output.
692
717
 
693
- Tagged Action releases build and run the CLI from `$GITHUB_ACTION_PATH`, so a workflow pinned to a release tag such as `@v0.1.106` executes that release's checked-out source instead of pulling the default branch at runtime.
718
+ Tagged Action releases build and run the CLI from `$GITHUB_ACTION_PATH`, so a workflow pinned to a release tag such as `@v0.1.108` executes that release's checked-out source instead of pulling the default branch at runtime.
694
719
 
695
720
  ## Codex Skill
696
721
 
@@ -3,7 +3,7 @@
3
3
  | Field | Value |
4
4
  | --- | --- |
5
5
  | Repository | https://github.com/grnbtqdbyx-create/trace-to-skill |
6
- | Package | trace-to-skill@0.1.107 |
6
+ | Package | trace-to-skill@0.1.108 |
7
7
  | License | Apache-2.0 |
8
8
  | Codex readiness | ready (100/100) |
9
9
  | Benchmark | pass, 46 cases |
@@ -27,7 +27,7 @@ API credits would power optional maintainer workflows on top of the local determ
27
27
  ## Evidence
28
28
 
29
29
  - Public repository: https://github.com/grnbtqdbyx-create/trace-to-skill
30
- - One-command package: npx trace-to-skill@0.1.107
30
+ - One-command package: npx trace-to-skill@0.1.108
31
31
  - Open-source license: Apache-2.0
32
32
  - Codex readiness doctor: ready, 100/100, 0 failed checks.
33
33
  - Public fixture benchmark: pass, 46 cases.
package/docs/USE_CASES.md CHANGED
@@ -61,7 +61,7 @@ What it proves:
61
61
  Recommended CI surface:
62
62
 
63
63
  ```yaml
64
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
64
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
65
65
  with:
66
66
  mode: all
67
67
  doctor-threshold: "85"
@@ -71,6 +71,18 @@ Recommended CI surface:
71
71
  github-token: ${{ github.token }}
72
72
  ```
73
73
 
74
+ Duplicate-audit Action mode can also run from CI when you want a stable job summary for Codex Action duplicate suggestions:
75
+
76
+ ```yaml
77
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
78
+ with:
79
+ mode: duplicate-audit
80
+ duplicate-audit-repo: openai/codex
81
+ duplicate-audit-issue: "25507"
82
+ duplicate-audit-candidates: "25391,25488"
83
+ github-token: ${{ github.token }}
84
+ ```
85
+
74
86
  ## 3. GitHub Issue Demand Mining
75
87
 
76
88
  Use this when you want to see what Codex users are actually complaining about on GitHub before choosing the next fixture, report template, or diagnostic helper.
package/llms.txt CHANGED
@@ -146,7 +146,7 @@ gh issue list --repo openai/codex --state all --limit 100 --json number,title,bo
146
146
  ## GitHub Action
147
147
 
148
148
  ```yaml
149
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
149
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
150
150
  with:
151
151
  mode: all
152
152
  doctor-threshold: "85"
@@ -159,7 +159,7 @@ gh issue list --repo openai/codex --state all --limit 100 --json number,title,bo
159
159
  ## Weekly Codex Issue Radar
160
160
 
161
161
  ```yaml
162
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.106
162
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
163
163
  with:
164
164
  mode: issue-map
165
165
  issue-map-repo: openai/codex
@@ -171,6 +171,18 @@ gh issue list --repo openai/codex --state all --limit 100 --json number,title,bo
171
171
  github-token: ${{ github.token }}
172
172
  ```
173
173
 
174
+ Duplicate audit Action mode:
175
+
176
+ ```yaml
177
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
178
+ with:
179
+ mode: duplicate-audit
180
+ duplicate-audit-repo: openai/codex
181
+ duplicate-audit-issue: "25507"
182
+ duplicate-audit-candidates: "25391,25488"
183
+ github-token: ${{ github.token }}
184
+ ```
185
+
174
186
  ## Machine-readable schemas
175
187
 
176
188
  - Analysis JSON schema: https://github.com/grnbtqdbyx-create/trace-to-skill/blob/main/schemas/analysis-result.schema.json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trace-to-skill",
3
- "version": "0.1.107",
3
+ "version": "0.1.108",
4
4
  "description": "Turn failed AI coding-agent runs into reusable AGENTS.md rules, SKILL.md files, and eval evidence.",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",