Add comprehensive skills and documentation for various technologies

This commit is contained in:
duthaho
2025-11-29 18:07:28 +07:00
commit ef96f165ef
60 changed files with 10538 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
# /security-scan - Security Scanning Command
## Purpose
Scan code and dependencies for security vulnerabilities.
## Usage
```
/security-scan [scope: deps | code | secrets | all]
```
---
Run security scan: **$ARGUMENTS**
## Workflow
### Dependency Scan
```bash
npm audit
pip-audit
```
### Code Scan
- SQL injection patterns
- XSS vulnerabilities
- Command injection
### Secret Detection
- API keys
- Passwords
- Tokens
## Output
```markdown
## Security Scan Results
### Summary
| Type | Critical | High | Medium |
|------|----------|------|--------|
| Dependencies | 0 | 2 | 5 |
| Code | 0 | 1 | 3 |
| Secrets | 0 | 0 | 0 |
### Findings
[Detailed findings with remediation]
```