dev-workflow

dev-workflow is a skill for Claude Code from Sagargupta16/claude-skills. It costs 42 tokens per session (964 once invoked), scanned A, original, MIT.

A guide for common software-development tasks involving code changes, tests, branches, commits, and pull requests. A pull request is a proposed set of changes submitted for review before merging.

In plain words
What is it for?
Use it for repository status, commits, code reviews, tests, bug fixes, pull requests, and checking continuous-integration results and merge readiness.
Why use it?
It provides a consistent way to inspect work, run checks, record changes, and assess whether code is ready to merge.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dev-workflow plugin — 1 skill, 7 commands, 2 agents shipped together

Good fit Use it for repository status, commits, code reviews, tests, bug fixes, pull requests, and checking continuous-integration results and merge readiness.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sagargupta16/claude-skills/dev-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Sagargupta16/claude-skills --skill dev-workflow
Clone the repo
git clone --depth 1 https://github.com/Sagargupta16/claude-skills

Made for: Claude Code.

Or install dev-workflow, the plugin that ships this one along with the rest of its 1 skill, 7 commands, 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dev-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/sagargupta16/claude-skills/dev-workflow.svg)](https://agentmods.dev/skills/sagargupta16/claude-skills/dev-workflow)
Your own site
<a href="https://agentmods.dev/skills/sagargupta16/claude-skills/dev-workflow"><img src="https://agentmods.dev/badge/skills/sagargupta16/claude-skills/dev-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 964 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.00964
Opus 5 $0.00021 $0.00482
Sonnet 5 $0.00008 $0.00193
Haiku 4.5 $0.00004 $0.00096

Measured 8d ago against content hash 0d8adb58d998, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

dev-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/dev-workflow/skills/dev-workflow/SKILL.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Development Workflow Patterns

Quick Reference

Task Command What It Does
Commit /commit Stage changes, write conventional commit message
Review /review Analyze branch changes for bugs, security, quality
Test /test Detect test framework, run tests, diagnose failures
Fix /fix Trace root cause, implement minimal fix, verify
PR /pr Create pull request with summary and test plan
Status /status Full repo overview: branches, PRs, CI, sync state
Check PR /check-pr CI status, reviews, comments, merge readiness

Commit Workflow

  1. Run git status and git diff to understand changes
  2. Run git log --oneline -5 to match the repo's commit style
  3. Stage only relevant files (never stage .env, credentials, binaries)
  4. Write a conventional commit message:
    • Format: type: short description
    • Types: feat, fix, refactor, docs, test, chore, style, perf
    • Focus on WHY, not WHAT
    • Keep first line under 72 chars
  5. Never push unless explicitly asked

Code Review Checklist

When reviewing branch changes (git diff main...HEAD):

Category Check For
Logic Bugs, off-by-one errors, null handling
Security Injection, XSS, secrets exposure, CORS
Performance N+1 queries, unnecessary loops, missing indexes
Error handling Unhandled exceptions, missing edge cases
Style Consistency with surrounding code
Tests New code covered? Edge cases tested?
API Breaking changes to public interfaces?

Provide: overall assessment (ship it / needs changes / major issues), specific issues with file:line references, suggested fixes.

Test Runner

Detect the framework and run tests:

Config File Framework Command
package.json (scripts.test) npm/yarn/pnpm npm test / pnpm test
pytest.ini / pyproject.toml pytest pytest
Cargo.toml cargo cargo test
go.mod go go test ./...
Makefile (test target) make make test

Read the full file on GitHub · 100 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 100 lines · 42 tokens per session scan A 0d8adb58d998

Subscribe to this mod's changes

dev-workflow is a skill published in the GitHub repository Sagargupta16/claude-skills (5 stars, last pushed 2d ago), licensed MIT. It adds 42 tokens to every session and 964 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.