mirror of
https://github.com/IgorWarzocha/Opencode-Workflows.git
synced 2026-09-14 16:22:53 +08:00
65fb198c0a
- 3-6 word user-friendly descriptions - Complementary to command names
1.3 KiB
1.3 KiB
description
| description |
|---|
| Map codebase structure |
-
Analyze main directory structure
- Run
ls -lato see all files and folders - Identify configuration files (package.json, requirements.txt, etc.)
- Find documentation files (README.md, AGENTS.md, etc.)
- Run
-
Map key folders
- Check typical directories: src/, lib/, components/, tests/, docs/
- Identify hidden folders: .git/, .vscode/, .opencode/
- Use
find . -type d -name "*pattern*"for specific searches
-
Analyze configuration
- Read package.json for Node.js projects
- Check requirements.txt/pyproject.toml for Python
- Find build and CI configuration
-
Identify patterns
- Locate main entry files (index.js, main.py, etc.)
- Find test files and structure
- Map module/dependency relationships
-
Summarize architecture
- Describe technologies and frameworks
- Identify design patterns
- Highlight areas for deeper exploration
<scope_options>
| Scope | Behavior |
|---|---|
| quick | Main structure and config files only |
| deep | Detailed mapping of all folders |
path/ |
Focus exploration on specific directory |
</scope_options>