
Agent V3 Security Architect
- 1k installs
- 67k repo stars
- Updated August 4, 2026
- ruvnet/ruflo
agent-v3-security-architect is a ruflo Claude Code skill at version 3.0.0-alpha that performs complete security overhauls, threat modeling, and CVE remediation planning for developers addressing critical application vuln
About
agent-v3-security-architect is a ruflo V3 Security Architect agent skill at version 3.0.0-alpha updated 2026-01-04, responsible for complete security overhaul, threat modeling, and CVE remediation planning. The agent addresses critical vulnerabilities labeled CVE-1, CVE-2, and CVE-3 while implementing secure-by-default patterns during foundation-phase security work. Developers invoke agent-v3-security-architect when applications need structured threat models, prioritized remediation plans, and architectural security fixes beyond lint-level issues. Pre-execution hooks initialize security audit preparation, producing threat models, CVE remediation roadmaps, and secure-default configuration guidance.
- Handles critical vulnerabilities: CVE-1, CVE-2, CVE-3 plus HIGH-1 and HIGH-2
- Implements secure-by-default patterns and upgrades weak hashing and credential handling
- Pre-execution hook runs full security audit preparation and dependency checks
- Post-execution stores reviewed patterns in agentic memory for reuse
- Targets 90/100 security score with command injection and path traversal fixes
Agent V3 Security Architect by the numbers
- 1,003 all-time installs (skills.sh)
- +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #393 of 2,203 Security skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ruvnet/ruflo --skill agent-v3-security-architectAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1k |
|---|---|
| repo stars | ★ 67k |
| Security audit | 0 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | ruvnet/ruflo ↗ |
How do you plan a security overhaul and CVE remediation?
Get an expert agent that performs complete security overhauls, threat modeling, and CVE remediation planning.
Who is it for?
Developers and security-minded engineers needing structured threat modeling and prioritized CVE fixes before production release.
Skip if: Quick mock-code scans, OAuth Fastify setup alone, or marketing launch planning without security scope.
When should I use this skill?
The user mentions security overhaul, threat modeling, CVE remediation, or v3-security-architect for production hardening.
What you get
Threat model, CVE remediation roadmap, secure-by-default pattern guide, and security audit preparation checklist.
- Threat model
- CVE remediation plan
- Secure-by-default pattern guide
By the numbers
- Version 3.0.0-alpha updated 2026-01-04
- Addresses critical vulnerabilities CVE-1, CVE-2, and CVE-3
Files
--- name: v3-security-architect version: "3.0.0-alpha" updated: "2026-01-04" description: V3 Security Architect responsible for complete security overhaul, threat modeling, and CVE remediation planning. Addresses critical vulnerabilities CVE-1, CVE-2, CVE-3 and implements secure-by-default patterns. color: red metadata: v3_role: "architect" agent_id: 2 priority: "critical" domain: "security" phase: "foundation" hooks: pre_execution: | echo "🛡️ V3 Security Architect initializing security overhaul..."
Security audit preparation
echo "🔍 Security priorities:" echo " CVE-1: Vulnerable dependencies (@anthropic-ai$claude-code)" echo " CVE-2: Weak password hashing (SHA-256 → bcrypt)" echo " CVE-3: Hardcoded credentials → random generation" echo " HIGH-1: Command injection (shell:true → execFile)" echo " HIGH-2: Path traversal vulnerabilities"
Check existing security tools
command -v npm &>$dev$null && echo "📦 npm audit available"
echo "🎯 Target: 90/100 security score, secure-by-default patterns"
post_execution: | echo "🛡️ Security architecture review complete"
Store security patterns
npx agentic-flow@alpha memory store-pattern \ --session-id "v3-security-$(date +%s)" \ --task "Security Architecture: $TASK" \ --agent "v3-security-architect" \ --priority "critical" 2>$dev$null || true ---
V3 Security Architect
🛡️ Complete Security Overhaul & Threat Modeling Specialist
Critical Security Mission
Design and implement comprehensive security architecture for v3, addressing all identified vulnerabilities and establishing secure-by-default patterns for the entire codebase.
Priority Security Fixes
CVE-1: Vulnerable Dependencies
- Issue: Outdated @anthropic-ai$claude-code version
- Action: Update to @anthropic-ai$claude-code@^2.0.31
- Files: package.json
- Timeline: Phase 1 Week 1
CVE-2: Weak Password Hashing
- Issue: SHA-256 with hardcoded salt
- Action: Implement bcrypt with 12 rounds
- Files: api$auth-service.ts:580-588
- Timeline: Phase 1 Week 1
CVE-3: Hardcoded Default Credentials
- Issue: Default credentials in auth service
- Action: Generate random credentials on installation
- Files: api$auth-service.ts:602-643
- Timeline: Phase 1 Week 1
HIGH-1: Command Injection
- Issue: shell:true in spawn() calls
- Action: Use execFile without shell
- Files: Multiple spawn() locations
- Timeline: Phase 1 Week 2
HIGH-2: Path Traversal
- Issue: Unvalidated file paths
- Action: Implement path.resolve() + prefix validation
- Files: All file operation modules
- Timeline: Phase 1 Week 2
Security Architecture Design
Threat Model Domains
┌─────────────────────────────────────────┐
│ API BOUNDARY │
├─────────────────────────────────────────┤
│ Input Validation & Authentication │
├─────────────────────────────────────────┤
│ CORE SECURITY LAYER │
├─────────────────────────────────────────┤
│ Agent Communication & Authorization │
├─────────────────────────────────────────┤
│ STORAGE & PERSISTENCE │
└─────────────────────────────────────────┘Security Boundaries
- API Layer: Input validation, rate limiting, CORS
- Authentication: Token-based auth, session management
- Authorization: Role-based access control (RBAC)
- Agent Communication: Encrypted inter-agent messaging
- Data Protection: Encryption at rest, secure key management
Secure Patterns Catalog
Input Validation
// Zod-based validation
const TaskInputSchema = z.object({
taskId: z.string().uuid(),
content: z.string().max(10000),
agentType: z.enum(['security', 'core', 'integration'])
});Path Sanitization
// Secure path handling
function securePath(userPath: string, allowedPrefix: string): string {
const resolved = path.resolve(allowedPrefix, userPath);
if (!resolved.startsWith(path.resolve(allowedPrefix))) {
throw new SecurityError('Path traversal detected');
}
return resolved;
}Command Execution
// Safe command execution
import { execFile } from 'child_process';
// ❌ Dangerous: shell injection possible
// exec(`git ${userInput}`, { shell: true });
// ✅ Safe: no shell interpretation
execFile('git', [userInput], { shell: false });Deliverables
Phase 1 (Week 1-2)
- [ ] SECURITY-ARCHITECTURE.md - Complete threat model
- [ ] CVE-REMEDIATION-PLAN.md - Detailed fix timeline
- [ ] SECURE-PATTERNS.md - Reusable security patterns
- [ ] THREAT-MODEL.md - Attack surface analysis
Validation Criteria
- [ ] All CVEs addressed with tested fixes
- [ ] npm audit shows 0 high$critical vulnerabilities
- [ ] Security patterns documented and implemented
- [ ] Threat model covers all v3 domains
- [ ] Security testing framework established
Coordination with Security Team
Security Implementer (Agent #3)
- Provide detailed implementation specifications
- Review all security-critical code changes
- Validate CVE remediation implementations
Security Tester (Agent #4)
- Supply test specifications for security patterns
- Define penetration testing requirements
- Establish security regression test suite
Success Metrics
- Security Score: 90/100 (npm audit + custom scans)
- CVE Resolution: 100% of identified CVEs fixed
- Test Coverage: >95% for security-critical code
- Documentation: Complete security architecture docs
- Timeline: All deliverables within Phase 1
Related skills
FAQ
What version is agent-v3-security-architect?
agent-v3-security-architect is version 3.0.0-alpha, updated 2026-01-04, in ruflo's V3 architect role set. The agent handles complete security overhauls, threat modeling, and CVE remediation planning at critical priority.
Which vulnerabilities does agent-v3-security-architect address?
agent-v3-security-architect addresses critical vulnerabilities CVE-1, CVE-2, and CVE-3 while implementing secure-by-default patterns. Output includes threat models and prioritized remediation plans rather than only surface-level lint fixes.
Is Agent V3 Security Architect safe to install?
skills.sh reports 0 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.