@prodcycle/prodcycle 0.4.0 → 0.4.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 +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,15 +32,21 @@ npm install @prodcycle/prodcycle
|
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
# Scan current directory against SOC 2 and HIPAA
|
|
35
|
-
prodcycle . --framework soc2,hipaa
|
|
35
|
+
prodcycle scan . --framework soc2,hipaa
|
|
36
36
|
|
|
37
37
|
# Output as SARIF for GitHub Code Scanning
|
|
38
|
-
prodcycle . --framework soc2 --format sarif --output results.sarif
|
|
38
|
+
prodcycle scan . --framework soc2 --format sarif --output results.sarif
|
|
39
39
|
|
|
40
40
|
# Set severity threshold (only report HIGH and above)
|
|
41
|
-
prodcycle . --framework hipaa --severity-threshold high
|
|
41
|
+
prodcycle scan . --framework hipaa --severity-threshold high
|
|
42
|
+
|
|
43
|
+
# Auto-configure compliance hooks/instructions for your coding agents
|
|
44
|
+
# (Claude Code, Cursor, Codex, OpenCode, GitHub Copilot, Gemini CLI)
|
|
45
|
+
prodcycle init --agent all
|
|
42
46
|
```
|
|
43
47
|
|
|
48
|
+
Subcommands: `scan` (full repo scan), `gate` (JSON payload from stdin), `hook` (coding-agent post-edit hook), `init` (agent setup).
|
|
49
|
+
|
|
44
50
|
### Programmatic API
|
|
45
51
|
|
|
46
52
|
```typescript
|
package/package.json
CHANGED