trace-to-skill 0.1.84 → 0.1.85
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 +17 -4
- package/dist/src/cli.js +13 -0
- package/dist/src/cli.js.map +1 -1
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/issueMap.d.ts +48 -0
- package/dist/src/issueMap.js +311 -0
- package/dist/src/issueMap.js.map +1 -0
- package/dist/src/ossBrief.js +3 -2
- package/dist/src/ossBrief.js.map +1 -1
- package/docs/CODEX_GITHUB_ISSUE_PAIN_MAP.md +115 -0
- package/docs/DISCOVERY.md +3 -0
- package/docs/OPENAI_OSS_BRIEF.md +2 -2
- package/docs/USE_CASES.md +53 -36
- package/fixtures/github-codex-issues-export.json +71 -0
- package/llms.txt +2 -1
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "trace-to-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.85",
|
|
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",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"docs/ADOPTION_GUIDE.md",
|
|
22
22
|
"docs/AGENTS_LINT.md",
|
|
23
23
|
"docs/BENCHMARK.md",
|
|
24
|
+
"docs/CODEX_GITHUB_ISSUE_PAIN_MAP.md",
|
|
24
25
|
"docs/CODEX_ISSUE_MAP.md",
|
|
25
26
|
"docs/DEMO.md",
|
|
26
27
|
"docs/DISCOVERY.md",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"build": "tsc -p tsconfig.json",
|
|
42
43
|
"clean": "rm -rf dist coverage",
|
|
43
44
|
"test": "npm run build && node --test dist/tests/*.test.js",
|
|
44
|
-
"check": "npm run test && node dist/src/cli.js doctor . --format json > /tmp/trace-to-skill-doctor.json && node dist/src/cli.js lint-agents . --format json > /tmp/trace-to-skill-agents-lint.json && node dist/src/cli.js analyze fixtures --format json > /tmp/trace-to-skill-smoke.json && node dist/src/cli.js usage-evidence fixtures --format json > /tmp/trace-to-skill-usage-evidence.json && node dist/src/cli.js process-audit fixtures/safe-run.md --format json > /tmp/trace-to-skill-process-audit.json && node dist/src/cli.js checkpoint . --output /tmp/trace-to-skill-checkpoint --format json > /tmp/trace-to-skill-checkpoint.json && node dist/src/cli.js sensitive-audit . --format json > /tmp/trace-to-skill-sensitive-audit.json && node dist/src/cli.js lsp-audit . --format json > /tmp/trace-to-skill-lsp-audit.json && node dist/src/cli.js suggest fixtures --target agents-md > /tmp/trace-to-skill-suggest.md && node dist/src/cli.js demo --format json > /tmp/trace-to-skill-demo.json && node dist/src/cli.js benchmark --format json > /tmp/trace-to-skill-benchmark.json && node dist/src/cli.js scorecard . --format json > /tmp/trace-to-skill-scorecard.json && node dist/src/cli.js oss-brief . --format json > /tmp/trace-to-skill-oss-brief.json",
|
|
45
|
+
"check": "npm run test && node dist/src/cli.js doctor . --format json > /tmp/trace-to-skill-doctor.json && node dist/src/cli.js lint-agents . --format json > /tmp/trace-to-skill-agents-lint.json && node dist/src/cli.js analyze fixtures --format json > /tmp/trace-to-skill-smoke.json && node dist/src/cli.js usage-evidence fixtures --format json > /tmp/trace-to-skill-usage-evidence.json && node dist/src/cli.js issue-map fixtures/github-codex-issues-export.json --format json > /tmp/trace-to-skill-issue-map.json && node dist/src/cli.js process-audit fixtures/safe-run.md --format json > /tmp/trace-to-skill-process-audit.json && node dist/src/cli.js checkpoint . --output /tmp/trace-to-skill-checkpoint --format json > /tmp/trace-to-skill-checkpoint.json && node dist/src/cli.js sensitive-audit . --format json > /tmp/trace-to-skill-sensitive-audit.json && node dist/src/cli.js lsp-audit . --format json > /tmp/trace-to-skill-lsp-audit.json && node dist/src/cli.js suggest fixtures --target agents-md > /tmp/trace-to-skill-suggest.md && node dist/src/cli.js demo --format json > /tmp/trace-to-skill-demo.json && node dist/src/cli.js benchmark --format json > /tmp/trace-to-skill-benchmark.json && node dist/src/cli.js scorecard . --format json > /tmp/trace-to-skill-scorecard.json && node dist/src/cli.js oss-brief . --format json > /tmp/trace-to-skill-oss-brief.json",
|
|
45
46
|
"prepack": "npm run build",
|
|
46
47
|
"prepare": "npm run build"
|
|
47
48
|
},
|
|
@@ -140,6 +141,10 @@
|
|
|
140
141
|
"codex-session-index",
|
|
141
142
|
"codex-project-history",
|
|
142
143
|
"codex-issue-report",
|
|
144
|
+
"codex-issue-map",
|
|
145
|
+
"github-issue-map",
|
|
146
|
+
"openai-issue-mining",
|
|
147
|
+
"maintainer-pain-map",
|
|
143
148
|
"openai-triage",
|
|
144
149
|
"openai-oss",
|
|
145
150
|
"oss-maintainers",
|