File tree Expand file tree Collapse file tree
.claude/skills/patch-cves Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,8 +29,9 @@ docker scout cves robusta:latest
2929pip-audit
3030safety check
3131
32- # Check for known vulnerabilities in pyproject.toml dependencies
32+ # Validate pyproject.toml metadata and lockfile consistency (does not perform vulnerability scanning)
3333poetry check
34+ # For CVE scanning of Python dependencies, use pip-audit, safety, or poetry-audit-plugin
3435```
3536
3637** What to extract:**
@@ -110,16 +111,15 @@ echo "Build successful"
110111``` bash
111112# Run basic smoke tests
112113pytest tests/ -v
113-
114+ ```
114115
115116✓ ** Dependency Check**
116117``` bash
117118# Verify no new vulnerabilities introduced
118119docker scout cves robusta:test --no-cache
119120
120- # Check Python dependencies still resolve correctly
121- poetry check
122- poetry lock --check
121+ # Validate pyproject.toml metadata and lockfile consistency
122+ poetry check --lock
123123```
124124
125125### 6. Documentation
You can’t perform that action at this time.
0 commit comments