An open API service indexing awesome lists of open source software.

https://github.com/dimagi/dimagi-claude-workflows


https://github.com/dimagi/dimagi-claude-workflows

Last synced: 19 days ago
JSON representation

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.