Loading...
Loading...
Three-layer security ecosystem for Agent Platforms covering pre-deployment skill auditing, real-time message protection (adaptive-guard), and continuous adaptive defense. Coordinates security-auditor and adaptive-guard. Trigger on 'security ecosystem', 'agent security', 'skill protection', or 'runtime defense'.
npx skill4agent add fatih-developer/fth-skills ecosystem-securityPRE-DEPLOYMENT RUNTIME LEARNING
────────────── ───────────── ──────────
security-auditor → adaptive-guard → Rule engine
│ │ update
│ Audit │ K0-K4 │
│ Trust Score │ Gradual filter │ async
│ Guard rules │ LLM Judge │
▼ ▼ ▼
security-report.md guard-decision.json learned-rules.md
trust-score.md incident-report.md guard-metrics.md| security-auditor | adaptive-guard | |
|---|---|---|
| security-auditor | — | Feeds Guard rules |
| adaptive-guard | Sends rule updates | — |
security-auditor audit output
→ trust-score.md (used by adaptive-guard as trust threshold)
→ security-report.md (added to adaptive-guard K1 rules)
adaptive-guard attack detection
→ incident-report.md (appended to security-auditor's next audit)
→ learned-rules.md (feedback loop to K1 static rules)| Platform | security-auditor | adaptive-guard |
|---|---|---|
| Claude Code / claude.ai | ✅ Full | ✅ Full |
| Telegram Agent | ✅ Audit | ✅ K0-K3 |
| WhatsApp Agent | ✅ Audit | ✅ K0-K3 |
| CI/CD Pipeline | ✅ Audit | ⚠️ K0-K1 (speed-focused) |
| Local Dev | ✅ Full | ✅ K0-K2 (ML optional) |
/security-ecosystem → Full ecosystem
@ecosystem-security → Triggers the orchestrator
Automatic triggers:
When a new skill is added → security-auditor (Audit + Trust)
When a message arrives → adaptive-guard (always)
When a skill is updated → security-auditor (re-audit)
When an attack is detected → Both (incident + rule update)start_point: security-auditor
runtime_skill: adaptive-guard
always_active: [adaptive-guard]
pre_deploy_mandatory: [security-auditor]
can_run_parallel: false # dependent on each other, sequential
security_level: critical
performance_impact: low # 50ms target| Skill | Priority | Status |
|---|---|---|
| skill-integrity-checker | High | Planned |
| content-sanitizer | High | Planned |
| tool-call-auditor | Medium | Planned |
| behavioral-baseline | Medium | Research |
| chain-shadow-detector | Low | Research |