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

633 B

Refactor Python code for clarity, performance, and Pythonic idioms.

Steps

  1. Read the target Python file or module.
  2. Identify refactoring opportunities:
  3. Apply Pythonic improvements:
  4. Improve code structure:
  5. Improve error handling:
  6. Run the tests to verify behavior is unchanged.
  7. Run linting tools (ruff, flake8) to verify style compliance.

Format

File: <path>
Refactorings Applied:
  - <pattern replaced> -> <Pythonic alternative>
Lines Changed: <before> -> <after>

Rules

  • Never change behavior during refactoring.
  • Run tests after every refactoring step.
  • Follow PEP 8 style guidelines.