https://github.com/dimagi/dimagi-claude-workflows
https://github.com/dimagi/dimagi-claude-workflows
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dimagi/dimagi-claude-workflows
- Owner: dimagi
- License: mit
- Created: 2025-11-07T09:50:49.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2026-05-21T08:09:33.000Z (about 2 months ago)
- Last Synced: 2026-05-21T15:43:44.338Z (about 2 months ago)
- Language: Python
- Size: 328 KB
- Stars: 2
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Claude Code Toolkit
A collection of resources, workflows, and plugins for getting the most out of Claude Code.
## Overview
Claude Code is Anthropic's CLI for AI-assisted software engineering. This repository provides:
- **Plugins** — agents, commands, and skills that extend Claude Code's capabilities
- **Workflow patterns** — opinionated development loops that work well with Claude
- **Curated external resources** — third-party plugins worth knowing about
## Plugins in This Repo
See [plugins/README.md](plugins/README.md) for full documentation, including installation instructions.
| Plugin | What it does |
|--------|-------------|
| [code-review](plugins/code-review/) | 5 parallel specialist agents produce a prioritised code review |
| [dev-utils](plugins/dev_utils/) | Commands for PRs, plan review, CI/CD + iterate-pr skill |
## External Plugins
Included in this repo's [marketplace.json](.claude-plugin/marketplace.json) and installed alongside the local plugins.
| Plugin | What it does |
|--------|-------------|
| [Superpowers](https://github.com/obra/superpowers) | Plan → Build → Review workflow |
| [Context7](https://github.com/upstash/context7) | Up-to-date library documentation for LLMs |
| [Humanizer](https://github.com/trailofbits/skills-curated/tree/main/plugins/humanizer) | Remove AI writing patterns from text |
| [Visual Explainer](https://github.com/nicobailon/visual-explainer) | Documentation and visualization |
| [Dogfood](https://skills.sh/vercel-labs/agent-browser/dogfood) | Systematic web app exploration and bug finding |
### Other Recommended Plugins
- [Official Anthropic Claude Plugins](https://github.com/anthropics/claude-plugins-official) — git commit skills and more
## Development Workflow
A proven loop for Claude-assisted development:
```mermaid
flowchart TD
A([Session Start]) --> B["Design + Plan
Superpowers skill"]
B --> C["Review Plan
Validate & Refine"]
C --> D["Execute Plan
Build"]
D --> E["Code Review
Parallel specialist agents"]
E --> F["Resolve
PR comments + CI failures"]
F --> G([Complete])
```
## License
See [LICENSE](LICENSE) for details.