Explore a codebase with 3 parallel Haiku agents and create documentation. Use when user says "learn [repo]", "explore codebase", "study this repo", or wants to understand a project.
From oracle-skillsnpx claudepluginhub soul-brews-studio/plugin-marketplace --plugin oracle-skillsThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Explore a codebase with 3 parallel Haiku agents â create organized documentation.
/learn [url] # Auto: clone via /project learn, then explore
/learn [slug] # Use slug from Ī/memory/slugs.yaml
/learn [repo-path] # Path to repo
/learn [repo-name] # Finds in Ī/learn/repo/
date "+đ %H:%M (%A %d %B %Y)"
Clone using ghq directly:
# Clone to Ī/learn/repo/ using ghq
GHQ_ROOT="Ī/learn/repo" ghq get "$INPUT"
This uses ghq to clone to Ī/learn/repo/github.com/owner/name
# Fast path from slugs
grep "^$INPUT:" Ī/memory/slugs.yaml | cut -d: -f2
# Or find symlink
find Ī/learn/repo -maxdepth 6 -type l | grep -i "$INPUT" | head -1
For external repos: Clone with script first, then explore
For local projects (in specs/, Ī/lib/): Read directly
mkdir -p Ī/learn/[REPO_NAME]
cat > Ī/learn/[REPO_NAME]/[TODAY]_ARCHITECTURE.md << 'EOF'
[Agent 1 output]
EOF
cat > Ī/learn/[REPO_NAME]/[TODAY]_CODE-SNIPPETS.md << 'EOF'
[Agent 2 output]
EOF
cat > Ī/learn/[REPO_NAME]/[TODAY]_QUICK-REFERENCE.md << 'EOF'
[Agent 3 output]
EOF
# [REPO_NAME] Learning Index
## Latest Exploration
**Date**: [TODAY]
**Files**:
- [[YYYY-MM-DD_ARCHITECTURE|Architecture]]
- [[YYYY-MM-DD_CODE-SNIPPETS|Code Snippets]]
- [[YYYY-MM-DD_QUICK-REFERENCE|Quick Reference]]
## Timeline
### YYYY-MM-DD (First exploration)
- Initial discovery
- Core: [main pattern]
## đ Learning Complete: [REPO_NAME]
**Date**: [TODAY]
### Created Documentation
| File | Description |
|------|-------------|
| [REPO-NAME].md | Hub + timeline |
| [TODAY]_ARCHITECTURE.md | Structure |
| [TODAY]_CODE-SNIPPETS.md | Code examples |
| [TODAY]_QUICK-REFERENCE.md | Usage guide |
### Key Insights
[2-3 interesting things learned]
### Location
Ī/learn/[REPO_NAME]/