seaworthycode 1.0.0 → 1.1.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.
- package/README.md +7 -7
- package/dist/index.js +15131 -80
- package/dist/index.js.map +1 -1
- package/package.json +19 -10
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# seaworthycode
|
|
2
2
|
|
|
3
3
|
The CLI distribution surface for Seaworthy. Thin wrapper around `@seaworthy/core`.
|
|
4
4
|
|
|
@@ -6,22 +6,22 @@ The CLI distribution surface for Seaworthy. Thin wrapper around `@seaworthy/core
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Scan current directory
|
|
9
|
-
npx
|
|
9
|
+
npx seaworthycode .
|
|
10
10
|
|
|
11
11
|
# Scan specific directory
|
|
12
|
-
npx
|
|
12
|
+
npx seaworthycode /path/to/project
|
|
13
13
|
|
|
14
14
|
# Output JSON
|
|
15
|
-
npx
|
|
15
|
+
npx seaworthycode --json /path/to/project
|
|
16
16
|
|
|
17
17
|
# Write HTML report
|
|
18
|
-
npx
|
|
18
|
+
npx seaworthycode --output report.html /path/to/project
|
|
19
19
|
|
|
20
20
|
# Override tier
|
|
21
|
-
npx
|
|
21
|
+
npx seaworthycode --tier free /path/to/project
|
|
22
22
|
|
|
23
23
|
# Use a specific provider (e.g. Kimi, DeepSeek, Ollama)
|
|
24
|
-
npx
|
|
24
|
+
npx seaworthycode --provider kimi /path/to/project
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
## Flags
|