devbrain-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.
- package/LICENSE +21 -0
- package/README.md +26 -0
- package/dist/bin.d.ts +2 -0
- package/dist/bin.js +48 -0
- package/dist/commands/context.command.d.ts +16 -0
- package/dist/commands/context.command.js +36 -0
- package/dist/commands/init.command.d.ts +16 -0
- package/dist/commands/init.command.js +57 -0
- package/dist/commands/learn.command.d.ts +17 -0
- package/dist/commands/learn.command.js +72 -0
- package/dist/pipeline/command.pipeline.d.ts +28 -0
- package/dist/pipeline/command.pipeline.js +65 -0
- package/dist/ui/logger.d.ts +13 -0
- package/dist/ui/logger.js +31 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzer.interface.d.ts +10 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzer.interface.js +2 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzer.registry.d.ts +20 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzer.registry.js +67 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/build-gradle.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/build-gradle.analyzer.js +53 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/docker.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/docker.analyzer.js +38 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/git.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/git.analyzer.js +54 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/package-json.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/package-json.analyzer.js +72 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/pom-xml.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/pom-xml.analyzer.js +70 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/readme.analyzer.d.ts +17 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/readme.analyzer.js +65 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/requirements-txt.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/requirements-txt.analyzer.js +62 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/tsconfig.analyzer.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/analysis/analyzers/tsconfig.analyzer.js +47 -0
- package/node_modules/@devbrain/core/dist/analysis/scanner.d.ts +21 -0
- package/node_modules/@devbrain/core/dist/analysis/scanner.js +81 -0
- package/node_modules/@devbrain/core/dist/context/context.service.d.ts +17 -0
- package/node_modules/@devbrain/core/dist/context/context.service.js +72 -0
- package/node_modules/@devbrain/core/dist/filesystem/filesystem.service.d.ts +29 -0
- package/node_modules/@devbrain/core/dist/filesystem/filesystem.service.js +87 -0
- package/node_modules/@devbrain/core/dist/index.d.ts +14 -0
- package/node_modules/@devbrain/core/dist/index.js +16 -0
- package/node_modules/@devbrain/core/dist/memory/memory.service.d.ts +19 -0
- package/node_modules/@devbrain/core/dist/memory/memory.service.js +158 -0
- package/node_modules/@devbrain/core/package.json +22 -0
- package/node_modules/@devbrain/shared/dist/constants.d.ts +6 -0
- package/node_modules/@devbrain/shared/dist/constants.js +15 -0
- package/node_modules/@devbrain/shared/dist/errors.d.ts +38 -0
- package/node_modules/@devbrain/shared/dist/errors.js +64 -0
- package/node_modules/@devbrain/shared/dist/index.d.ts +3 -0
- package/node_modules/@devbrain/shared/dist/index.js +4 -0
- package/node_modules/@devbrain/shared/dist/types.d.ts +52 -0
- package/node_modules/@devbrain/shared/dist/types.js +2 -0
- package/node_modules/@devbrain/shared/package.json +14 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "devbrain-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Offline-first CLI tool providing persistent, deterministic project memory for AI assistants.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"devbrain",
|
|
7
|
+
"cli",
|
|
8
|
+
"ai",
|
|
9
|
+
"context",
|
|
10
|
+
"memory",
|
|
11
|
+
"offline"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/CodeItAlone/devbrain#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/CodeItAlone/devbrain/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/CodeItAlone/devbrain.git"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": "Subrato Kundu (https://github.com/CodeItAlone/devbrain)",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "./dist/bin.js",
|
|
25
|
+
"types": "./dist/bin.d.ts",
|
|
26
|
+
"bin": {
|
|
27
|
+
"devbrain": "dist/bin.js"
|
|
28
|
+
},
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": "./dist/bin.js",
|
|
32
|
+
"types": "./dist/bin.d.ts"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"!dist/**/*.map",
|
|
38
|
+
"README.md",
|
|
39
|
+
"LICENSE"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsc --build",
|
|
46
|
+
"prepack": "node ../../scripts/prepare-cli.js"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@devbrain/core": "^0.1.0",
|
|
50
|
+
"@devbrain/shared": "^0.1.0",
|
|
51
|
+
"commander": "^12.0.0",
|
|
52
|
+
"chalk": "^5.3.0",
|
|
53
|
+
"ora": "^8.0.1",
|
|
54
|
+
"fast-glob": "^3.3.2",
|
|
55
|
+
"fast-xml-parser": "^5.9.3",
|
|
56
|
+
"simple-git": "^3.23.0"
|
|
57
|
+
},
|
|
58
|
+
"bundleDependencies": [
|
|
59
|
+
"@devbrain/core",
|
|
60
|
+
"@devbrain/shared"
|
|
61
|
+
],
|
|
62
|
+
"publishConfig": {
|
|
63
|
+
"access": "public"
|
|
64
|
+
}
|
|
65
|
+
}
|