Plugin Claude Code
Plugin marketplace listing 1 plugin: dev-workflow.
Plugin Claude Code
Plugin marketplace listing 1 plugin: dev-workflow.
Plugin Claude Code
Plan-first development workflow with session-persistent memory (auto-resume changelog), 10 context-isolated subagents across generic (auditor, code-reviewer, test-writer), ML (researcher, data-engineer, ml-engineer, validation-engineer) and web/pipeline (backend-engineer, frontend-engineer, pipeline-engineer) domains.
Instructions file CodexOpenCode
Instructions for Dhananjay625/dev-workflow, covering agent workflow rules, 1. session continuity (do this first, every session), 2. plan before code, 3. assemble a team for heavy tasks and 4. verify - never assume.
Agent
Deep-reads a codebase area, dataset, or pipeline to find bugs, silent data loss, dead code, or spec violations. Use proactively when the main task requires understanding many files whose contents don't need to stay in the main context. Read-only.
Agent
Implements server-side logic: endpoints, business rules, persistence, and auth. Writes ONLY the paths assigned at dispatch. Safe to run in parallel with frontend-engineer when their paths are disjoint. Invoke with: the owned paths and the API contract it must publish.
Agent
Reviews a diff or changed files after implementation for security, correctness, performance, and plan compliance. Use proactively after any significant code change, before declaring the task done. Read-only. Invoke with an explicit scope: the exact commits, files, or diff range that constitutes THIS session's change.
Agent
Builds and fixes data loading, cleaning, splitting, and feature code for ML and pipeline work. Writes ONLY the paths assigned at dispatch. Invoke with: the owned paths, the input schema, and the contract the output must satisfy (columns, dtypes, row-count expectation).
Agent
Implements UI: components, pages, styling, and client-side state. Writes ONLY the paths assigned at dispatch. Safe to run in parallel with backend-engineer when their paths are disjoint. Invoke with: the owned paths, the API contract it consumes, and the states each view must handle.
Agent
Implements model training, fine-tuning, and inference code. Writes ONLY the paths assigned at dispatch. Invoke with: the owned paths, the data contract produced upstream, the baseline to beat, and the compute budget.
Agent
Builds and fixes ETL/batch orchestration: stage wiring, scheduling, retries, idempotency, and failure recovery. Writes ONLY the paths assigned at dispatch. Invoke with: the owned paths, the stage contract (input → output per stage), and the rerun semantics required.
Agent
Surveys prior art, existing implementations, and available data before an ML or algorithmic build starts. Returns options with tradeoffs and one recommendation. Read-only. Invoke with: the problem statement and the constraints (data available, compute budget, latency target).
Agent
Writes tests for a specified module against a specified spec. Safe to run in parallel with other test-writer instances as long as each is assigned a disjoint set of test files. Invoke with: the module path, the behavior spec, and the exact test file path it owns.
Agent
Independently validates a trained model: metric correctness, holdout integrity, leakage, and whether the reported result survives scrutiny. Read-only on model and data code. Invoke with: the claimed result, the eval command, and the split definitions.
Command
Initialize or repair the dev-workflow changelog in the current project.
Command
Show current project state from the changelog.
Command
End-of-session wrap — update changelog Current state for clean resume.
Hook
Runs when a session starts, running an inline shell check. From Dhananjay625/dev-workflow.
Hook
Runs when you submit a prompt, before the agent sees it, executing team-router.sh via sh. From Dhananjay625/dev-workflow.
Hook
Runs after a tool call finishes for Edit and Write tool calls, running an inline shell check. From Dhananjay625/dev-workflow.
Hook
Runs when the agent finishes a response, executing _test.py with --silent. From Dhananjay625/dev-workflow.
Skill Claude CodeCodex
Write the minimum code that meets the spec. Use whenever writing new code, reviewing code for bloat, refactoring, choosing dependencies, or deciding how much structure/abstraction/testing/error-handling a task needs. Also use when the user asks to simplify, shrink, de-bloat, or clean up code.
Skill Claude CodeCodex
Structured development workflow for any coding, refactoring, debugging, data-pipeline, or feature task. Use at the start of every non-trivial development task (>20 lines of change, >3 files, or any schema/pipeline change) and whenever deciding whether to plan first, delegate work, or declare a task done. Covers…