Skip to content

Commit 0f72094

Browse files
committed
Patch cves
1 parent bc6da23 commit 0f72094

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.claude/skills/patch-cves/SKILL.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ docker scout cves robusta:latest
2929
pip-audit
3030
safety check
3131

32-
# Check for known vulnerabilities in pyproject.toml dependencies
32+
# Validate pyproject.toml metadata and lockfile consistency (does not perform vulnerability scanning)
3333
poetry 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
112113
pytest tests/ -v
113-
114+
```
114115

115116
**Dependency Check**
116117
```bash
117118
# Verify no new vulnerabilities introduced
118119
docker 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

0 commit comments

Comments
 (0)