ワンクリックで
codemap
Generate codebase maps with directory trees and relationships. Use for onboarding and architecture documentation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate codebase maps with directory trees and relationships. Use for onboarding and architecture documentation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Tool-agnostic search — query construction, tool selection, source trust hierarchy.
Auto-continue through todos with idle detection and safety gates. Use for multi-step orchestration.
Level 2 — Pantheon-native context compression with priority scoring, semantic summarization, downstream-aware compression, budget allocation, and cross-references
Automated visual review pipeline — Playwright screenshots, self-analysis, fix loop, escalation. Used by Aphrodite for UI verification.
Multi-agent orchestration with model routing, category delegation, and sprint management. Use for coordinating Pantheon agents.
MCP security hardening — credential leakage prevention, input sanitization, and tool access control. Use for reviewing agent MCP configurations.
| name | codemap |
| description | Generate codebase maps with directory trees and relationships. Use for onboarding and architecture documentation. |
| context | fork |
tree -I 'node_modules|.git|__pycache__|*.pyc|.venv|dist|build' -L 3
Identify main entry points:
package.json → main, binpyproject.toml → scriptssrc/main.py, src/index.ts, app.pyFor each significant directory, document:
Show how modules connect:
frontend/ → api/ (HTTP calls)
backend/ → database/ (SQLAlchemy models)
worker/ → queue/ (Redis/RabbitMQ)
# Codemap: <Project Name>
## Entry Points
- `src/main.py` — FastAPI application
- `scripts/migrate.sh` — Database migration runner
## Directory Structure
src/ ├── api/ # REST endpoints ├── services/ # Business logic ├── models/ # Database schemas └── utils/ # Shared utilities
## Module Relationships
| Module | Depends On | Used By |
|--------|-----------|---------|
| api/ | services/, models/ | — (top level) |
| services/ | models/, utils/ | api/ |
| models/ | — | api/, services/ |
## Key Files
| File | Purpose | Lines |
|------|---------|-------|
| src/api/auth.py | Authentication endpoints | 120 |
| src/services/user.py | User business logic | 200 |
/memories/repo/codemap.md (Tier 1 memory)