ai-dev-maintenance 0.1.0
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 +21 -0
- package/README.ja.md +94 -0
- package/README.md +124 -0
- package/SECURITY.md +17 -0
- package/dist/cli.d.ts +40 -0
- package/dist/cli.js +1115 -0
- package/examples/sample-report.json +30 -0
- package/package.json +55 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"toolVersion": "0.1.0",
|
|
4
|
+
"generatedAt": "2026-06-25T00:00:00.000Z",
|
|
5
|
+
"command": "fix --safe",
|
|
6
|
+
"status": "ok",
|
|
7
|
+
"redacted": true,
|
|
8
|
+
"target": {
|
|
9
|
+
"kind": "default-codex-log-db",
|
|
10
|
+
"pathCategory": "<home>/.codex/logs_2.sqlite"
|
|
11
|
+
},
|
|
12
|
+
"findings": {
|
|
13
|
+
"sqliteJson": {
|
|
14
|
+
"ok": true
|
|
15
|
+
},
|
|
16
|
+
"openHandles": {
|
|
17
|
+
"usable": true,
|
|
18
|
+
"openHandles": false,
|
|
19
|
+
"reason": "no open handles reported"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"metrics": {
|
|
23
|
+
"beforeWalBytes": 52428800,
|
|
24
|
+
"afterWalBytes": 0,
|
|
25
|
+
"reclaimedBytes": 52428800,
|
|
26
|
+
"mainDbForcedShrink": false
|
|
27
|
+
},
|
|
28
|
+
"blockedReasons": [],
|
|
29
|
+
"nextSafeAction": "Review the before/after metrics in the saved report."
|
|
30
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ai-dev-maintenance",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Safely diagnose and reclaim local disk usage from AI coding tool state.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"packageManager": "pnpm@10.34.4",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ai-dev-maintenance": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"README.ja.md",
|
|
14
|
+
"SECURITY.md",
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"examples"
|
|
17
|
+
],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=20"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"hygiene": "node scripts/public-hygiene.mjs",
|
|
26
|
+
"hygiene:package": "node scripts/public-hygiene.mjs --package",
|
|
27
|
+
"verify": "pnpm run typecheck && pnpm run test && pnpm run hygiene",
|
|
28
|
+
"release:check": "node scripts/release-check.mjs",
|
|
29
|
+
"release:check:prepublic": "node scripts/release-check.mjs --allow-missing-metadata",
|
|
30
|
+
"prepack": "corepack pnpm run verify && corepack pnpm run build && corepack pnpm run hygiene:package",
|
|
31
|
+
"prepublishOnly": "corepack pnpm run verify && corepack pnpm run build && corepack pnpm run hygiene:package && corepack pnpm run release:check"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"codex",
|
|
35
|
+
"sqlite",
|
|
36
|
+
"wal",
|
|
37
|
+
"macos",
|
|
38
|
+
"cli"
|
|
39
|
+
],
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/niconicotesla369/ai-dev-maintenance.git"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/niconicotesla369/ai-dev-maintenance/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/niconicotesla369/ai-dev-maintenance#readme",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^20.19.0",
|
|
51
|
+
"tsup": "^8.5.0",
|
|
52
|
+
"typescript": "^5.9.0",
|
|
53
|
+
"vitest": "^3.2.0"
|
|
54
|
+
}
|
|
55
|
+
}
|