@aiready/cli 0.15.0 → 0.15.2
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 +10 -8
- package/dist/cli.js +194 -276
- package/dist/cli.mjs +183 -269
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ AIReady helps teams **assess, visualize, and prepare** repositories for better A
|
|
|
52
52
|
- **Documentation Drift** - Track documentation freshness vs code churn
|
|
53
53
|
- **Testability Assessment** - Measure code testability for AI agents
|
|
54
54
|
- **Agent Grounding** - Evaluate how well code aids AI agents
|
|
55
|
+
- **Contract Enforcement** - Measure structural type safety and boundary validation
|
|
55
56
|
- **Interactive Visualization** - Generate force-directed graph visualizations
|
|
56
57
|
- **CI/CD Integration** - Quality gates for AI readiness in your pipeline
|
|
57
58
|
|
|
@@ -75,6 +76,7 @@ aiready scan . --threshold 70
|
|
|
75
76
|
| `aiready context` | Analyze context window cost & dependencies |
|
|
76
77
|
| `aiready consistency` | Check naming conventions |
|
|
77
78
|
| `aiready testability` | Assess code testability |
|
|
79
|
+
| `aiready contract` | Analyze structural type safety & contracts |
|
|
78
80
|
| `aiready visualize` | Generate interactive visualizations |
|
|
79
81
|
| `aiready upload` | Upload results to AIReady platform |
|
|
80
82
|
|
|
@@ -166,14 +168,14 @@ Create an `aiready.json` config file:
|
|
|
166
168
|
│
|
|
167
169
|
▼
|
|
168
170
|
🎛️ @aiready/cli (orchestrator)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
171
|
+
│ │ │ │ │ │ │ │ │ │
|
|
172
|
+
▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼ ▼
|
|
173
|
+
[PAT] [CTX] [CON] [AMP] [DEP] [DOC] [SIG] [AGT] [TST] [CTR]
|
|
174
|
+
│ │ │ │ │ │ │ │ │ │
|
|
175
|
+
└─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘
|
|
176
|
+
│
|
|
177
|
+
▼
|
|
178
|
+
🏢 @aiready/core
|
|
177
179
|
```
|
|
178
180
|
|
|
179
181
|
## 🤝 Contributing
|