orientation
npx skills add https://github.com/lidessen/moniro --skill orientation
Agent 安装分布
Skill 文档
Orientation
Before you can act wisely, you must understand where you are.
Philosophy
Why Orient?
The danger isn’t ignoranceâit’s false confidence.
An agent that dives into action without understanding context will:
- Make assumptions that don’t hold
- Solve the wrong problem
- Miss crucial constraints
- Repeat mistakes others already learned from
Orientation isn’t bureaucracy. It’s the difference between a surgeon who reads the chart and one who doesn’t.
The First Law of Orientation:
âââ You don't know what you don't know
âââ Projects have hidden assumptions
âââ Context shapes correct action
âââ Reading first costs minutes; mistakes cost hours
What Orientation Is (And Isn’t)
Orientation is reconnaissance, not deep investigation.
Orientation answers: Orientation doesn't answer:
âââ What is this? âââ How does this work? (â dive)
âââ What matters here? âââ What should we build? (â engineering)
âââ Who came before? âââ Is this code correct? (â validation)
âââ Where should I look? âââ What needs fixing? (â housekeeping)
Orientation points you in the right direction. Other skills take you there.
Core Concepts
Entry Points
Every project has documents that reveal its nature. Priority order:
Agent-specific (highest signal):
âââ CLAUDE.md â Written for you
âââ AGENTS.md â Written for any agent
âââ .claude/ â Claude-specific config
Project docs (context):
âââ README.md â What this is
âââ CONTRIBUTING.md â How to work here
âââ docs/ â Deeper knowledge
Structure signals (implicit):
âââ package.json / pyproject.toml / Cargo.toml â Stack
âââ .github/workflows/ â CI/CD exists
âââ docker-compose.yml â Containerized
Skills Discovery
Skills live in predictable locations:
Project-level: User-level:
âââ .claude/skills/ âââ ~/.claude/skills/
âââ .cursor/skills/ âââ ~/.cursor/skills/
âââ .agents/skills/ âââ ~/.agents/skills/
Each skill has a SKILL.md with frontmatter describing when to use it.
Memory Context
If .memory/ exists, past agents left knowledge:
.memory/
âââ context.md â Current state, active concerns
âââ notes/ â What was learned
âââ decisions/ â Why things are this way
âââ sessions/ â What happened before
Read context.md firstâit’s the handoff from previous sessions.
The Orientation Process
1. SCAN: What documents exist?
â
2. READ: What do they say about working here?
â
3. DISCOVER: What skills and memory are available?
â
4. ASSESS: What's the project type and health?
â
5. REPORT: Summarize findings, suggest starting points
Output Format
After orientation, provide:
## Project Overview
[1-2 sentences: what this is]
## Key Entry Points
- CLAUDE.md: [what it tells you]
- README: [what it tells you]
## Available Skills
| Skill | When to use |
|-------|-------------|
| [name] | [trigger] |
## Project Type
- Stack: [technologies]
- Notable: [CI, Docker, etc.]
## Suggested Starting Points
1. [Based on context]
2. [Based on context]
Health Diagnosis
Part of orientation is noticing what’s missing:
| Finding | Implication |
|---|---|
| No CLAUDE.md or AGENTS.md | Future agents will struggle |
| Stale docs (>6 months) | Information may be wrong |
| Empty .memory/ | No institutional knowledge preserved |
| Missing README | Project purpose unclear |
When issues exist, note them and suggest housekeeping for resolution.
Orientation is read-onlyâit diagnoses but doesn’t treat.
Integration
orientation
â
ââ⺠"How does X work?" ââ⺠dive
ââ⺠"What should we build?" ââ⺠engineering
ââ⺠"Ready to commit" ââ⺠refining
ââ⺠"Docs need updating" ââ⺠housekeeping
ââ⺠"What happened before?" ââ⺠memory
Understanding, Not Rules
| Tension | Resolution |
|---|---|
| Speed vs Thoroughness | Match depth to unfamiliarity. New project? Read everything. Familiar? Skim for changes. |
| Comprehensive vs Focused | Start broad (what is this?), narrow to relevant (what matters for my task?). |
| Reading vs Doing | Orientation is fast. Skipping it feels faster but costs more in mistakes. |
The goal isn’t to check boxes. It’s to build enough mental model to act wisely.
Reference
See reference/ for:
- examples.md – Sample orientation reports