Control plane for SkillOS projects. Audits security, scores agents, proposes controlled evolution, and manages lifecycle (merge, deprecate, delete) of agents and memory.
Part of the Evolving Agents ecosystem.
/plugin install /path/to/skillos_systemcontrol_plugin/skillos-systemcontrol-plugin# Full health check on a project
/sysctl "audit and score all agents in Project_quantum"
# Security scan
/sysctl "scan Project_webapp for security vulnerabilities"
# Score and rank agents
/sysctl "score agents in Project_pipeline"
# Propose improvements for underperformers
/sysctl "evolve low-scoring agents in Project_quantum"
# Identify dead agents and compact memory
/sysctl "prune and compact Project_old"
# Full maintenance pass
/sysctl "full maintenance on all projects"/sysctl operates on projects/ created by /skillos. It never modifies agent files directly — it produces reports and proposals for human approval.
Modes: AUDIT | SCORE | EVOLVE | PRUNE | COMPACT | REPORT
Agents:
SystemAgent— orchestrates control operationsSecurityAuditAgent— scans for prompt injection, path traversal, overpermissive toolsPerformanceScorecardAgent— scores agents using 7-type failure taxonomyEvolutionControlAgent— proposes minimal changes with anti-overfitting gateLifecycleManagerAgent— handles deprecation, merge, deletion with cascading reference validation
System specs: SecurityFramework | ScoringRubric | EvolutionProtocol | LifecycleProtocol
Anti-Overfitting Gate: Every proposed change must pass: "If the failures that motivated this change disappeared, would it still be a good change?" YES = approve, NO = reject.
7-Type Failure Taxonomy: INSTRUCTION_AMBIGUITY, MISSING_TOOL, PATTERN_MISMATCH, MISSING_RECOVERY, CONTEXT_OVERLOAD, STALE_ASSUMPTION, UNDERSPECIFIED_OUTPUT.
Cascading Prune-and-Verify: Before deleting anything, scan all references, classify as routing-critical vs doc-debt, update all critical refs, then delete.
Minimal Surface Edits: Instruction clarification > tool addition > recovery rule > output contract > path update > checkpoint guidance.
This plugin works alongside skillos-plugin:
/skilloscreates agents and executes goals/sysctlevaluates, scores, evolves, and maintains what/skillosbuilt
Apache 2.0