@datasynx/agentic-ai-cartography 0.9.0 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +3 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -80,9 +80,7 @@ Cartography runs natively on **Linux**, **macOS**, and **Windows** — no WSL re
80
80
  | **Database Discovery** | PostgreSQL, MySQL, MongoDB, Redis, SQLite file scan. Windows: `Get-Service` for DB engine detection |
81
81
  | **Cloud Scanning** | AWS (EC2/RDS/EKS/S3), GCP (Compute/GKE/Cloud Run), Azure (AKS/WebApps), Kubernetes |
82
82
  | **Human-in-the-Loop** | Chat with the agent mid-discovery: type `"hubspot windsurf"` to search for specific tools |
83
- | **SOP Generation** | Automatically generates Standard Operating Procedures from observed workflows |
84
- | **SOP Dashboard** | HTML dashboard with all SOPs, step details, frequency stats |
85
- | **Export Formats** | Mermaid topology, D3.js interactive graph, Backstage YAML, JSON, SOP Markdown |
83
+ | **Export Formats** | Mermaid topology, D3.js interactive graph, Backstage YAML, JSON |
86
84
  | **Safety First** | `PreToolUse` hook blocks all destructive commands — Unix AND PowerShell. 100% read-only |
87
85
 
88
86
  ---
@@ -162,7 +160,7 @@ Discovery pipeline (automatic, in order):
162
160
 
163
161
  ```
164
162
  datasynx-cartography export [session-id] [options]
165
- --format <fmt...> mermaid, json, yaml, html, sops (default: all)
163
+ --format <fmt...> mermaid, json, yaml, html, map (default: all)
166
164
  -o, --output <dir> Output directory
167
165
  datasynx-cartography show [session-id] Session details + node list
168
166
  datasynx-cartography sessions List all sessions
@@ -182,13 +180,7 @@ datasynx-output/
182
180
  ├── catalog-info.yaml Backstage service catalog
183
181
  ├── topology.mermaid Infrastructure topology (graph TB)
184
182
  ├── dependencies.mermaid Service dependencies (graph LR)
185
- ├── discovery.html Enterprise discovery frontend (Map + Topology)
186
- ├── sop-dashboard.html HTML dashboard with all SOPs + frequency stats
187
- ├── sops/
188
- │ ├── deploy-check.md
189
- │ └── db-migration.md
190
- └── workflows/
191
- └── workflow-001.mermaid
183
+ └── discovery.html Enterprise discovery frontend (Map + Topology)
192
184
  ```
193
185
 
194
186
  ---
@@ -198,7 +190,6 @@ datasynx-output/
198
190
  | Mode | Model | Interval | per Hour | per 8h Day |
199
191
  |------|-------|----------|----------|------------|
200
192
  | Discover | Sonnet | one-shot | $0.15–0.50 | one-shot |
201
- | SOP generation | Sonnet | one-shot | $0.01–0.03 | one-shot |
202
193
 
203
194
  ---
204
195
 
@@ -241,7 +232,6 @@ import {
241
232
  CartographyDB,
242
233
  runDiscovery,
243
234
  exportAll,
244
- exportSOPDashboard,
245
235
  safetyHook,
246
236
  defaultConfig,
247
237
  } from '@datasynx/agentic-ai-cartography';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datasynx/agentic-ai-cartography",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "AI-powered infrastructure cartography CLI — built on Claude Agent SDK",
5
5
  "type": "module",
6
6
  "bin": {