Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- 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
2026-02-04 21:08:28 +00:00

773 B

Perform smart codebase exploration to understand project structure, patterns, and conventions.

Steps

  1. Start with the project root: read package.json, Cargo.toml, pyproject.toml, or equivalent.
  2. Map the directory structure to understand organization:
  3. Identify the tech stack:
  4. Find entry points:
  5. Discover coding patterns used:
  6. Check for CI/CD configuration and deployment setup.
  7. 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.