@namewta/speculo 1.0.5 → 1.0.7
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 +1 -1
- package/dist/src/kernel.d.ts +23 -2
- package/dist/src/kernel.js +9 -0
- package/dist/src/kernel.js.map +1 -1
- package/dist/src/ops-resources.d.ts +3 -0
- package/dist/src/ops-resources.js +188 -0
- package/dist/src/ops-resources.js.map +1 -0
- package/dist/src/refresh.js +20 -2
- package/dist/src/refresh.js.map +1 -1
- package/dist/src/structured.js +7 -0
- package/dist/src/structured.js.map +1 -1
- package/dist/src/workflows.js +1 -1
- package/dist/src/workflows.js.map +1 -1
- package/package.json +1 -1
- package/template/.speculo/README.md +3 -3
- package/template/.speculo/kernel/README.md +3 -0
- package/template/.speculo/kernel/checkpoint.schema.json +138 -4
- package/template/commands/archive-and-consolidate.md +5 -1
- package/template/commands/status.md +2 -2
- package/template/workflows/ops/D-project-deploy/D-project-deploy.md +34 -0
- package/template/workflows/ops/H-host-manage/H-host-manage.md +30 -0
- package/template/workflows/ops/I-initialize/I-initialize.md +28 -0
- package/template/workflows/ops/INDEX.md +15 -17
- package/template/workflows/ops/README.md +59 -93
- package/template/workflows/ops/_state/status.json +15 -3
- package/template/workflows/ops/common/CAPABILITIES.md +23 -0
- package/template/workflows/ops/common/USAGE.md +112 -0
- package/template/workflows/ops/common/examples/README.md +7 -0
- package/template/workflows/ops/common/examples/binding.example.json +12 -0
- package/template/workflows/ops/common/examples/compose-app.example.json +56 -0
- package/template/workflows/ops/common/examples/credential.example.json +9 -0
- package/template/workflows/ops/common/examples/environment-request.example.json +7 -0
- package/template/workflows/ops/common/examples/register.example.json +44 -0
- package/template/workflows/ops/common/examples/shared-allocation.example.json +37 -0
- package/template/workflows/ops/common/rules/activation-and-memory.md +5 -20
- package/template/workflows/ops/common/rules/persistence-and-secrets.md +27 -0
- package/template/workflows/ops/common/rules/recovery.md +15 -0
- package/template/workflows/ops/common/rules/shared-services.md +13 -0
- package/template/workflows/ops/common/schemas/allocation.schema.json +92 -0
- package/template/workflows/ops/common/schemas/approval.schema.json +41 -21
- package/template/workflows/ops/common/schemas/binding.schema.json +73 -0
- package/template/workflows/ops/common/schemas/deployment.schema.json +244 -0
- package/template/workflows/ops/common/schemas/host.schema.json +88 -0
- package/template/workflows/ops/common/schemas/plan.schema.json +1573 -0
- package/template/workflows/ops/common/schemas/project.schema.json +55 -11
- package/template/workflows/ops/common/schemas/spec.schema.json +1032 -0
- package/template/workflows/ops/common/schemas/status.schema.json +758 -17
- package/template/workflows/ops/common/service-profiles/custom.md +5 -0
- package/template/workflows/ops/common/service-profiles/docker-engine.md +11 -0
- package/template/workflows/ops/common/service-profiles/minio.md +7 -0
- package/template/workflows/ops/common/service-profiles/mysql.md +7 -0
- package/template/workflows/ops/common/service-profiles/redis.md +7 -0
- package/template/workflows/ops/common/templates/CONTROLLER-RECORD.md +13 -0
- package/template/workflows/ops/common/templates/EXECUTION-PLAN.md +15 -0
- package/template/workflows/ops/common/templates/HOST-README.md +11 -0
- package/template/workflows/ops/common/templates/PROJECT-README.md +15 -0
- package/template/workflows/ops/common/tests/test_ops.mjs +752 -0
- package/template/workflows/ops/common/tools/bootstrap.ps1 +18 -0
- package/template/workflows/ops/common/tools/bootstrap.sh +27 -0
- package/template/workflows/ops/common/tools/demo-local.mjs +101 -0
- package/template/workflows/ops/common/tools/ops.mjs +4 -0
- package/template/workflows/ops/common/tools/opslib/agent.mjs +873 -0
- package/template/workflows/ops/common/tools/opslib/cli.mjs +311 -0
- package/template/workflows/ops/common/tools/opslib/core.mjs +393 -0
- package/template/workflows/ops/common/tools/opslib/docs.mjs +252 -0
- package/template/workflows/ops/common/tools/opslib/execution.mjs +378 -0
- package/template/workflows/ops/common/tools/opslib/host_recipes.mjs +109 -0
- package/template/workflows/ops/common/tools/opslib/model.mjs +272 -0
- package/template/workflows/ops/common/tools/opslib/native_windows.mjs +36 -0
- package/template/workflows/ops/common/tools/opslib/planner.mjs +687 -0
- package/template/workflows/ops/common/tools/opslib/services.mjs +76 -0
- package/template/workflows/ops/common/tools/opslib/sources.mjs +56 -0
- package/template/workflows/ops/common/tools/opslib/transport.mjs +127 -0
- package/template/workflows/ops/common/tools/validate-ops.mjs +43 -1012
- package/template/workflows/ops/manifest.json +60 -1
- package/template/workflows/ops/runtime-contract.json +1 -6
- package/template/workflows/ops/A-archive-and-learn/A-archive-and-learn.md +0 -73
- package/template/workflows/ops/A-archive-and-learn/promotion-plan-template.md +0 -41
- package/template/workflows/ops/A-archive-and-learn/retrospective-template.md +0 -53
- package/template/workflows/ops/E-execute-and-stabilize/E-execute-and-stabilize.md +0 -82
- package/template/workflows/ops/E-execute-and-stabilize/attempt-summary-template.md +0 -44
- package/template/workflows/ops/E-execute-and-stabilize/diagnosis-template.md +0 -24
- package/template/workflows/ops/E-execute-and-stabilize/handoff-template.md +0 -32
- package/template/workflows/ops/E-execute-and-stabilize/rollback-template.md +0 -26
- package/template/workflows/ops/E-execute-and-stabilize/verification-state-template.json +0 -30
- package/template/workflows/ops/E-execute-and-stabilize/verification-template.md +0 -55
- package/template/workflows/ops/H-computer-hygiene/H-computer-hygiene.md +0 -105
- package/template/workflows/ops/H-computer-hygiene/examples/README.md +0 -9
- package/template/workflows/ops/H-computer-hygiene/examples/linux/2026-09-14.environment.md +0 -45
- package/template/workflows/ops/H-computer-hygiene/examples/linux/2026-09-14.json +0 -970
- package/template/workflows/ops/H-computer-hygiene/examples/linux/2026-09-14.md +0 -216
- package/template/workflows/ops/H-computer-hygiene/examples/macos/2026-09-14.environment.md +0 -45
- package/template/workflows/ops/H-computer-hygiene/examples/macos/2026-09-14.json +0 -970
- package/template/workflows/ops/H-computer-hygiene/examples/macos/2026-09-14.md +0 -216
- package/template/workflows/ops/H-computer-hygiene/examples/windows/2026-09-14.environment.md +0 -45
- package/template/workflows/ops/H-computer-hygiene/examples/windows/2026-09-14.json +0 -969
- package/template/workflows/ops/H-computer-hygiene/examples/windows/2026-09-14.md +0 -216
- package/template/workflows/ops/H-computer-hygiene/references/00-sources.md +0 -58
- package/template/workflows/ops/H-computer-hygiene/references/01-safety.md +0 -52
- package/template/workflows/ops/H-computer-hygiene/references/10-windows.md +0 -47
- package/template/workflows/ops/H-computer-hygiene/references/11-macos.md +0 -46
- package/template/workflows/ops/H-computer-hygiene/references/12-linux.md +0 -13
- package/template/workflows/ops/H-computer-hygiene/references/20-toolchains.md +0 -83
- package/template/workflows/ops/H-computer-hygiene/references/21-path-migration.md +0 -64
- package/template/workflows/ops/H-computer-hygiene/references/22-repositories.md +0 -35
- package/template/workflows/ops/H-computer-hygiene/references/30-software-removal.md +0 -41
- package/template/workflows/ops/H-computer-hygiene/references/40-report-spec.md +0 -54
- package/template/workflows/ops/H-computer-hygiene/references/50-speculo-integration.md +0 -26
- package/template/workflows/ops/H-computer-hygiene/references/source-register.json +0 -406
- package/template/workflows/ops/H-computer-hygiene/rules/catalog.json +0 -191
- package/template/workflows/ops/H-computer-hygiene/scripts/hygiene.py +0 -1348
- package/template/workflows/ops/H-computer-hygiene/scripts/run.ps1 +0 -7
- package/template/workflows/ops/H-computer-hygiene/scripts/run.sh +0 -5
- package/template/workflows/ops/H-computer-hygiene/templates/config.example.json +0 -13
- package/template/workflows/ops/H-computer-hygiene/templates/maven-settings.fragment.xml +0 -6
- package/template/workflows/ops/H-computer-hygiene/templates/native-evidence.example.json +0 -19
- package/template/workflows/ops/H-computer-hygiene/tests/cli_smoke.py +0 -65
- package/template/workflows/ops/H-computer-hygiene/tests/make_examples.py +0 -114
- package/template/workflows/ops/H-computer-hygiene/tests/test_hygiene.py +0 -486
- package/template/workflows/ops/I-intake-and-assess/I-intake-and-assess.md +0 -73
- package/template/workflows/ops/I-intake-and-assess/change-status-template.json +0 -26
- package/template/workflows/ops/I-intake-and-assess/collector-catalog.md +0 -28
- package/template/workflows/ops/I-intake-and-assess/deployment-dossier-template.md +0 -62
- package/template/workflows/ops/I-intake-and-assess/global-change-status-template.json +0 -26
- package/template/workflows/ops/I-intake-and-assess/project-detection.md +0 -38
- package/template/workflows/ops/I-intake-and-assess/request-template.md +0 -44
- package/template/workflows/ops/I-intake-and-assess/system-report-template.md +0 -34
- package/template/workflows/ops/I-intake-and-assess/target-profile-template.json +0 -24
- package/template/workflows/ops/P-plan-and-approve/P-plan-and-approve.md +0 -72
- package/template/workflows/ops/P-plan-and-approve/plan-review-template.md +0 -78
- package/template/workflows/ops/_state/archive/.gitkeep +0 -1
- package/template/workflows/ops/_state/changes/.gitkeep +0 -1
- package/template/workflows/ops/common/rules/artifact-contract.md +0 -38
- package/template/workflows/ops/common/rules/closure-and-learning.md +0 -27
- package/template/workflows/ops/common/rules/evidence-and-redaction.md +0 -22
- package/template/workflows/ops/common/rules/execution-loop.md +0 -27
- package/template/workflows/ops/common/rules/path-and-scope-contract.md +0 -21
- package/template/workflows/ops/common/rules/plan-and-approval.md +0 -25
- package/template/workflows/ops/common/rules/project-and-change-scope.md +0 -20
- package/template/workflows/ops/common/rules/target-profile-and-release-gates.md +0 -44
- package/template/workflows/ops/common/schemas/attempt.schema.json +0 -42
- package/template/workflows/ops/common/schemas/change-status.schema.json +0 -43
- package/template/workflows/ops/common/schemas/deployment-model.schema.json +0 -26
- package/template/workflows/ops/common/schemas/implementation-plan.schema.json +0 -221
- package/template/workflows/ops/common/schemas/inventory-snapshot.schema.json +0 -31
- package/template/workflows/ops/common/schemas/journal-event.schema.json +0 -22
- package/template/workflows/ops/common/schemas/promotion-approval.schema.json +0 -20
- package/template/workflows/ops/common/schemas/promotion-manifest.schema.json +0 -22
- package/template/workflows/ops/common/schemas/target-profile.schema.json +0 -32
- package/template/workflows/ops/common/schemas/verification-state.schema.json +0 -30
- package/template/workflows/ops/common/tools/close-change.mjs +0 -177
|
@@ -1,970 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"completed_at": "2026-09-14T08:44:02.783712+00:00",
|
|
3
|
-
"configurations": [
|
|
4
|
-
{
|
|
5
|
-
"declarations": [
|
|
6
|
-
{
|
|
7
|
-
"line": 1,
|
|
8
|
-
"value": "not recorded; no evaluation",
|
|
9
|
-
"variable": "JAVA_HOME"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"path": "~/.profile",
|
|
13
|
-
"status": "inspected"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"declarations": [
|
|
17
|
-
{
|
|
18
|
-
"line": 1,
|
|
19
|
-
"value": "not recorded; no evaluation",
|
|
20
|
-
"variable": "JAVA_HOME"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"path": "~/.zshrc",
|
|
24
|
-
"status": "inspected"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"localRepository": "~/.m2/repository",
|
|
28
|
-
"path": "~/.m2/settings.xml",
|
|
29
|
-
"sensitive_sections_recorded": false,
|
|
30
|
-
"status": "inspected"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"note": "Potential configuration/credentials; content not exported. Effective values require trusted native queries.",
|
|
34
|
-
"path": "~/.cargo/config.toml",
|
|
35
|
-
"status": "metadata-only"
|
|
36
|
-
}
|
|
37
|
-
],
|
|
38
|
-
"date": "2026-09-14",
|
|
39
|
-
"environment": {
|
|
40
|
-
"commands": {
|
|
41
|
-
"asdf": {
|
|
42
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
43
|
-
"executed": false,
|
|
44
|
-
"family": "version-managers",
|
|
45
|
-
"matches": [],
|
|
46
|
-
"selected_candidate": null,
|
|
47
|
-
"version": null
|
|
48
|
-
},
|
|
49
|
-
"brew": {
|
|
50
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
51
|
-
"executed": false,
|
|
52
|
-
"family": "version-managers",
|
|
53
|
-
"matches": [],
|
|
54
|
-
"selected_candidate": null,
|
|
55
|
-
"version": null
|
|
56
|
-
},
|
|
57
|
-
"cargo": {
|
|
58
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
59
|
-
"executed": false,
|
|
60
|
-
"family": "rust",
|
|
61
|
-
"matches": [],
|
|
62
|
-
"selected_candidate": null,
|
|
63
|
-
"version": null
|
|
64
|
-
},
|
|
65
|
-
"corepack": {
|
|
66
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
67
|
-
"executed": false,
|
|
68
|
-
"family": "node",
|
|
69
|
-
"matches": [],
|
|
70
|
-
"selected_candidate": null,
|
|
71
|
-
"version": null
|
|
72
|
-
},
|
|
73
|
-
"fnm": {
|
|
74
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
75
|
-
"executed": false,
|
|
76
|
-
"family": "version-managers",
|
|
77
|
-
"matches": [],
|
|
78
|
-
"selected_candidate": null,
|
|
79
|
-
"version": null
|
|
80
|
-
},
|
|
81
|
-
"go": {
|
|
82
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
83
|
-
"executed": false,
|
|
84
|
-
"family": "go",
|
|
85
|
-
"matches": [],
|
|
86
|
-
"selected_candidate": null,
|
|
87
|
-
"version": null
|
|
88
|
-
},
|
|
89
|
-
"gradle": {
|
|
90
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
91
|
-
"executed": false,
|
|
92
|
-
"family": "gradle",
|
|
93
|
-
"matches": [],
|
|
94
|
-
"selected_candidate": null,
|
|
95
|
-
"version": null
|
|
96
|
-
},
|
|
97
|
-
"java": {
|
|
98
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
99
|
-
"executed": false,
|
|
100
|
-
"family": "java",
|
|
101
|
-
"matches": [
|
|
102
|
-
"~/bin-primary/java",
|
|
103
|
-
"~/bin-old/java"
|
|
104
|
-
],
|
|
105
|
-
"selected_candidate": "~/bin-primary/java",
|
|
106
|
-
"version": null
|
|
107
|
-
},
|
|
108
|
-
"javac": {
|
|
109
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
110
|
-
"executed": false,
|
|
111
|
-
"family": "java",
|
|
112
|
-
"matches": [],
|
|
113
|
-
"selected_candidate": null,
|
|
114
|
-
"version": null
|
|
115
|
-
},
|
|
116
|
-
"jenv": {
|
|
117
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
118
|
-
"executed": false,
|
|
119
|
-
"family": "version-managers",
|
|
120
|
-
"matches": [],
|
|
121
|
-
"selected_candidate": null,
|
|
122
|
-
"version": null
|
|
123
|
-
},
|
|
124
|
-
"mise": {
|
|
125
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
126
|
-
"executed": false,
|
|
127
|
-
"family": "version-managers",
|
|
128
|
-
"matches": [],
|
|
129
|
-
"selected_candidate": null,
|
|
130
|
-
"version": null
|
|
131
|
-
},
|
|
132
|
-
"mvn": {
|
|
133
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
134
|
-
"executed": false,
|
|
135
|
-
"family": "maven",
|
|
136
|
-
"matches": [],
|
|
137
|
-
"selected_candidate": null,
|
|
138
|
-
"version": null
|
|
139
|
-
},
|
|
140
|
-
"mvnw": {
|
|
141
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
142
|
-
"executed": false,
|
|
143
|
-
"family": "maven",
|
|
144
|
-
"matches": [],
|
|
145
|
-
"selected_candidate": null,
|
|
146
|
-
"version": null
|
|
147
|
-
},
|
|
148
|
-
"node": {
|
|
149
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
150
|
-
"executed": false,
|
|
151
|
-
"family": "node",
|
|
152
|
-
"matches": [],
|
|
153
|
-
"selected_candidate": null,
|
|
154
|
-
"version": null
|
|
155
|
-
},
|
|
156
|
-
"npm": {
|
|
157
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
158
|
-
"executed": false,
|
|
159
|
-
"family": "node",
|
|
160
|
-
"matches": [],
|
|
161
|
-
"selected_candidate": null,
|
|
162
|
-
"version": null
|
|
163
|
-
},
|
|
164
|
-
"npx": {
|
|
165
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
166
|
-
"executed": false,
|
|
167
|
-
"family": "node",
|
|
168
|
-
"matches": [],
|
|
169
|
-
"selected_candidate": null,
|
|
170
|
-
"version": null
|
|
171
|
-
},
|
|
172
|
-
"nvm": {
|
|
173
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
174
|
-
"executed": false,
|
|
175
|
-
"family": "version-managers",
|
|
176
|
-
"matches": [],
|
|
177
|
-
"selected_candidate": null,
|
|
178
|
-
"version": null
|
|
179
|
-
},
|
|
180
|
-
"pip": {
|
|
181
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
182
|
-
"executed": false,
|
|
183
|
-
"family": "python-uv",
|
|
184
|
-
"matches": [],
|
|
185
|
-
"selected_candidate": null,
|
|
186
|
-
"version": null
|
|
187
|
-
},
|
|
188
|
-
"pipx": {
|
|
189
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
190
|
-
"executed": false,
|
|
191
|
-
"family": "python-uv",
|
|
192
|
-
"matches": [],
|
|
193
|
-
"selected_candidate": null,
|
|
194
|
-
"version": null
|
|
195
|
-
},
|
|
196
|
-
"pnpm": {
|
|
197
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
198
|
-
"executed": false,
|
|
199
|
-
"family": "pnpm",
|
|
200
|
-
"matches": [],
|
|
201
|
-
"selected_candidate": null,
|
|
202
|
-
"version": null
|
|
203
|
-
},
|
|
204
|
-
"pyenv": {
|
|
205
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
206
|
-
"executed": false,
|
|
207
|
-
"family": "version-managers",
|
|
208
|
-
"matches": [],
|
|
209
|
-
"selected_candidate": null,
|
|
210
|
-
"version": null
|
|
211
|
-
},
|
|
212
|
-
"python": {
|
|
213
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
214
|
-
"executed": false,
|
|
215
|
-
"family": "python-uv",
|
|
216
|
-
"matches": [],
|
|
217
|
-
"selected_candidate": null,
|
|
218
|
-
"version": null
|
|
219
|
-
},
|
|
220
|
-
"python3": {
|
|
221
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
222
|
-
"executed": false,
|
|
223
|
-
"family": "python-uv",
|
|
224
|
-
"matches": [],
|
|
225
|
-
"selected_candidate": null,
|
|
226
|
-
"version": null
|
|
227
|
-
},
|
|
228
|
-
"rustc": {
|
|
229
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
230
|
-
"executed": false,
|
|
231
|
-
"family": "rust",
|
|
232
|
-
"matches": [],
|
|
233
|
-
"selected_candidate": null,
|
|
234
|
-
"version": null
|
|
235
|
-
},
|
|
236
|
-
"rustup": {
|
|
237
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
238
|
-
"executed": false,
|
|
239
|
-
"family": "rust",
|
|
240
|
-
"matches": [],
|
|
241
|
-
"selected_candidate": null,
|
|
242
|
-
"version": null
|
|
243
|
-
},
|
|
244
|
-
"scoop": {
|
|
245
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
246
|
-
"executed": false,
|
|
247
|
-
"family": "version-managers",
|
|
248
|
-
"matches": [],
|
|
249
|
-
"selected_candidate": null,
|
|
250
|
-
"version": null
|
|
251
|
-
},
|
|
252
|
-
"uv": {
|
|
253
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
254
|
-
"executed": false,
|
|
255
|
-
"family": "python-uv",
|
|
256
|
-
"matches": [],
|
|
257
|
-
"selected_candidate": null,
|
|
258
|
-
"version": null
|
|
259
|
-
},
|
|
260
|
-
"uvx": {
|
|
261
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
262
|
-
"executed": false,
|
|
263
|
-
"family": "python-uv",
|
|
264
|
-
"matches": [],
|
|
265
|
-
"selected_candidate": null,
|
|
266
|
-
"version": null
|
|
267
|
-
},
|
|
268
|
-
"volta": {
|
|
269
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
270
|
-
"executed": false,
|
|
271
|
-
"family": "version-managers",
|
|
272
|
-
"matches": [],
|
|
273
|
-
"selected_candidate": null,
|
|
274
|
-
"version": null
|
|
275
|
-
},
|
|
276
|
-
"winget": {
|
|
277
|
-
"certainty": "PATH file lookup only; aliases/functions/shim resolution not evaluated",
|
|
278
|
-
"executed": false,
|
|
279
|
-
"family": "version-managers",
|
|
280
|
-
"matches": [],
|
|
281
|
-
"selected_candidate": null,
|
|
282
|
-
"version": null
|
|
283
|
-
}
|
|
284
|
-
},
|
|
285
|
-
"path": [
|
|
286
|
-
{
|
|
287
|
-
"expanded": "~/bin-primary",
|
|
288
|
-
"index": 1,
|
|
289
|
-
"linklike": false,
|
|
290
|
-
"status": "exists",
|
|
291
|
-
"value": "~/bin-primary"
|
|
292
|
-
},
|
|
293
|
-
{
|
|
294
|
-
"expanded": "~/bin-old",
|
|
295
|
-
"index": 2,
|
|
296
|
-
"linklike": false,
|
|
297
|
-
"status": "exists",
|
|
298
|
-
"value": "~/bin-old"
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"duplicate_of": 1,
|
|
302
|
-
"expanded": "~/bin-primary",
|
|
303
|
-
"index": 3,
|
|
304
|
-
"linklike": false,
|
|
305
|
-
"status": "exists",
|
|
306
|
-
"value": "~/bin-primary"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
"expanded": "~/missing-bin",
|
|
310
|
-
"index": 4,
|
|
311
|
-
"linklike": false,
|
|
312
|
-
"status": "missing",
|
|
313
|
-
"value": "~/missing-bin"
|
|
314
|
-
}
|
|
315
|
-
],
|
|
316
|
-
"variables": {
|
|
317
|
-
"CARGO_HOME": "~/.cargo",
|
|
318
|
-
"GOCACHE": "~/.cache/go-build",
|
|
319
|
-
"JAVA_HOME": "~/old-jdk"
|
|
320
|
-
}
|
|
321
|
-
},
|
|
322
|
-
"findings": [
|
|
323
|
-
{
|
|
324
|
-
"category": "PATH",
|
|
325
|
-
"evidence": {
|
|
326
|
-
"duplicate_of": 1,
|
|
327
|
-
"expanded": "~/bin-primary",
|
|
328
|
-
"index": 3,
|
|
329
|
-
"linklike": false,
|
|
330
|
-
"status": "exists",
|
|
331
|
-
"value": "~/bin-primary"
|
|
332
|
-
},
|
|
333
|
-
"id": "F0001",
|
|
334
|
-
"recommendation": "保留必要优先级,备份后只修改产生重复的配置来源。",
|
|
335
|
-
"risk": "R1",
|
|
336
|
-
"title": "PATH 字面重复项"
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
"category": "PATH",
|
|
340
|
-
"evidence": {
|
|
341
|
-
"expanded": "~/missing-bin",
|
|
342
|
-
"index": 4,
|
|
343
|
-
"linklike": false,
|
|
344
|
-
"status": "missing",
|
|
345
|
-
"value": "~/missing-bin"
|
|
346
|
-
},
|
|
347
|
-
"id": "F0002",
|
|
348
|
-
"recommendation": "排除未挂载磁盘、会话级 shims 与延迟创建路径后再移除。",
|
|
349
|
-
"risk": "R1",
|
|
350
|
-
"title": "PATH 目录当前不存在"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"category": "tool-resolution",
|
|
354
|
-
"evidence": [
|
|
355
|
-
"~/bin-primary/java",
|
|
356
|
-
"~/bin-old/java"
|
|
357
|
-
],
|
|
358
|
-
"id": "F0003",
|
|
359
|
-
"recommendation": "在可信终端核实实际版本和主用管理器;多个路径不等于冗余安装。",
|
|
360
|
-
"risk": "R2",
|
|
361
|
-
"title": "java 有多个 PATH 命中"
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"category": "configuration",
|
|
365
|
-
"evidence": [
|
|
366
|
-
{
|
|
367
|
-
"line": 1,
|
|
368
|
-
"path": "~/.profile"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"line": 1,
|
|
372
|
-
"path": "~/.zshrc"
|
|
373
|
-
}
|
|
374
|
-
],
|
|
375
|
-
"id": "F0004",
|
|
376
|
-
"recommendation": "只是静态出现记录,未证明重复赋值或加载顺序;人工核实生效 shell 后整合。",
|
|
377
|
-
"risk": "R2",
|
|
378
|
-
"title": "JAVA_HOME 出现在多个 profile 位置"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"category": "project-location",
|
|
382
|
-
"evidence": "~/Downloads/source-clone",
|
|
383
|
-
"id": "F0005",
|
|
384
|
-
"recommendation": "先保全仓库状态与唯一数据,再规划项目根;位置不规范不等于允许删除。",
|
|
385
|
-
"risk": "R2",
|
|
386
|
-
"title": "项目位于易被清理的位置"
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"category": "project",
|
|
390
|
-
"evidence": {
|
|
391
|
-
"locks": [
|
|
392
|
-
"package-lock.json",
|
|
393
|
-
"pnpm-lock.yaml"
|
|
394
|
-
],
|
|
395
|
-
"path": "~/Projects/example-web"
|
|
396
|
-
},
|
|
397
|
-
"id": "F0006",
|
|
398
|
-
"recommendation": "确认实际管理器、迁移期和 CI 约束;不自动删除任一锁文件。",
|
|
399
|
-
"risk": "R2",
|
|
400
|
-
"title": "同一项目有多个 Node 包管理锁文件"
|
|
401
|
-
}
|
|
402
|
-
],
|
|
403
|
-
"host": {
|
|
404
|
-
"disk_free_bytes": 128849018880,
|
|
405
|
-
"disk_total_bytes": 549755813888,
|
|
406
|
-
"elevated": false,
|
|
407
|
-
"execution_context_signals": {
|
|
408
|
-
"fixture_only": true
|
|
409
|
-
},
|
|
410
|
-
"fingerprint": "FIXTURE_NOT_FOR_APPROVAL",
|
|
411
|
-
"home": "~",
|
|
412
|
-
"machine": "SIMULATED_ARCHITECTURE",
|
|
413
|
-
"release": "SIMULATED_OS_METADATA",
|
|
414
|
-
"system": "Linux"
|
|
415
|
-
},
|
|
416
|
-
"loose_files": [
|
|
417
|
-
{
|
|
418
|
-
"action": "manual ownership/backup/content review; not a deletion candidate",
|
|
419
|
-
"logical_bytes": 17,
|
|
420
|
-
"modified_at": "2026-09-14T08:44:02.779491+00:00",
|
|
421
|
-
"path": "~/Downloads/old-installer.zip",
|
|
422
|
-
"risk": "R2"
|
|
423
|
-
}
|
|
424
|
-
],
|
|
425
|
-
"manual_checks": [
|
|
426
|
-
{
|
|
427
|
-
"area": "maven",
|
|
428
|
-
"instruction": "核实 settings.xml、-Dmaven.repo.local、IDE 与项目参数;本地仓库可能含未发布的 install 产物,先备份,不整体删除。",
|
|
429
|
-
"reference": "20-toolchains.md#java-maven-gradle",
|
|
430
|
-
"risk": "R2"
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
"area": "node-pnpm",
|
|
434
|
-
"instruction": "可信终端中核实 Node 管理器、npm cache/prefix 与 pnpm store path;按本地帮助选择原生命令,清理 store 前检查离线需求及正在运行的安装。",
|
|
435
|
-
"reference": "20-toolchains.md#node-npm-pnpm",
|
|
436
|
-
"risk": "R2"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
"area": "go-rust-uv",
|
|
440
|
-
"instruction": "核实 go env、rustup toolchain list、uv 路径命令;保留 Cargo 配置/凭据/安装工具,不把 Cargo Home、.venv 或 SDK 当缓存。",
|
|
441
|
-
"reference": "20-toolchains.md",
|
|
442
|
-
"risk": "R2"
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
"area": "repositories",
|
|
446
|
-
"instruction": "对已授权且可信的仓库检查提交、推送、分支、worktree、submodule 和 LFS;未完成前不得删除仓库、.git、vendor、锁文件或虚拟环境。",
|
|
447
|
-
"reference": "22-repositories.md",
|
|
448
|
-
"risk": "P"
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"area": "software",
|
|
452
|
-
"instruction": "先按精确应用身份使用官方卸载器,再单独确认用户数据与残留;共享运行库、驱动、服务、插件不能按名称推断可删。",
|
|
453
|
-
"reference": "30-software-removal.md",
|
|
454
|
-
"risk": "R3"
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
"area": "system",
|
|
458
|
-
"instruction": "仅通过对应系统参考文档使用原生存储管理功能;不直接删除系统组件、快照、容器卷、WSL 磁盘或云同步文件。",
|
|
459
|
-
"reference": "10-windows.md / 11-macos.md / 12-linux.md",
|
|
460
|
-
"risk": "R3"
|
|
461
|
-
}
|
|
462
|
-
],
|
|
463
|
-
"projects": [
|
|
464
|
-
{
|
|
465
|
-
"artifacts": [],
|
|
466
|
-
"declared_node_manager": null,
|
|
467
|
-
"git": "gitfile/worktree-or-submodule",
|
|
468
|
-
"git_state": "unknown; Git commands not executed",
|
|
469
|
-
"markers": [],
|
|
470
|
-
"path": "~/Downloads/source-clone",
|
|
471
|
-
"version_pin_files": []
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
"artifacts": [
|
|
475
|
-
"~/Projects/example-web/node_modules"
|
|
476
|
-
],
|
|
477
|
-
"declared_node_manager": "pnpm@9.0.0",
|
|
478
|
-
"git": "directory",
|
|
479
|
-
"git_state": "unknown; Git commands not executed",
|
|
480
|
-
"markers": [
|
|
481
|
-
".nvmrc",
|
|
482
|
-
"package-lock.json",
|
|
483
|
-
"package.json",
|
|
484
|
-
"pnpm-lock.yaml"
|
|
485
|
-
],
|
|
486
|
-
"path": "~/Projects/example-web",
|
|
487
|
-
"version_pin_files": [
|
|
488
|
-
".nvmrc"
|
|
489
|
-
]
|
|
490
|
-
}
|
|
491
|
-
],
|
|
492
|
-
"record_kind": "SYNTHETIC_FIXTURE_NOT_YOUR_COMPUTER",
|
|
493
|
-
"safety": {
|
|
494
|
-
"configuration_changes": 0,
|
|
495
|
-
"default_read_only": true,
|
|
496
|
-
"deleted_files": 0,
|
|
497
|
-
"network_requests": 0,
|
|
498
|
-
"quarantine_frees_space": false,
|
|
499
|
-
"report_is_sensitive": true,
|
|
500
|
-
"subprocesses": 0,
|
|
501
|
-
"web_sources_verified": false
|
|
502
|
-
},
|
|
503
|
-
"scan_id": "4c413d09b58a",
|
|
504
|
-
"schema_version": 1,
|
|
505
|
-
"scope": {
|
|
506
|
-
"coverage": [
|
|
507
|
-
{
|
|
508
|
-
"area": "environment",
|
|
509
|
-
"detail": "Process PATH and curated path variables inspected; no shell evaluation, tool execution or effective-version proof.",
|
|
510
|
-
"status": "partial"
|
|
511
|
-
},
|
|
512
|
-
{
|
|
513
|
-
"area": "configuration",
|
|
514
|
-
"detail": "Known profile anchors and allowlisted Maven/npm path fields; no credentials, includes, project overrides, or effective execution.",
|
|
515
|
-
"status": "partial"
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
"area": "storage",
|
|
519
|
-
"detail": "Known defaults and declared locations; per-tree/global budgets; no full-disk crawl; custom tool defaults may be missed.",
|
|
520
|
-
"status": "partial"
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"area": "projects",
|
|
524
|
-
"detail": "Authorized roots only; depth <= 3; repository content/state/remote ownership not verified.",
|
|
525
|
-
"status": "partial"
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
"area": "applications/startup",
|
|
529
|
-
"detail": "Synthetic application metadata only; no real registry, Applications, launchd or service reads.",
|
|
530
|
-
"status": "SIMULATED-NOT-NATIVE"
|
|
531
|
-
},
|
|
532
|
-
{
|
|
533
|
-
"area": "loose-files/duplicates",
|
|
534
|
-
"detail": "Downloads direct-child installers/archives/large-file metadata only. No content hashes, full-disk duplicate proof, Documents/Desktop traversal or personal-data deletion.",
|
|
535
|
-
"status": "partial"
|
|
536
|
-
}
|
|
537
|
-
],
|
|
538
|
-
"entries_visited": 38,
|
|
539
|
-
"global_budget_exhausted": false,
|
|
540
|
-
"limitations": [
|
|
541
|
-
"No complete disk or effective-tool-version claim.",
|
|
542
|
-
"Stat calls on an unrecognized remote filesystem may block; budgets are cooperative, not OS I/O deadlines.",
|
|
543
|
-
"No universal detection of bind mounts, macOS firmlinks, APFS clones or same-device remote mappings.",
|
|
544
|
-
"Metadata mtime is not last-use evidence; content-identical duplicates not proven.",
|
|
545
|
-
"Current user's report does not cover other users, WSL guest systems or all external volumes.",
|
|
546
|
-
"Disk capacity, architecture and application identity are illustrative fixture values, not real measurements."
|
|
547
|
-
],
|
|
548
|
-
"options": {
|
|
549
|
-
"exclude_roots": [],
|
|
550
|
-
"large_file_mib": 512,
|
|
551
|
-
"max_entries_per_tree": 20000,
|
|
552
|
-
"max_entries_total": 200000,
|
|
553
|
-
"min_age_days": 14,
|
|
554
|
-
"project_depth": 3,
|
|
555
|
-
"project_roots": [
|
|
556
|
-
"~/Projects",
|
|
557
|
-
"~/Downloads"
|
|
558
|
-
],
|
|
559
|
-
"schema_version": 1,
|
|
560
|
-
"seconds_per_tree": 10,
|
|
561
|
-
"seconds_total": 90.0,
|
|
562
|
-
"target_root": null
|
|
563
|
-
}
|
|
564
|
-
},
|
|
565
|
-
"software": {
|
|
566
|
-
"applications": [
|
|
567
|
-
{
|
|
568
|
-
"action": "fixture candidate; not real software and never uninstalled",
|
|
569
|
-
"bundle_id": "invalid.example.editor",
|
|
570
|
-
"name": "Example Editor",
|
|
571
|
-
"path": "~/Applications/Example Editor.app",
|
|
572
|
-
"system_component": false,
|
|
573
|
-
"version": "1.0-fixture"
|
|
574
|
-
}
|
|
575
|
-
],
|
|
576
|
-
"errors": [
|
|
577
|
-
"Real OS inventory intentionally disabled for this example."
|
|
578
|
-
],
|
|
579
|
-
"persistent_environment": [],
|
|
580
|
-
"startup": []
|
|
581
|
-
},
|
|
582
|
-
"started_at": "2026-09-14T08:44:02.779627+00:00",
|
|
583
|
-
"storage": [
|
|
584
|
-
{
|
|
585
|
-
"kind": "maven-local-repository",
|
|
586
|
-
"note": "May contain unpublished artifacts installed locally; never blanket-delete.",
|
|
587
|
-
"path": "~/.m2/repository",
|
|
588
|
-
"risk": "P",
|
|
589
|
-
"sources": [
|
|
590
|
-
"settings.xml declaration, not effective configuration proof",
|
|
591
|
-
"known default hypothesis; not proof of active use"
|
|
592
|
-
],
|
|
593
|
-
"status": "measured",
|
|
594
|
-
"tree": {
|
|
595
|
-
"allocated_bytes": 20480,
|
|
596
|
-
"complete": true,
|
|
597
|
-
"digest": "6b43c5baf09bfc238857d1152745e6e215cfbc2ba0a1075eadf696b89bdf9517",
|
|
598
|
-
"directories": 4,
|
|
599
|
-
"entries": 5,
|
|
600
|
-
"errors": [],
|
|
601
|
-
"files": 1,
|
|
602
|
-
"large_files": [],
|
|
603
|
-
"logical_bytes": 18432,
|
|
604
|
-
"newest_mtime_ns": 1789375442778312664,
|
|
605
|
-
"root_identity": [
|
|
606
|
-
28,
|
|
607
|
-
1573093,
|
|
608
|
-
16877
|
|
609
|
-
],
|
|
610
|
-
"skipped_hardlinks": 0,
|
|
611
|
-
"skipped_links": 0,
|
|
612
|
-
"skipped_special": 0
|
|
613
|
-
}
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"kind": "gradle-home",
|
|
617
|
-
"note": "Contains configuration, caches, wrapper distributions and possibly credentials.",
|
|
618
|
-
"path": "~/.gradle",
|
|
619
|
-
"risk": "P",
|
|
620
|
-
"sources": [
|
|
621
|
-
"known default hypothesis; not proof of active use"
|
|
622
|
-
],
|
|
623
|
-
"status": "absent"
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
"kind": "cargo-home",
|
|
627
|
-
"note": "Contains config, credentials, installed binaries, registry and Git stores.",
|
|
628
|
-
"path": "~/.cargo",
|
|
629
|
-
"risk": "P",
|
|
630
|
-
"sources": [
|
|
631
|
-
"known default hypothesis; not proof of active use",
|
|
632
|
-
"process environment: CARGO_HOME"
|
|
633
|
-
],
|
|
634
|
-
"status": "measured",
|
|
635
|
-
"tree": {
|
|
636
|
-
"allocated_bytes": 8192,
|
|
637
|
-
"complete": true,
|
|
638
|
-
"digest": "5c606483a3e006929f2752dd445aa41aca7f78e74ff6c47f9f399af30d71f2c0",
|
|
639
|
-
"directories": 1,
|
|
640
|
-
"entries": 3,
|
|
641
|
-
"errors": [],
|
|
642
|
-
"files": 2,
|
|
643
|
-
"large_files": [],
|
|
644
|
-
"logical_bytes": 59,
|
|
645
|
-
"newest_mtime_ns": 1789375442778450031,
|
|
646
|
-
"root_identity": [
|
|
647
|
-
28,
|
|
648
|
-
1573099,
|
|
649
|
-
16877
|
|
650
|
-
],
|
|
651
|
-
"skipped_hardlinks": 0,
|
|
652
|
-
"skipped_links": 0,
|
|
653
|
-
"skipped_special": 0
|
|
654
|
-
}
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
"kind": "rustup-home",
|
|
658
|
-
"note": "Installed toolchains; remove by exact toolchain through rustup after checking pins.",
|
|
659
|
-
"path": "~/.rustup",
|
|
660
|
-
"risk": "R2",
|
|
661
|
-
"sources": [
|
|
662
|
-
"known default hypothesis; not proof of active use"
|
|
663
|
-
],
|
|
664
|
-
"status": "absent"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"kind": "go-workspace",
|
|
668
|
-
"note": "Can contain source code and installed tools, not a disposable cache.",
|
|
669
|
-
"path": "~/go",
|
|
670
|
-
"risk": "P",
|
|
671
|
-
"sources": [
|
|
672
|
-
"known default hypothesis; not proof of active use"
|
|
673
|
-
],
|
|
674
|
-
"status": "absent"
|
|
675
|
-
},
|
|
676
|
-
{
|
|
677
|
-
"kind": "uv-cache",
|
|
678
|
-
"note": "Use native uv cache commands after version verification; no automated moves.",
|
|
679
|
-
"path": "~/.cache/uv",
|
|
680
|
-
"risk": "R2",
|
|
681
|
-
"sources": [
|
|
682
|
-
"known default hypothesis; not proof of active use"
|
|
683
|
-
],
|
|
684
|
-
"status": "absent"
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"kind": "pnpm-store",
|
|
688
|
-
"note": "Version-dependent default hypothesis; use pnpm store path to establish actual location.",
|
|
689
|
-
"path": "~/.local/share/pnpm/store",
|
|
690
|
-
"risk": "R2",
|
|
691
|
-
"sources": [
|
|
692
|
-
"known default hypothesis; not proof of active use"
|
|
693
|
-
],
|
|
694
|
-
"status": "absent"
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
"kind": "npm-home",
|
|
698
|
-
"note": "May contain logs and other state; only _cacache can qualify for quarantine.",
|
|
699
|
-
"path": "~/.npm",
|
|
700
|
-
"risk": "R2",
|
|
701
|
-
"sources": [
|
|
702
|
-
"known default hypothesis; not proof of active use"
|
|
703
|
-
],
|
|
704
|
-
"status": "measured",
|
|
705
|
-
"tree": {
|
|
706
|
-
"allocated_bytes": 53248,
|
|
707
|
-
"complete": true,
|
|
708
|
-
"digest": "b9263cca5c14f63c9e19abcd8b3b1f763b158ab7b747dd2031131132808cb547",
|
|
709
|
-
"directories": 4,
|
|
710
|
-
"entries": 5,
|
|
711
|
-
"errors": [],
|
|
712
|
-
"files": 1,
|
|
713
|
-
"large_files": [],
|
|
714
|
-
"logical_bytes": 53248,
|
|
715
|
-
"newest_mtime_ns": 1789375442778450031,
|
|
716
|
-
"root_identity": [
|
|
717
|
-
28,
|
|
718
|
-
1573102,
|
|
719
|
-
16877
|
|
720
|
-
],
|
|
721
|
-
"skipped_hardlinks": 0,
|
|
722
|
-
"skipped_links": 0,
|
|
723
|
-
"skipped_special": 0
|
|
724
|
-
}
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
"kind": "nvm",
|
|
728
|
-
"note": "Version manager; includes per-version global packages.",
|
|
729
|
-
"path": "~/.nvm",
|
|
730
|
-
"risk": "R2",
|
|
731
|
-
"sources": [
|
|
732
|
-
"known default hypothesis; not proof of active use"
|
|
733
|
-
],
|
|
734
|
-
"status": "absent"
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
"kind": "volta",
|
|
738
|
-
"note": "Version manager data; do not move without documented migration.",
|
|
739
|
-
"path": "~/.volta",
|
|
740
|
-
"risk": "R2",
|
|
741
|
-
"sources": [
|
|
742
|
-
"known default hypothesis; not proof of active use"
|
|
743
|
-
],
|
|
744
|
-
"status": "absent"
|
|
745
|
-
},
|
|
746
|
-
{
|
|
747
|
-
"kind": "fnm",
|
|
748
|
-
"note": "Default hypothesis, verify with configuration.",
|
|
749
|
-
"path": "~/.local/share/fnm",
|
|
750
|
-
"risk": "R2",
|
|
751
|
-
"sources": [
|
|
752
|
-
"known default hypothesis; not proof of active use"
|
|
753
|
-
],
|
|
754
|
-
"status": "absent"
|
|
755
|
-
},
|
|
756
|
-
{
|
|
757
|
-
"kind": "mise",
|
|
758
|
-
"note": "Support and path semantics must be checked against installed version.",
|
|
759
|
-
"path": "~/.local/share/mise",
|
|
760
|
-
"risk": "R2",
|
|
761
|
-
"sources": [
|
|
762
|
-
"known default hypothesis; not proof of active use"
|
|
763
|
-
],
|
|
764
|
-
"status": "absent"
|
|
765
|
-
},
|
|
766
|
-
{
|
|
767
|
-
"kind": "asdf",
|
|
768
|
-
"note": "May contain plugins, shims and installed runtimes.",
|
|
769
|
-
"path": "~/.asdf",
|
|
770
|
-
"risk": "R2",
|
|
771
|
-
"sources": [
|
|
772
|
-
"known default hypothesis; not proof of active use"
|
|
773
|
-
],
|
|
774
|
-
"status": "absent"
|
|
775
|
-
},
|
|
776
|
-
{
|
|
777
|
-
"kind": "sdkman",
|
|
778
|
-
"note": "Not assumed to support native Windows; WSL is a separate environment.",
|
|
779
|
-
"path": "~/.sdkman",
|
|
780
|
-
"risk": "R2",
|
|
781
|
-
"sources": [
|
|
782
|
-
"known default hypothesis; not proof of active use"
|
|
783
|
-
],
|
|
784
|
-
"status": "absent"
|
|
785
|
-
},
|
|
786
|
-
{
|
|
787
|
-
"kind": "pyenv",
|
|
788
|
-
"note": "Interpreters and virtualenvs may have absolute prefix references.",
|
|
789
|
-
"path": "~/.pyenv",
|
|
790
|
-
"risk": "R2",
|
|
791
|
-
"sources": [
|
|
792
|
-
"known default hypothesis; not proof of active use"
|
|
793
|
-
],
|
|
794
|
-
"status": "absent"
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
"kind": "jdk-user",
|
|
798
|
-
"note": "Often IDE-managed; verify IDE ownership and project JDK pins.",
|
|
799
|
-
"path": "~/.jdks",
|
|
800
|
-
"risk": "R2",
|
|
801
|
-
"sources": [
|
|
802
|
-
"known default hypothesis; not proof of active use"
|
|
803
|
-
],
|
|
804
|
-
"status": "absent"
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
"kind": "bun",
|
|
808
|
-
"note": "Runtime and package state; not a pure cache.",
|
|
809
|
-
"path": "~/.bun",
|
|
810
|
-
"risk": "R2",
|
|
811
|
-
"sources": [
|
|
812
|
-
"known default hypothesis; not proof of active use"
|
|
813
|
-
],
|
|
814
|
-
"status": "absent"
|
|
815
|
-
},
|
|
816
|
-
{
|
|
817
|
-
"kind": "docker-user-state",
|
|
818
|
-
"note": "Configuration may include authentication and contexts; no content export or automated deletion.",
|
|
819
|
-
"path": "~/.docker",
|
|
820
|
-
"risk": "P",
|
|
821
|
-
"sources": [
|
|
822
|
-
"known default hypothesis; not proof of active use"
|
|
823
|
-
],
|
|
824
|
-
"status": "absent"
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"kind": "npm-content-cache",
|
|
828
|
-
"note": "Recreation may need network; metadata age does not prove disuse.",
|
|
829
|
-
"path": "~/.npm/_cacache",
|
|
830
|
-
"quarantine_action": "Q-b7c81bf877",
|
|
831
|
-
"risk": "R1",
|
|
832
|
-
"sources": [
|
|
833
|
-
"conservative default cache location"
|
|
834
|
-
],
|
|
835
|
-
"status": "measured",
|
|
836
|
-
"tree": {
|
|
837
|
-
"allocated_bytes": 53248,
|
|
838
|
-
"complete": true,
|
|
839
|
-
"digest": "514d4f6c2ee3e5ed673559ec2c88c303df5850560daa77a286934bc717025032",
|
|
840
|
-
"directories": 3,
|
|
841
|
-
"entries": 4,
|
|
842
|
-
"errors": [],
|
|
843
|
-
"files": 1,
|
|
844
|
-
"large_files": [],
|
|
845
|
-
"logical_bytes": 53248,
|
|
846
|
-
"newest_mtime_ns": 1785487442778673171,
|
|
847
|
-
"root_identity": [
|
|
848
|
-
28,
|
|
849
|
-
1573103,
|
|
850
|
-
16877
|
|
851
|
-
],
|
|
852
|
-
"skipped_hardlinks": 0,
|
|
853
|
-
"skipped_links": 0,
|
|
854
|
-
"skipped_special": 0
|
|
855
|
-
}
|
|
856
|
-
},
|
|
857
|
-
{
|
|
858
|
-
"kind": "pip-cache",
|
|
859
|
-
"note": "Recreation may need network; metadata age does not prove disuse.",
|
|
860
|
-
"path": "~/.cache/pip",
|
|
861
|
-
"quarantine_action": "Q-9c24086cc8",
|
|
862
|
-
"risk": "R1",
|
|
863
|
-
"sources": [
|
|
864
|
-
"conservative default cache location"
|
|
865
|
-
],
|
|
866
|
-
"status": "measured",
|
|
867
|
-
"tree": {
|
|
868
|
-
"allocated_bytes": 53248,
|
|
869
|
-
"complete": true,
|
|
870
|
-
"digest": "d14e66a524955e7050515bd1f5f9702f21ecd38c07b2243e009dc3464bc444ad",
|
|
871
|
-
"directories": 3,
|
|
872
|
-
"entries": 4,
|
|
873
|
-
"errors": [],
|
|
874
|
-
"files": 1,
|
|
875
|
-
"large_files": [],
|
|
876
|
-
"logical_bytes": 53248,
|
|
877
|
-
"newest_mtime_ns": 1785487442778930425,
|
|
878
|
-
"root_identity": [
|
|
879
|
-
28,
|
|
880
|
-
1573108,
|
|
881
|
-
16877
|
|
882
|
-
],
|
|
883
|
-
"skipped_hardlinks": 0,
|
|
884
|
-
"skipped_links": 0,
|
|
885
|
-
"skipped_special": 0
|
|
886
|
-
}
|
|
887
|
-
},
|
|
888
|
-
{
|
|
889
|
-
"kind": "go-build-cache",
|
|
890
|
-
"note": "Recreation may need network; metadata age does not prove disuse.",
|
|
891
|
-
"path": "~/.cache/go-build",
|
|
892
|
-
"quarantine_action": "Q-c7057cdfde",
|
|
893
|
-
"risk": "R1",
|
|
894
|
-
"sources": [
|
|
895
|
-
"conservative default cache location",
|
|
896
|
-
"process environment: GOCACHE"
|
|
897
|
-
],
|
|
898
|
-
"status": "measured",
|
|
899
|
-
"tree": {
|
|
900
|
-
"allocated_bytes": 53248,
|
|
901
|
-
"complete": true,
|
|
902
|
-
"digest": "52b757ef4e7bc65d2da7a7b05e85003431647d9eb2296d4ca6c59ee8e15a2a0c",
|
|
903
|
-
"directories": 2,
|
|
904
|
-
"entries": 3,
|
|
905
|
-
"errors": [],
|
|
906
|
-
"files": 1,
|
|
907
|
-
"large_files": [],
|
|
908
|
-
"logical_bytes": 53248,
|
|
909
|
-
"newest_mtime_ns": 1785487442779069900,
|
|
910
|
-
"root_identity": [
|
|
911
|
-
28,
|
|
912
|
-
1573112,
|
|
913
|
-
16877
|
|
914
|
-
],
|
|
915
|
-
"skipped_hardlinks": 0,
|
|
916
|
-
"skipped_links": 0,
|
|
917
|
-
"skipped_special": 0
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"kind": "jdk-install",
|
|
922
|
-
"note": "",
|
|
923
|
-
"path": "~/old-jdk",
|
|
924
|
-
"risk": "R2",
|
|
925
|
-
"sources": [
|
|
926
|
-
"process environment: JAVA_HOME"
|
|
927
|
-
],
|
|
928
|
-
"status": "absent"
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"kind": "project-artifact-node_modules",
|
|
932
|
-
"note": "Name is only a hint; may contain source, local-only data, editable installs or tracked outputs. Manual review only.",
|
|
933
|
-
"path": "~/Projects/example-web/node_modules",
|
|
934
|
-
"risk": "R2",
|
|
935
|
-
"sources": [
|
|
936
|
-
"authorized project inventory"
|
|
937
|
-
],
|
|
938
|
-
"status": "measured",
|
|
939
|
-
"tree": {
|
|
940
|
-
"allocated_bytes": 4096,
|
|
941
|
-
"complete": true,
|
|
942
|
-
"digest": "a02ee60d0e1f7226d173dfc51602fe3b19e491d8fba9a7094faf67abca6ca701",
|
|
943
|
-
"directories": 1,
|
|
944
|
-
"entries": 2,
|
|
945
|
-
"errors": [],
|
|
946
|
-
"files": 1,
|
|
947
|
-
"large_files": [],
|
|
948
|
-
"logical_bytes": 38,
|
|
949
|
-
"newest_mtime_ns": 1789375442779397649,
|
|
950
|
-
"root_identity": [
|
|
951
|
-
28,
|
|
952
|
-
1573122,
|
|
953
|
-
16877
|
|
954
|
-
],
|
|
955
|
-
"skipped_hardlinks": 0,
|
|
956
|
-
"skipped_links": 0,
|
|
957
|
-
"skipped_special": 0
|
|
958
|
-
}
|
|
959
|
-
}
|
|
960
|
-
],
|
|
961
|
-
"summary": {
|
|
962
|
-
"automated_permanent_deletion_candidates": 0,
|
|
963
|
-
"automated_quarantine_candidates": 3,
|
|
964
|
-
"findings": 6,
|
|
965
|
-
"immediately_reclaimable_bytes_proven": null,
|
|
966
|
-
"note": "Observed size is not reclaimable space. File IDs deduplicate measured hardlinks/overlaps; clones/compression/sparse/network identity remain uncertain.",
|
|
967
|
-
"observed_unique_logical_bytes": 178273
|
|
968
|
-
},
|
|
969
|
-
"tool_version": "1.0.0-candidate"
|
|
970
|
-
}
|