@cleak/cli 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.
Files changed (5) hide show
  1. package/LICENSE +201 -0
  2. package/NOTICE +11 -0
  3. package/README.md +130 -0
  4. package/dist/cli.js +9280 -0
  5. package/package.json +68 -0
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@cleak/cli",
3
+ "version": "0.1.0",
4
+ "description": "Agentic terminal investigator for C/C++ memory leaks — MCP-driven static + dynamic (Valgrind/ASan/LSan) analysis with an LLM judge.",
5
+ "type": "module",
6
+ "license": "Apache-2.0",
7
+ "author": "Le Dang Dung <ledung.itsme@gmail.com>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/ledunguit/leak-investigator.git",
11
+ "directory": "apps/leak-inspector-tui"
12
+ },
13
+ "homepage": "https://github.com/ledunguit/leak-investigator/tree/master/apps/leak-inspector-tui#readme",
14
+ "bugs": "https://github.com/ledunguit/leak-investigator/issues",
15
+ "keywords": [
16
+ "memory-leak",
17
+ "cli",
18
+ "tui",
19
+ "c",
20
+ "cpp",
21
+ "valgrind",
22
+ "asan",
23
+ "lsan",
24
+ "static-analysis",
25
+ "mcp",
26
+ "agent",
27
+ "llm"
28
+ ],
29
+ "engines": {
30
+ "node": ">=18"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "LICENSE",
38
+ "NOTICE"
39
+ ],
40
+ "bin": {
41
+ "cleak": "dist/cli.js"
42
+ },
43
+ "main": "dist/cli.js",
44
+ "scripts": {
45
+ "tui": "bun src/cli.ts tui",
46
+ "scan": "bun src/cli.ts scan",
47
+ "tools": "bun src/cli.ts tools",
48
+ "eval": "bun src/cli.ts eval",
49
+ "build": "tsup",
50
+ "typecheck": "tsc --noEmit -p tsconfig.json",
51
+ "lint": "echo 'lint ok'",
52
+ "test": "bun test"
53
+ },
54
+ "dependencies": {
55
+ "@modelcontextprotocol/sdk": "^1.12.0",
56
+ "commander": "^12.1.0",
57
+ "ink": "^5.1.0",
58
+ "ink-text-input": "^6.0.0",
59
+ "react": "^18.3.1",
60
+ "uuid": "^14.0.0",
61
+ "zod": "^4.4.3"
62
+ },
63
+ "devDependencies": {
64
+ "@cleak/agent-core": "workspace:*",
65
+ "@cleak/common": "workspace:*",
66
+ "@types/react": "^18.3.12"
67
+ }
68
+ }