- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
773 B
773 B
Perform smart codebase exploration to understand project structure, patterns, and conventions.
Steps
- Start with the project root: read package.json, Cargo.toml, pyproject.toml, or equivalent.
- Map the directory structure to understand organization:
- Identify the tech stack:
- Find entry points:
- Discover coding patterns used:
- Check for CI/CD configuration and deployment setup.
- Summarize findings in a structured overview.
Format
Project: <name>
Stack: <language, framework, runtime>
Structure: <directory layout summary>
Entry Points: <main files>
Rules
- Start broad and narrow down based on what you find.
- Read README and CONTRIBUTING files first if they exist.
- Prioritize understanding the happy path before edge cases.