agent-profiler 0.1.0 → 1.0.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/README.md +66 -0
- package/dist/cli.js +5 -4
- package/dist/commands/init.js +4 -0
- package/dist/commands/status.js +36 -9
- package/dist/core/db.js +164 -28
- package/dist/core/gitWorkspace.js +46 -5
- package/dist/core/packageMeta.js +20 -0
- package/dist/core/schema.sql +8 -0
- package/package.json +57 -3
- package/agent-profiler-0.1.0.tgz +0 -0
- package/docs/agent-profiler-mvp-handoff.md +0 -980
- package/google-home.png +0 -0
- package/src/adapters/codex.ts +0 -131
- package/src/adapters/cursor.ts +0 -115
- package/src/cli.ts +0 -109
- package/src/commands/auditContext.ts +0 -62
- package/src/commands/hook.ts +0 -104
- package/src/commands/init.ts +0 -324
- package/src/commands/last.ts +0 -326
- package/src/commands/status.ts +0 -345
- package/src/core/contextAudit.ts +0 -102
- package/src/core/db.ts +0 -491
- package/src/core/eventMetadata.ts +0 -184
- package/src/core/gitWorkspace.ts +0 -92
- package/src/core/normalize.ts +0 -29
- package/src/core/profile.ts +0 -35
- package/src/core/schema.sql +0 -56
- package/src/core/tokens.ts +0 -4
- package/src/types/better-sqlite3.d.ts +0 -26
- package/tsconfig.json +0 -15
package/package.json
CHANGED
|
@@ -1,15 +1,51 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-profiler",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Local-first profiling for AI coding agents.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent",
|
|
7
|
+
"profiler",
|
|
8
|
+
"cli",
|
|
9
|
+
"cursor",
|
|
10
|
+
"codex",
|
|
11
|
+
"telemetry",
|
|
12
|
+
"sqlite"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/cleverb/agent-profiler.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/cleverb/agent-profiler#readme",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/cleverb/agent-profiler/issues"
|
|
21
|
+
},
|
|
5
22
|
"type": "module",
|
|
23
|
+
"license": "MIT",
|
|
6
24
|
"bin": {
|
|
7
25
|
"agent-profiler": "./dist/cli.js"
|
|
8
26
|
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist/**/*",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE"
|
|
31
|
+
],
|
|
9
32
|
"scripts": {
|
|
10
33
|
"dev": "tsx src/cli.ts",
|
|
11
34
|
"build": "tsc && node --input-type=module -e \"import fs from 'node:fs'; fs.copyFileSync('src/core/schema.sql','dist/core/schema.sql'); try { fs.chmodSync('dist/cli.js', 0o755); } catch { /* non-Unix or read-only */ }\"",
|
|
12
|
-
"start": "node dist/cli.js"
|
|
35
|
+
"start": "node dist/cli.js",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
37
|
+
"format": "prettier --check . --ignore-unknown --ignore-path .gitignore",
|
|
38
|
+
"format:fix": "prettier --write . --ignore-unknown --ignore-path .gitignore",
|
|
39
|
+
"lint": "npm run typecheck",
|
|
40
|
+
"lint-staged": "lint-staged",
|
|
41
|
+
"smoke:cli": "node scripts/smoke-cli.js",
|
|
42
|
+
"pack:dry-run": "npm run build && npm pack --dry-run --ignore-scripts",
|
|
43
|
+
"prepare": "husky",
|
|
44
|
+
"prepublishOnly": "npm run build && node scripts/prepublish-checks.js",
|
|
45
|
+
"prerelease": "npm run build && node scripts/prepublish-checks.js",
|
|
46
|
+
"release": "npm run build && semantic-release",
|
|
47
|
+
"release:canary": "npm run build && npm_config_provenance=true auto canary",
|
|
48
|
+
"adr-skill": "node .agents/skills/adr-agent-skill/bin/cli.cjs"
|
|
13
49
|
},
|
|
14
50
|
"dependencies": {
|
|
15
51
|
"better-sqlite3": "^12.9.0",
|
|
@@ -19,8 +55,26 @@
|
|
|
19
55
|
"node": ">=22"
|
|
20
56
|
},
|
|
21
57
|
"devDependencies": {
|
|
58
|
+
"@commitlint/config-conventional": "^21.0.1",
|
|
59
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
60
|
+
"@semantic-release/github": "^12.0.8",
|
|
61
|
+
"@semantic-release/npm": "^13.1.5",
|
|
62
|
+
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
22
63
|
"@types/node": "^22.0.0",
|
|
64
|
+
"auto": "^11.3.6",
|
|
65
|
+
"boxen": "^8.0.1",
|
|
66
|
+
"commitlint": "^21.0.1",
|
|
67
|
+
"husky": "^9.1.7",
|
|
68
|
+
"lint-staged": "^16.4.0",
|
|
69
|
+
"prettier": "^3.8.3",
|
|
70
|
+
"semantic-release": "^25.0.3",
|
|
23
71
|
"tsx": "^4.0.0",
|
|
24
|
-
"typescript": "^5.0.0"
|
|
72
|
+
"typescript": "^5.0.0",
|
|
73
|
+
"zx": "^8.8.5"
|
|
74
|
+
},
|
|
75
|
+
"publishConfig": {
|
|
76
|
+
"access": "public",
|
|
77
|
+
"provenance": true,
|
|
78
|
+
"registry": "https://registry.npmjs.org/"
|
|
25
79
|
}
|
|
26
80
|
}
|
package/agent-profiler-0.1.0.tgz
DELETED
|
Binary file
|