devcouncil 0.2.2 → 0.2.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/README.md +2 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -22,6 +22,8 @@ difference between unavailable evidence and a passing check.
|
|
|
22
22
|
|
|
23
23
|
**Manvi wraps these components** into a coding-agent harness (turn loop, providers, policy, TUI, `manvi serve`). **GitPulse** uses Manvi for policy, workbench, and agent hosting, and DevCouncil components for code intelligence and related analysis. DevCouncil does not replace coding agents; it sits beside Claude Code, Codex, Cursor, and others as selectable modules.
|
|
24
24
|
|
|
25
|
+

|
|
26
|
+
|
|
25
27
|
---
|
|
26
28
|
|
|
27
29
|
## Architecture & Components
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devcouncil",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Code intelligence and deterministic verification for AI coding agents: symbol-level code graph, blast radius, dead-code analysis, and MCP servers for Claude Code, Cursor, and Codex",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/bharathvbcr/DevCouncil#readme",
|
|
@@ -48,7 +48,10 @@
|
|
|
48
48
|
"smoke:registry": "node scripts/npm-registry-smoke.mjs",
|
|
49
49
|
"check:release": "node scripts/check-release.mjs",
|
|
50
50
|
"check:workflows": "node scripts/check-workflows.mjs",
|
|
51
|
-
"
|
|
51
|
+
"agents:sync": "node scripts/sync-agent-defs.mjs",
|
|
52
|
+
"agents:check": "node scripts/sync-agent-defs.mjs --check",
|
|
53
|
+
"agents:prefixes": "node scripts/mcp-served-tools.mjs",
|
|
54
|
+
"test:scripts": "node --test scripts/check-release.test.mjs scripts/check-workflows.test.mjs scripts/sync-agent-defs.test.mjs",
|
|
52
55
|
"ci:local": "node scripts/ci-local.mjs"
|
|
53
56
|
},
|
|
54
57
|
"engines": {
|