aeo-core
Installation
SKILL.md
AEO Core - Confidence Engine
Purpose: Calculate confidence scores (0-1) and decide whether to execute autonomously or involve the human.
Activation
Loads when user types /aeo in Claude Code.
Confidence Calculation
Phase 0: Spec Validation (First Gate)
// Invoke spec-validator to check if task is well-defined
spec_score = aeo_spec_validator.validate(task)
if spec_score < 40:
return REFUSE("Spec too unclear - need more details")
Related skills
More from ivzc07/aeo-skills
aeo-qa-agent
Internal code reviewer with veto power. Reviews changes before commit, blocks security issues.
15aeo-architecture
Analyze and protect code architecture. Detects circular dependencies and layer violations.
14aeo-cost-governor
Track token usage and enforce budget limits. Optional skill for cost-conscious projects.
14aeo-spec-validator
Validate that tasks are sufficiently defined before execution. Returns score 0-100.
13aeo-escalation
Human-AI interface for when to interrupt and involve humans. Presents clear options and records decisions.
12