@diffci.com/diffci 0.1.10 → 0.1.12
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/LICENSE +1 -1
- package/README.md +301 -226
- package/action.yml +154 -154
- package/dist-client/src/client/cli.js +153 -21
- package/dist-client/src/client/economics.js +31 -0
- package/dist-client/src/client/mcp.js +196 -0
- package/dist-client/src/client/observe.js +40 -9
- package/docs/agent-adoption-kit.md +95 -0
- package/docs/agent-adoption-targets.md +52 -0
- package/docs/ai-agents.md +87 -0
- package/docs/claude-code.md +17 -0
- package/docs/codex.md +17 -0
- package/docs/copilot.md +18 -0
- package/docs/cursor.md +18 -0
- package/docs/grok.md +17 -0
- package/docs/language-support.md +118 -70
- package/docs/mcp.md +21 -0
- package/llms.txt +37 -0
- package/node_modules/@babel/parser/bin/babel-parser.js +0 -0
- package/node_modules/@diffci.com/core/README.md +9 -1
- package/node_modules/@diffci.com/core/dist/cache/economics-context.d.ts +2 -0
- package/node_modules/@diffci.com/core/dist/cache/economics-context.js +21 -0
- package/node_modules/@diffci.com/core/dist/cache/economics-context.js.map +1 -0
- package/node_modules/@diffci.com/core/dist/cache/vue-analysis-cache.d.ts +5 -0
- package/node_modules/@diffci.com/core/dist/cache/vue-analysis-cache.js +100 -0
- package/node_modules/@diffci.com/core/dist/cache/vue-analysis-cache.js.map +1 -0
- package/node_modules/@diffci.com/core/dist/planner/test-command.js +32 -0
- package/node_modules/@diffci.com/core/dist/planner/test-command.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/adapters/go.d.ts +3 -0
- package/node_modules/@diffci.com/core/dist/repo/adapters/go.js +24 -6
- package/node_modules/@diffci.com/core/dist/repo/adapters/go.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/adapters/index.js +2 -1
- package/node_modules/@diffci.com/core/dist/repo/adapters/index.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/adapters/maven.d.ts +3 -0
- package/node_modules/@diffci.com/core/dist/repo/adapters/maven.js +65 -0
- package/node_modules/@diffci.com/core/dist/repo/adapters/maven.js.map +1 -0
- package/node_modules/@diffci.com/core/dist/repo/adapters/types.d.ts +11 -0
- package/node_modules/@diffci.com/core/dist/repo/adapters/types.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/adapters/vue.js +142 -14
- package/node_modules/@diffci.com/core/dist/repo/adapters/vue.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/graph.d.ts +4 -0
- package/node_modules/@diffci.com/core/dist/repo/graph.js +169 -19
- package/node_modules/@diffci.com/core/dist/repo/graph.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/impact.js +22 -5
- package/node_modules/@diffci.com/core/dist/repo/impact.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/repo-config.d.ts +15 -0
- package/node_modules/@diffci.com/core/dist/repo/repo-config.js +13 -2
- package/node_modules/@diffci.com/core/dist/repo/repo-config.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/test-discovery.js +2 -0
- package/node_modules/@diffci.com/core/dist/repo/test-discovery.js.map +1 -1
- package/node_modules/@diffci.com/core/dist/repo/types.d.ts +17 -0
- package/node_modules/@diffci.com/core/dist/repo/vue-scope.d.ts +4 -0
- package/node_modules/@diffci.com/core/dist/repo/vue-scope.js +157 -0
- package/node_modules/@diffci.com/core/dist/repo/vue-scope.js.map +1 -0
- package/node_modules/@diffci.com/core/src/cache/economics-context.ts +19 -0
- package/node_modules/@diffci.com/core/src/cache/vue-analysis-cache.ts +80 -0
- package/node_modules/@diffci.com/core/src/planner/test-command.ts +28 -0
- package/node_modules/@diffci.com/core/src/repo/adapters/go.ts +24 -5
- package/node_modules/@diffci.com/core/src/repo/adapters/index.ts +2 -1
- package/node_modules/@diffci.com/core/src/repo/adapters/maven.ts +38 -0
- package/node_modules/@diffci.com/core/src/repo/adapters/types.ts +5 -0
- package/node_modules/@diffci.com/core/src/repo/adapters/vue.ts +120 -15
- package/node_modules/@diffci.com/core/src/repo/graph.ts +146 -20
- package/node_modules/@diffci.com/core/src/repo/impact.ts +20 -4
- package/node_modules/@diffci.com/core/src/repo/repo-config.ts +20 -2
- package/node_modules/@diffci.com/core/src/repo/test-discovery.ts +2 -0
- package/node_modules/@diffci.com/core/src/repo/types.ts +11 -0
- package/node_modules/@diffci.com/core/src/repo/vue-scope.ts +122 -0
- package/node_modules/nanoid/bin/nanoid.cjs +0 -0
- package/node_modules/typescript/bin/tsc +0 -0
- package/node_modules/typescript/bin/tsserver +0 -0
- package/node_modules/yaml/bin.mjs +0 -0
- package/package.json +155 -131
package/package.json
CHANGED
|
@@ -1,131 +1,155 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@diffci.com/diffci",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "DiffCI - deterministic change-aware CI planning",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"@
|
|
130
|
-
|
|
131
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@diffci.com/diffci",
|
|
3
|
+
"version": "0.1.12",
|
|
4
|
+
"description": "DiffCI - deterministic change-aware CI planning",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ci",
|
|
7
|
+
"cicd",
|
|
8
|
+
"ai-agents",
|
|
9
|
+
"coding-agents",
|
|
10
|
+
"claude-code",
|
|
11
|
+
"codex",
|
|
12
|
+
"cursor",
|
|
13
|
+
"copilot",
|
|
14
|
+
"grok",
|
|
15
|
+
"test-selection",
|
|
16
|
+
"github-actions"
|
|
17
|
+
],
|
|
18
|
+
"license": "AGPL-3.0-only",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/DiffCI/DiffCI.com.git"
|
|
22
|
+
},
|
|
23
|
+
"private": false,
|
|
24
|
+
"type": "module",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=22.5.0"
|
|
27
|
+
},
|
|
28
|
+
"bin": {
|
|
29
|
+
"diffci": "dist-client/src/client/cli.js",
|
|
30
|
+
"diffci-mcp": "dist-client/src/client/mcp.js"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"action.yml",
|
|
34
|
+
"dist-client/src/client",
|
|
35
|
+
"README.md",
|
|
36
|
+
"llms.txt",
|
|
37
|
+
"docs/ai-agents.md",
|
|
38
|
+
"docs/agent-adoption-kit.md",
|
|
39
|
+
"docs/agent-adoption-targets.md",
|
|
40
|
+
"docs/mcp.md",
|
|
41
|
+
"docs/codex.md",
|
|
42
|
+
"docs/claude-code.md",
|
|
43
|
+
"docs/cursor.md",
|
|
44
|
+
"docs/copilot.md",
|
|
45
|
+
"docs/grok.md",
|
|
46
|
+
"docs/distribution.md",
|
|
47
|
+
"docs/npm-adoption.md",
|
|
48
|
+
"docs/language-support.md",
|
|
49
|
+
"SECURITY.md",
|
|
50
|
+
"SUPPORT.md",
|
|
51
|
+
"COMMERCIAL.md"
|
|
52
|
+
],
|
|
53
|
+
"exports": {
|
|
54
|
+
"./*": {
|
|
55
|
+
"types": "./dist/src/*.d.ts",
|
|
56
|
+
"default": "./dist/src/*.js"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"typecheck": "tsc --noEmit",
|
|
61
|
+
"build": "tsc",
|
|
62
|
+
"test": "tsx --test \"tests/**/*.test.ts\"",
|
|
63
|
+
"check": "npm run typecheck && npm run test",
|
|
64
|
+
"prepack": "npm run build:client",
|
|
65
|
+
"package:smoke": "node scripts/package-smoke.mjs",
|
|
66
|
+
"diffci": "tsx scripts/diffci.ts",
|
|
67
|
+
"impact": "tsx scripts/diffci.ts impact",
|
|
68
|
+
"observe": "tsx src/client/cli.ts observe",
|
|
69
|
+
"verify-workflow": "tsx src/client/cli.ts verify-workflow",
|
|
70
|
+
"build:client": "tsc -p tsconfig.client.json",
|
|
71
|
+
"build:agent": "tsx scripts/build-agent.ts",
|
|
72
|
+
"inspect:agent": "tsx scripts/inspect-agent-package.ts",
|
|
73
|
+
"dogfood": "tsx scripts/dogfood-observe.ts",
|
|
74
|
+
"dogfood:report": "tsx scripts/dogfood-report.ts",
|
|
75
|
+
"dogfood:mutate": "tsx scripts/dogfood-mutate.ts",
|
|
76
|
+
"dogfood:qualify": "tsx scripts/dogfood-qualify.ts",
|
|
77
|
+
"dogfood:freeze": "tsx scripts/dogfood-freeze.ts",
|
|
78
|
+
"shadow": "tsx scripts/diffci-shadow.ts",
|
|
79
|
+
"shadow-report": "tsx scripts/diffci-shadow-report.ts",
|
|
80
|
+
"audit:dentalpresence": "tsx scripts/audit-dentalpresence-graph.ts",
|
|
81
|
+
"audit:dentalpresence-impact": "tsx scripts/audit-dentalpresence-impact.ts",
|
|
82
|
+
"research:stage0": "tsx src/research/cli/run-stage0.ts",
|
|
83
|
+
"research:sandbox:deploy": "wrangler deploy --config wrangler.research-sandbox.jsonc",
|
|
84
|
+
"shadow:upload-source": "tsx scripts/upload-shadow-source.ts",
|
|
85
|
+
"shadow:deploy": "tsx scripts/deploy-research-sandbox.ts",
|
|
86
|
+
"shadow:screen": "tsx scripts/screen-shadow-eligibility.ts",
|
|
87
|
+
"shadow:status": "node scripts/shadow-status.mjs",
|
|
88
|
+
"shadow:report": "tsx scripts/generate-shadow-report.ts",
|
|
89
|
+
"shadow:freshness": "tsx scripts/check-deployment-freshness.ts",
|
|
90
|
+
"shadow:missed-commits": "tsx scripts/derive-missed-commits.ts",
|
|
91
|
+
"github-runner:deploy": "wrangler deploy --config wrangler.github-runner.jsonc",
|
|
92
|
+
"product:deploy": "wrangler deploy --config wrangler.product.jsonc",
|
|
93
|
+
"product:migrate": "tsx scripts/migrate-product-db.ts",
|
|
94
|
+
"site:dev": "wrangler dev --config wrangler.site.jsonc --port 8788",
|
|
95
|
+
"site:deploy": "wrangler deploy --config wrangler.site.jsonc",
|
|
96
|
+
"study:render": "tsx scripts/render-open-study.ts",
|
|
97
|
+
"validation:deploy": "wrangler deploy --config wrangler.validation-env.jsonc",
|
|
98
|
+
"validation:pack": "tsx scripts/diffci-validation-cli.ts pack",
|
|
99
|
+
"validation:start": "tsx scripts/diffci-validation-cli.ts start",
|
|
100
|
+
"validation:status": "tsx scripts/diffci-validation-cli.ts status",
|
|
101
|
+
"validation:collect": "tsx scripts/diffci-validation-cli.ts collect",
|
|
102
|
+
"dogfood:compare": "tsx scripts/dogfood-compare.ts",
|
|
103
|
+
"verify:savings-pilot": "tsx scripts/verify-savings-pilot.ts",
|
|
104
|
+
"test:calibration": "tsx --test \"tests/scripts/harness-calibration.test.ts\" \"tests/scripts/compute-usage.test.ts\"",
|
|
105
|
+
"agent:equivalence": "tsx scripts/agent-equivalence.ts",
|
|
106
|
+
"dogfood:economics": "tsx scripts/dogfood-economics.ts",
|
|
107
|
+
"analyze:buckets": "tsx scripts/analyze-selection-buckets.ts",
|
|
108
|
+
"trace:selection": "tsx scripts/trace-selection-provenance.ts",
|
|
109
|
+
"diagnose:symbols": "tsx scripts/diagnose-symbol-precision.ts",
|
|
110
|
+
"eligibility": "tsx scripts/economic-eligibility.ts",
|
|
111
|
+
"calibrate": "tsx scripts/calibrate-repository.ts",
|
|
112
|
+
"survey": "tsx scripts/survey-run.ts",
|
|
113
|
+
"diagnose:candidate": "tsx scripts/diagnose-candidate.ts",
|
|
114
|
+
"select:candidate": "tsx scripts/select-source-candidate.ts",
|
|
115
|
+
"survey:density": "tsx scripts/survey-mapping-density.ts",
|
|
116
|
+
"trace:imports": "tsx scripts/trace-import-resolution.ts",
|
|
117
|
+
"select:compute-proof": "tsx scripts/select-compute-proof.ts",
|
|
118
|
+
"funnel:qualification": "tsx scripts/qualification-funnel.ts",
|
|
119
|
+
"select:mechanism-proof": "tsx scripts/select-mechanism-proof.ts",
|
|
120
|
+
"observe:pairs": "tsx scripts/observe-named-pairs.ts",
|
|
121
|
+
"qualify:universe": "tsx scripts/qualify-universe.ts",
|
|
122
|
+
"corpus:register": "tsx scripts/register-corpus-entry.ts",
|
|
123
|
+
"ci:benchmark": "tsx scripts/ci-inference-benchmark.ts",
|
|
124
|
+
"ci:reproduce": "tsx scripts/ci-reproduction.ts",
|
|
125
|
+
"check:oss-boundary": "node scripts/check-oss-boundary.mjs"
|
|
126
|
+
},
|
|
127
|
+
"dependencies": {
|
|
128
|
+
"@diffci.com/core": "git+https://github.com/DiffCI/core.git#db1d637dfcca8d8f7fa047500dfe0027d0d018a7",
|
|
129
|
+
"@types/node": "^22.15.12",
|
|
130
|
+
"@vue/compiler-sfc": "3.5.42",
|
|
131
|
+
"typescript": "^5.8.3",
|
|
132
|
+
"yaml": "^2.9.0"
|
|
133
|
+
},
|
|
134
|
+
"devDependencies": {
|
|
135
|
+
"@cloudflare/containers": "^0.3.7",
|
|
136
|
+
"@cloudflare/sandbox": "0.12.5",
|
|
137
|
+
"esbuild": "^0.28.2",
|
|
138
|
+
"pdf-lib": "^1.17.1",
|
|
139
|
+
"tsx": "^4.23.12",
|
|
140
|
+
"wrangler": "4.120.0"
|
|
141
|
+
},
|
|
142
|
+
"diffci": {
|
|
143
|
+
"alwaysRunTests": [
|
|
144
|
+
"**/security.test.*",
|
|
145
|
+
"**/test-security.*",
|
|
146
|
+
"**/*api-guardrails*",
|
|
147
|
+
"**/verify-*.test.*",
|
|
148
|
+
"**/validate-*.test.*",
|
|
149
|
+
"scripts/**/*.test.mjs"
|
|
150
|
+
]
|
|
151
|
+
},
|
|
152
|
+
"bundleDependencies": [
|
|
153
|
+
"@diffci.com/core"
|
|
154
|
+
]
|
|
155
|
+
}
|