@asiflow/devcortex 0.1.1
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 +201 -0
- package/README.md +32 -0
- package/dist/cli.js +37794 -0
- package/dist/cli.js.map +1 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@asiflow/devcortex",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "The cognitive layer for AI coding agents — evidence-backed ship reports, blast-radius protection, and persistent project memory. Works with Claude Code, Codex, Cursor, and any MCP client.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"devcortex": "./dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/asiflow/DevCortex.git",
|
|
21
|
+
"directory": "apps/cli"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/asiflow/DevCortex#readme",
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/asiflow/DevCortex/issues"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"ai",
|
|
29
|
+
"coding-agent",
|
|
30
|
+
"claude-code",
|
|
31
|
+
"cursor",
|
|
32
|
+
"codex",
|
|
33
|
+
"mcp",
|
|
34
|
+
"code-review",
|
|
35
|
+
"quality-gate",
|
|
36
|
+
"evidence",
|
|
37
|
+
"developer-tools",
|
|
38
|
+
"llm",
|
|
39
|
+
"ci"
|
|
40
|
+
],
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"chokidar": "^4.0.3",
|
|
46
|
+
"es-module-lexer": "^1.5.4",
|
|
47
|
+
"fast-glob": "^3.3.2",
|
|
48
|
+
"picomatch": "^4.0.2",
|
|
49
|
+
"yaml": "^2.9.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^22.10.2",
|
|
53
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
54
|
+
"commander": "^15.0.0",
|
|
55
|
+
"picocolors": "^1.1.1",
|
|
56
|
+
"tsup": "^8.3.5",
|
|
57
|
+
"typescript": "^5.7.2",
|
|
58
|
+
"vitest": "^2.1.8",
|
|
59
|
+
"zod": "^3.25.76",
|
|
60
|
+
"@devcortex/core": "0.1.0",
|
|
61
|
+
"@devcortex/claude-code": "0.1.0",
|
|
62
|
+
"@devcortex/codex": "0.1.0",
|
|
63
|
+
"@devcortex/vscode": "0.1.0",
|
|
64
|
+
"@devcortex/cursor": "0.1.0",
|
|
65
|
+
"@devcortex/github-actions": "0.1.0",
|
|
66
|
+
"@devcortex/daemon": "0.1.0"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsup",
|
|
70
|
+
"dev": "tsup --watch",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"lint": "eslint src",
|
|
73
|
+
"test": "vitest run",
|
|
74
|
+
"test:coverage": "vitest run --coverage",
|
|
75
|
+
"test:watch": "vitest"
|
|
76
|
+
}
|
|
77
|
+
}
|