cognium-ai 1.4.1 → 1.8.0
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 +8 -0
- package/dist/cli.js +561 -66
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +80 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +110 -0
- package/dist/config.js.map +1 -0
- package/dist/formatters.d.ts +2 -0
- package/dist/formatters.d.ts.map +1 -1
- package/dist/formatters.js +25 -7
- package/dist/formatters.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/args.d.ts.map +1 -1
- package/dist/utils/args.js +22 -1
- package/dist/utils/args.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -15,7 +15,15 @@ cognium-ai scan <path> # Scan for security vulnerabilities (LLM-enhanced
|
|
|
15
15
|
cognium-ai dead-code <path> # Detect dead/unreachable code
|
|
16
16
|
cognium-ai secrets <path> # Scan for secrets and credentials
|
|
17
17
|
cognium-ai health <path> # Calculate codebase health score
|
|
18
|
+
cognium-ai metrics <path> # Software metrics (CK suite, Halstead)
|
|
18
19
|
cognium-ai skill <path> # Analyze AI skill bundle security
|
|
20
|
+
cognium-ai trust <path> # Trust score (27 passes: supply chain, security, AI safety)
|
|
21
|
+
cognium-ai compare <A> <B> # Compare trust scores between two paths
|
|
22
|
+
cognium-ai quality <path> # Quality score (5 passes)
|
|
23
|
+
cognium-ai understand <path> # Semantic understanding (functions, roles, side effects)
|
|
24
|
+
cognium-ai spec-diff <path> # Spec-gap analysis (code vs spec alignment)
|
|
25
|
+
cognium-ai cluster <path> # Component clustering and architecture analysis
|
|
26
|
+
cognium-ai generate-spec <file> # Generate Specifica spec from code
|
|
19
27
|
cognium-ai init # Create configuration file
|
|
20
28
|
```
|
|
21
29
|
|