trace-to-skill 0.1.108 → 0.1.110

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.108
562
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
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.108
611
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
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.108
629
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
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.108
646
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
647
647
  with:
648
648
  mode: issue-heat
649
649
  issue-heat-repo: openai/codex
@@ -661,7 +661,7 @@ Duplicate-audit action usage for checking Codex Action duplicate suggestions:
661
661
 
662
662
  ```yaml
663
663
  - id: codex-duplicate-audit
664
- uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
664
+ uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
665
665
  with:
666
666
  mode: duplicate-audit
667
667
  duplicate-audit-repo: openai/codex
@@ -703,19 +703,25 @@ Action outputs:
703
703
  | `issue-map-report` | Markdown issue-map report path |
704
704
  | `issue-map-json` | JSON issue-map report path |
705
705
  | `issue-heat-issues` | Number of GitHub issues fetched by issue-heat mode |
706
+ | `issue-heat-considered` | Number of recent issues considered after filters |
707
+ | `issue-heat-matched` | Number of recent issues matched to known failure classes |
706
708
  | `issue-heat-top-kind` | Hottest recent issue failure class |
707
709
  | `issue-heat-report` | Markdown issue-heat report path |
708
710
  | `issue-heat-json` | JSON issue-heat report path |
709
711
  | `duplicate-audit-candidates` | Number of duplicate candidates checked |
710
712
  | `duplicate-audit-likely` | Number of likely duplicate candidates |
711
713
  | `duplicate-audit-related` | Number of related but not exact duplicate candidates |
714
+ | `duplicate-audit-needs-review` | Number of duplicate candidates needing human review |
715
+ | `duplicate-audit-weak` | Number of weak duplicate matches |
712
716
  | `duplicate-audit-top-verdict` | Highest-confidence duplicate audit verdict |
713
717
  | `duplicate-audit-report` | Markdown duplicate-audit report path |
714
718
  | `duplicate-audit-json` | JSON duplicate-audit report path |
715
719
 
716
720
  By default, generated reports are also appended to the GitHub Actions Job Summary. Set `job-summary: "false"` to disable that UI output.
717
721
 
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.
722
+ Tagged Action releases build and run the CLI from `$GITHUB_ACTION_PATH`, so a workflow pinned to a release tag such as `@v0.1.110` executes that release's checked-out source instead of pulling the default branch at runtime.
723
+
724
+ Action inputs are passed into bash steps through environment variables before the CLI receives them. The regression fixture at `fixtures/action-malicious-inputs.json` keeps quote, newline, command-substitution, and shell-separator examples out of `run:` scripts so workflow inputs are treated as data.
719
725
 
720
726
  ## Codex Skill
721
727
 
@@ -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.108 |
6
+ | Package | trace-to-skill@0.1.110 |
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.108
30
+ - One-command package: npx trace-to-skill@0.1.110
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.108
64
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
65
65
  with:
66
66
  mode: all
67
67
  doctor-threshold: "85"
@@ -74,7 +74,7 @@ Recommended CI surface:
74
74
  Duplicate-audit Action mode can also run from CI when you want a stable job summary for Codex Action duplicate suggestions:
75
75
 
76
76
  ```yaml
77
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
77
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
78
78
  with:
79
79
  mode: duplicate-audit
80
80
  duplicate-audit-repo: openai/codex
@@ -83,6 +83,8 @@ Duplicate-audit Action mode can also run from CI when you want a stable job summ
83
83
  github-token: ${{ github.token }}
84
84
  ```
85
85
 
86
+ The published Action keeps user-controlled inputs out of shell scripts by passing them through step environment variables before invoking the CLI. `fixtures/action-malicious-inputs.json` covers quote, newline, command-substitution, and shell-separator cases so that future Action edits keep those values as data.
87
+
86
88
  ## 3. GitHub Issue Demand Mining
87
89
 
88
90
  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.
@@ -0,0 +1,41 @@
1
+ {
2
+ "purpose": "Regression fixture for composite Action inputs that must be treated as data, not shell syntax.",
3
+ "cases": [
4
+ {
5
+ "name": "semicolon command separator in traces path",
6
+ "input": "traces",
7
+ "env": "INPUT_TRACES",
8
+ "value": "runs; echo PWNED"
9
+ },
10
+ {
11
+ "name": "command substitution in doctor path",
12
+ "input": "doctor-path",
13
+ "env": "INPUT_DOCTOR_PATH",
14
+ "value": "$(touch /tmp/trace-to-skill-pwned)"
15
+ },
16
+ {
17
+ "name": "newline injection in issue-map repository",
18
+ "input": "issue-map-repo",
19
+ "env": "INPUT_ISSUE_MAP_REPO",
20
+ "value": "openai/codex\nmalicious=true"
21
+ },
22
+ {
23
+ "name": "double quote in duplicate candidates",
24
+ "input": "duplicate-audit-candidates",
25
+ "env": "INPUT_DUPLICATE_AUDIT_CANDIDATES",
26
+ "value": "25391,\"25488\""
27
+ },
28
+ {
29
+ "name": "single quote in comment repository",
30
+ "input": "issue-heat-comment-repository",
31
+ "env": "INPUT_ISSUE_HEAT_COMMENT_REPOSITORY",
32
+ "value": "owner/repo' --token leaked"
33
+ },
34
+ {
35
+ "name": "environment file redirection text in token",
36
+ "input": "github-token",
37
+ "env": "INPUT_GITHUB_TOKEN",
38
+ "value": "ghs_token >> $GITHUB_ENV"
39
+ }
40
+ ]
41
+ }
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.108
149
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
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.108
162
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
163
163
  with:
164
164
  mode: issue-map
165
165
  issue-map-repo: openai/codex
@@ -174,7 +174,7 @@ gh issue list --repo openai/codex --state all --limit 100 --json number,title,bo
174
174
  Duplicate audit Action mode:
175
175
 
176
176
  ```yaml
177
- - uses: grnbtqdbyx-create/trace-to-skill@v0.1.108
177
+ - uses: grnbtqdbyx-create/trace-to-skill@v0.1.110
178
178
  with:
179
179
  mode: duplicate-audit
180
180
  duplicate-audit-repo: openai/codex
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trace-to-skill",
3
- "version": "0.1.108",
3
+ "version": "0.1.110",
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",