shingan-lint 0.8.6 → 0.9.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 +14 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,18 +3,26 @@
|
|
|
3
3
|
> AI Agent Workflow Static Analyzer — `npx`-installable wrapper for [Shingan](https://github.com/hatyibei/shingan).
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
#
|
|
7
|
-
npx shingan-lint
|
|
6
|
+
# 30-second smoke test — no input file needed
|
|
7
|
+
npx --yes shingan-lint demo
|
|
8
8
|
|
|
9
|
-
#
|
|
9
|
+
# Analyze your own JSON workflow
|
|
10
|
+
npx --yes shingan-lint analyze --input workflow.json --output markdown
|
|
11
|
+
|
|
12
|
+
# Analyze ADK-Go agents
|
|
13
|
+
npx --yes shingan-lint analyze --format adk-go --input ./agents/
|
|
14
|
+
|
|
15
|
+
# Project-local install
|
|
10
16
|
pnpm add -D shingan-lint
|
|
11
|
-
pnpm exec shingan
|
|
17
|
+
pnpm exec shingan demo
|
|
12
18
|
|
|
13
|
-
#
|
|
19
|
+
# Global install
|
|
14
20
|
npm install -g shingan-lint
|
|
15
|
-
shingan
|
|
21
|
+
shingan demo
|
|
16
22
|
```
|
|
17
23
|
|
|
24
|
+
Run `shingan --help` (or `npx shingan-lint --help`) to see every command and flag with copy-paste examples.
|
|
25
|
+
|
|
18
26
|
## What it does
|
|
19
27
|
|
|
20
28
|
Shingan detects 20 classes of design-time bugs in AI agent workflows **before they ship**:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shingan-lint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "AI Agent Workflow Static Analyzer — detect infinite loops, cost explosions, PII leaks, prompt injection sinks before execution. CLI wrapper that downloads the platform-specific Go binary from GitHub Releases.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agent",
|