humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Plugin Claude Code
Plugin marketplace listing 1 plugin: idea-to-code.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Plugin Claude Code
Plugin marketplace listing 1 plugin: idea-to-code.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Instructions file
Claude Code instructions for humansintheloop-dev/humansintheloop-dev-workflow-and-tools, covering project guidelines, executing bash commands, skills, code health and referencing code locations.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Plugin Claude Code
Skills, slash commands and hooks for the Humans-in-the-Loop idea-to-code workflow. Use with the workflow scripts at https://github.com/chrisrichardson/genai-development-workflow.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Command
Capture mistake or improvement opportunity with 5 whys analysis.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Command
Stage all changes, review the uncommitted changes, generate a descriptive commit message, and commit changes.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Command
Ignore unstaged changes, review the staged changes, generate a descriptive commit message, and commit changes.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Command
Run ./gradlew precommitCheck before committing changes.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Command
Walk me through the design decisions in the design document one by one. This includes.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Consult the design pattern catalog before implementing or refactoring code.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
When stuck on a problem, formulate a well-structured question and copy it to the clipboard for pasting into ChatGPT. Claude should use this skill when debugging efforts stall or when an outside perspective would help.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Provides a pre-commit checklist and commit message formatting standards for this project. Claude should use this skill when creating git commits to ensure messages follow project conventions, including proper co-authorship attribution and concise formatting.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Guidelines for watching CI builds and diagnosing failures. Claude should use this skill when watching a CI build or investigating why a CI build failed.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Provides Dockerfile best practices for this project. Claude should use this skill when creating or modifying Dockerfiles to ensure optimal layer caching by ordering instructions from most stable to least stable.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Guidelines for file operations like moving, renaming, and reorganizing files. Claude should use this skill when reorganizing code structure to prefer efficient shell commands over write/delete patterns.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Find all production code locations where a class, function, or method is defined and used. Use when the user asks where something is defined, instantiated, invoked, or called in production code.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Guidelines for resolving git merge and rebase conflicts efficiently. Claude should use this skill when resolving merge conflicts or rebase conflicts to prefer bulk git strategies over manual conflict marker editing.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
When a Gradle build in GitHub Actions fails to resolve a SNAPSHOT dependency that works locally, the cause is usually stale dependency resolution metadata in the gradle/actions/setup-gradle cache.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Guidelines for incremental development practices. Claude should use this skill when writing multiple similar files (tests, classes, configurations) to ensure each piece is verified before moving to the next.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Structural CRUD and reordering operations on plan files via the i2code plan CLI — insert/replace/delete/reorder threads and tasks, mark tasks/steps complete or incomplete, fix numbering, and query plan structure (get-next-task, get-thread, get-summary, list-threads). Claude MUST use this skill (not raw file edits) for…
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
Guidelines for working with plan files. Claude should use this skill when the user provides a plan file (e.g., -plan.md) to ensure task completion is tracked in the plan file itself, not just internally.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
This skill defines a strict but lightweight TDD workflow designed for coding agents. It enforces honesty, prevents cheating, and minimizes token usage by focusing solely on tests.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
When running test scripts or long-running commands that produce verbose output, redirect output to a log file under logs/ to avoid truncation in the Bash tool. Claude should use this skill when running test scripts, end-to-end tests, or any command likely to produce large output, and also when waiting for a background…
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
This skill defines what a "test" is and how tests are executed for this Java project. It is designed to be used together with a TDD skill that determines when tests must run.
humansintheloop-dev/humansintheloop-dev-workflow-and-tools
Skill Claude CodeCodex
how to structure and write tests (shell) scripts involving infrastructure.