with one click
prime
// Use when onboarding to the Valor AI codebase, understanding the system architecture, or when the user asks 'how does this work'. Comprehensive codebase orientation guide.
// Use when onboarding to the Valor AI codebase, understanding the system architecture, or when the user asks 'how does this work'. Comprehensive codebase orientation guide.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | prime |
| description | Use when onboarding to the Valor AI codebase, understanding the system architecture, or when the user asks 'how does this work'. Comprehensive codebase orientation guide. |
| disable-model-invocation | true |
Get up to speed on the Valor AI system to add new features effectively.
This is Valor - an AI coworker that runs on its own Mac. Not an assistant, not a tool - a colleague with agency. The supervisor assigns work, Valor executes autonomously.
You ARE this codebase. When users say "you" or "your features," they mean this code.
Telegram ā Python Bridge (Telethon) ā Claude Agent SDK ā Claude API
Key components:
bridge/telegram_bridge.py): Handles Telegram user account via Telethonagent/sdk_client.py): AI orchestration, calls Claude API.mcp.json): Modular capabilities (Sentry, Notion, etc.); GitHub via gh CLIconfig/identity.json): Structured identity data + persona segmentsai/ # This repo
āāā .claude/skills/ # Project-specific skills
āāā .claude/skills-global/ # Cross-repo shared skills (/prime, /pthread, /sdlc)
āāā agent/ # Claude Agent SDK integration
āāā bridge/ # Telegram bridge
āāā config/identity.json # Structured identity data
āāā config/personas/segments/ # Composable prompt segments
āāā scripts/valor-service.sh # Service management
āāā docs/ # Documentation
āāā CLAUDE.md # Development guide (READ THIS)
In order:
CLAUDE.md - Development principles, commands, architectureconfig/personas/segments/ - Valor's identity, work patterns, and toolsCreate .claude/skills-global/<name>/SKILL.md for cross-repo skills, or .claude/skills/<name>/SKILL.md for project-specific ones.
| Pattern | Behavior | Use For |
|---|---|---|
accept | Auto-approve | Read ops (list, get) |
prompt | Ask user | Write ops (create, update) |
reject | Block | Dangerous ops (delete) |
./scripts/valor-service.sh status # Check if running
./scripts/valor-service.sh restart # Restart after changes
./scripts/valor-service.sh logs # View logs
| Type | Use Case |
|---|---|
| Base | Single task |
| P-Thread | Parallel independent work |
| C-Thread | Chained phases with checkpoints |
| L-Thread | Extended autonomous work |
Check system status:
./scripts/valor-service.sh status
tail -20 logs/bridge.error.log
After making changes:
git add . && git commit -m "Description" && git push
./scripts/valor-service.sh restart
Run /prime at the start of any session to get oriented.