plugins marketplace
← All plugins

engineering-workflow-skills

v1.2.0

Skills for software engineering workflows: git operations, test fixing, code review, feature planning, and ensemble problem solving (generates multiple solutions in parallel and selects the best)

Claude Code5 skills

by mhattingpete657updated 2 weeks ago

Source

git clone https://github.com/mhattingpete/claude-skills-marketplace

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is engineering-workflow-plugin/ inside the repository.

Layout

engineering-workflow-plugin/
├── .claude-plugin/plugin.json
├── skills/ensemble-solving/SKILL.md
├── skills/feature-planning/SKILL.md
├── skills/git-pushing/SKILL.md
├── skills/review-implementing/SKILL.md
└── skills/test-fixing/SKILL.md

Skills5

ensemble-solvingskills/ensemble-solving/SKILL.md

Generate multiple diverse solutions in parallel and select the best. Use for architecture decisions, code generation with multiple valid approaches, or creative tasks where exploring alternatives improves quality.

feature-planningskills/feature-planning/SKILL.md

Break down feature requests into detailed, implementable plans with clear tasks. Use when user requests a new feature, enhancement, or complex change.

git-pushingskills/git-pushing/SKILL.md

Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.

review-implementingskills/review-implementing/SKILL.md

Process and implement code review feedback systematically. Use when user provides reviewer comments, PR feedback, code review notes, or asks to implement suggestions from reviews.

test-fixingskills/test-fixing/SKILL.md

Run tests and systematically fix all failing tests using smart error grouping. Use when user asks to fix failing tests, mentions test failures, runs test suite and failures occur, or requests to make tests pass.

Manifests1

engineering-workflow-plugin/.claude-plugin/plugin.json
{
  "name": "engineering-workflow-skills",
  "version": "1.2.0",
  "description": "Skills for software engineering workflows: git operations, test fixing, code review, feature planning, and ensemble problem solving (generates multiple solutions in parallel and selects the best)",
  "author": {
    "name": "mhattingpete",
    "email": "noreply@github.com"
  }
}