# Superego

> Metacognitive oversight. Invoke with "$superego" to evaluate, "$superego init" to set up, "$superego remove" to uninstall.

- Skill: `open-horizon-labs/superego` (Agent Skill, multi-file: 7 files)
- Install (CLI): `npx skillmds@latest add open-horizon-labs/superego`
- Raw SKILL.md: https://api.skillmd.com/api/skills/open-horizon-labs/superego/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: open-horizon-labs (https://skillmd.com/u/open-horizon-labs)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/open-horizon-labs/superego

---


# Superego - Metacognitive Oversight

## $superego (evaluate)

Evaluate the current conversation for alignment, focus, and proportionality.

**When to use:**
- Before committing to a plan or approach
- When choosing between alternatives
- Before non-trivial implementations
- When the task feels complex or uncertain
- Before claiming work is "done"

**Run:**
```bash
sg evaluate-codex
```

**Handle results:**
- `has_concerns: true` → STOP, show feedback to user verbatim, ask before proceeding
- `has_concerns: false` → Tell user "Superego: No concerns", continue
- `skipped: true` → Proceed normally (not an error)

## $superego init

Set up superego for this project. Also updates skill files and binary if already installed.

**Step 1:** Update skill files:
```bash
SKILL_DIR="$HOME/.codex/skills/superego"

echo "Updating superego skill files..."
mkdir -p "$SKILL_DIR/agents"

# Download latest skill files
for file in AGENTS.md.snippet agents/code.md agents/writing.md agents/learning.md; do
  curl -fsSL -o "$SKILL_DIR/$file" \
    "https://raw.githubusercontent.com/cloud-atlas-ai/superego/main/codex-skill/$file"
done
```

**Step 2:** Install or update sg binary:
```bash
if command -v sg >/dev/null; then
  echo "Updating superego binary..."
  if command -v brew >/dev/null && brew list superego >/dev/null 2>&1; then
    brew upgrade superego 2>/dev/null || echo "Already up to date"
  elif command -v cargo >/dev/null; then
    cargo install superego --force
  fi
  echo "Binary version: $(sg --version)"
else
  echo "Installing superego binary..."
  cargo install superego
fi
```

**Step 3:** Initialize .superego/ directory:
```bash
sg init
```

**Step 4:** Offer to add comprehensive guidance to AGENTS.md:

Ask user: "Would you like me to add comprehensive superego guidance to AGENTS.md? This includes multi-prompt support, review commands, and usage examples. [Y/n]"

**If yes:**
```bash
tail -n +5 "$HOME/.codex/skills/superego/AGENTS.md.snippet" >> AGENTS.md
echo "✓ Added comprehensive superego guidance to AGENTS.md"
```

**If no, add minimal section:**
```bash
cat >> AGENTS.md << 'EOF'

## Superego Metacognitive Oversight

This project uses superego. You have the `$superego` skill available.

**Use $superego:**
- Before committing to a plan or approach
- When choosing between alternatives
- Before non-trivial implementations
- When the task feels complex or uncertain
- Before claiming work is "done"

Superego catches strategic mistakes. Use it at **decision points**.

**Results:** `has_concerns: true` = STOP and show user; `skipped: true` = proceed normally.
EOF
```

**Step 5:** Confirm to user: "Superego initialized. I'll use $superego at decision points."

## $superego prompt list

List available evaluation prompts and show which is currently active.

**Run:**
```bash
sg prompt list
```

**Output shows:**
- `code` - Metacognitive advisor for software development (default)
- `writing` - Co-author reviewer for content creation
- `learning` - Learning coach for teaching approaches
- The active prompt is marked with `*`

## $superego prompt switch <name>

Switch to a different evaluation prompt type.

**Run:**
```bash
sg prompt switch <name>  # name = code, writing, or learning
```

**Examples:**
```bash
sg prompt switch writing   # Use writing prompt for blog posts/docs
sg prompt switch learning  # Use learning prompt for tutorials
sg prompt switch code      # Back to code prompt
```

**Behavior:**
- Backs up customizations before switching (saved to `.superego/prompt.<type>.md.bak`)
- Restores previous customizations if you've used this prompt before
- Updates `.superego/config.yaml` with new base_prompt

**Tell user:** "Switched to [name] prompt. Superego will now evaluate using [description]."

## $superego prompt show

Show current prompt info and available backups.

**Run:**
```bash
sg prompt show
```

**Output shows:**
- Current base prompt
- Whether you have local modifications
- Which backups are available

## $superego review [target]

Get on-demand review of changes. Advisory feedback (non-blocking).

**Run:**
```bash
sg review-codex            # Review staged changes (git diff --cached)
sg review-codex staged     # Same as above
sg review-codex pr         # Review PR diff vs base branch
sg review-codex <file>     # Review specific file
```

**Examples:**
```bash
# Before committing
git add .
sg review-codex

# Before creating PR
sg review-codex pr

# Review specific file
sg review-codex src/main.rs
```

**Uses:** Current active prompt (code/writing/learning)

**Tell user:** Show the review feedback and explain it uses the current prompt type.

## $superego update

Alias for `$superego init`. Run that command to update skill files and binary.

The init command handles both initial setup and updates.

## $superego remove

Remove superego from this project. Run these steps:

**Step 1:** Remove .superego/ directory:
```bash
rm -rf .superego/
```

**Step 2:** Remove the "Superego Metacognitive Oversight" section from AGENTS.md (if present).

**Step 3:** Confirm to user: "Superego removed from this project."

