arxo 0.1.0-beta.1 → 0.1.0-beta.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 CHANGED
@@ -4,6 +4,8 @@ Architecture analysis for AI-native codebases.
4
4
 
5
5
  Arxo analyzes the dependency graph and call patterns of your project and surfaces structural risks — circular dependencies, unsafe agent boundaries, and governance gaps in AI configurations.
6
6
 
7
+ <img src="./assets/scc.png" alt="Main screen — Strongly Connected Components report" height="400" />
8
+
7
9
  ## Public metrics
8
10
 
9
11
  | Metric | What it detects |
package/assets/scc.png ADDED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/bin/arxo.js CHANGED
@@ -37,7 +37,7 @@ if (has('--version') || has('-v')) {
37
37
  }
38
38
  if (has('--help') || has('-h')) {
39
39
  console.log(`
40
- arxo — architecture analysis (scc, agent_architecture, openclaw_architecture)
40
+ arxo — architecture analysis (scc, agent_architecture, openclaw_architecture, llm_integration)
41
41
 
42
42
  Usage:
43
43
  arxo analyze [path]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "arxo",
3
- "version": "0.1.0-beta.1",
4
- "description": "Architecture analysis CLI — scc, agent_architecture, openclaw_architecture for TypeScript and Python",
3
+ "version": "0.1.0-beta.3",
4
+ "description": "Architecture analysis CLI — scc, agent_architecture, openclaw_architecture, llm_integration for TypeScript and Python",
5
5
  "bin": {
6
6
  "arxo": "bin/arxo.js"
7
7
  },
@@ -9,7 +9,8 @@
9
9
  "bin",
10
10
  "scripts",
11
11
  "LICENSE",
12
- "README.md"
12
+ "README.md",
13
+ "assets"
13
14
  ],
14
15
  "scripts": {
15
16
  "postinstall": "node scripts/postinstall.js",