gitmyhub

claude-code-workflows

★ 3.8k updated 9mo ago

The best workflows and configurations I've developed, having heavily used Claude Code since the day of it's release. Workflows are based off applied learnings from our AI-native startup.

Ready-to-use Claude Code workflow configs for automating code review, security scanning, and design review, built from real startup experience, runnable as slash commands or GitHub Actions.

Claude CodeGitHub Actionssetup: moderatecomplexity 3/5

This repository collects reusable workflow configurations for Claude Code, an AI-assisted coding tool built by Anthropic. The workflows were developed by a startup that uses Claude Code extensively and are intended to automate routine software development tasks that teams typically do by hand.

Three workflows are currently included. The code review workflow sets up an automated system where AI agents review pull requests for syntax issues, style adherence, completeness, and potential bugs. The security review workflow scans codebases for vulnerabilities, exposed secrets, and common attack patterns based on OWASP standards (a widely used list of common web application security risks), producing prioritized findings with suggested fixes. The design review workflow uses browser automation to check front-end code changes for visual consistency, accessibility, and design quality before they go into production.

Each workflow is implemented as a combination of slash commands that developers can run on demand inside Claude Code and GitHub Actions, which are automated scripts that run when code is submitted to a repository. Video tutorials for each workflow are linked in the README and available on the author's YouTube channel.

The README notes that more workflows are planned. The project is described as coming from applied experience at an AI-native startup rather than being a general-purpose framework.

Where it fits