@asiflow/devcortex 0.1.1 → 0.1.3
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/dist/cli.js +90 -6
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +10816 -0
- package/dist/daemon.js.map +1 -0
- package/dist/dashboard/assets/index-B-tRqNIJ.css +1 -0
- package/dist/dashboard/assets/index-CwfdsV2P.js +53 -0
- package/dist/dashboard/assets/index-CwfdsV2P.js.map +1 -0
- package/dist/dashboard/index.html +20 -0
- package/package.json +5 -5
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en" data-theme="dark">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<meta name="color-scheme" content="dark" />
|
|
7
|
+
<meta name="robots" content="noindex" />
|
|
8
|
+
<meta
|
|
9
|
+
name="description"
|
|
10
|
+
content="DevCortex local dashboard — project cognition, ship-readiness, and evidence at a glance."
|
|
11
|
+
/>
|
|
12
|
+
<title>DevCortex · Local Dashboard</title>
|
|
13
|
+
<script type="module" crossorigin src="./assets/index-CwfdsV2P.js"></script>
|
|
14
|
+
<link rel="stylesheet" crossorigin href="./assets/index-B-tRqNIJ.css">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="root"></div>
|
|
18
|
+
<noscript>The DevCortex dashboard requires JavaScript to render the project cockpit.</noscript>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asiflow/devcortex",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
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
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -57,13 +57,13 @@
|
|
|
57
57
|
"typescript": "^5.7.2",
|
|
58
58
|
"vitest": "^2.1.8",
|
|
59
59
|
"zod": "^3.25.76",
|
|
60
|
-
"@devcortex/
|
|
61
|
-
"@devcortex/claude-code": "0.1.0",
|
|
60
|
+
"@devcortex/cursor": "0.1.0",
|
|
62
61
|
"@devcortex/codex": "0.1.0",
|
|
63
62
|
"@devcortex/vscode": "0.1.0",
|
|
64
|
-
"@devcortex/
|
|
63
|
+
"@devcortex/daemon": "0.1.0",
|
|
65
64
|
"@devcortex/github-actions": "0.1.0",
|
|
66
|
-
"@devcortex/
|
|
65
|
+
"@devcortex/claude-code": "0.1.0",
|
|
66
|
+
"@devcortex/core": "0.1.0"
|
|
67
67
|
},
|
|
68
68
|
"scripts": {
|
|
69
69
|
"build": "tsup",
|