plugins
All plugins

claude-workflow-skills

v1.7.1

Common workflow skills for Claude Code sessions: promote changes through the full release cycle, audit Claude Code plugins/skills/agents, audit project standards compliance, analyse projects for improvements, triage open GitHub issues, and review pull requests

Claude Code6 skills

by Alister Lewis-BowenMIT2.6kupdated 2 hours ago

Source

git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills

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

Layout

plugins/productivity/claude-workflow-skills/
├── .claude-plugin/plugin.json
├── skills/audit-plugin/SKILL.md
├── skills/audit-standards/SKILL.md
├── skills/improve/SKILL.md
├── skills/promote/SKILL.md
├── skills/review-pr/SKILL.md
└── skills/triage/SKILL.md

Skills6

audit-pluginskills/audit-plugin/SKILL.md

Performs a deep review of the Claude Code plugin, skill, or sub-agent defined in the current project against official best practices. Documents findings as GitHub issues and writes a prioritised fix plan to the project CLAUDE.md. Use when the user says audit this plugin, review this skill, check this agent, or audit addon.

audit-standardsskills/audit-standards/SKILL.md

Audits the current project against the development standards defined in ~/.claude/CLAUDE.md. Documents non-compliant findings as GitHub issues and writes a prioritised fix plan to the project CLAUDE.md. Use when the user says audit against settings, audit standards, check standards compliance, or audit this project.

improveskills/improve/SKILL.md

Analyses the current project across code quality, feature gaps, documentation, security, competitive landscape, and monetisation opportunities, then files prioritised GitHub issues. Use when the user says improve this, analyse this project, find improvements, or fill the backlog.

promoteskills/promote/SKILL.md

Runs the full release workflow for the current project. Commits any uncommitted changes, pushes to remote, creates and merges a PR if on a feature branch, determines the next semver version from conventional commits, creates an annotated git tag and GitHub release with generated notes, cleans up merged branches, and returns to a clean main. Use when the user says promote, ship, release, commit and push, tag and release, or get back to main.

review-prskills/review-pr/SKILL.md

Reviews an open pull request against coding standards, security, and test coverage, then posts a structured review comment and either approves or requests changes. Use when the user says review this PR, check the PR, look at PR

triageskills/triage/SKILL.md

Validates all open GitHub issues, closes invalid ones with documentation, flags complex ones for planning discussion, then fixes and promotes remaining issues. Use when the user says triage issues, validate issues, fix issues, or work through the backlog.

Manifests1

plugins/productivity/claude-workflow-skills/.claude-plugin/plugin.json
{
  "name": "claude-workflow-skills",
  "version": "1.7.1",
  "description": "Common workflow skills for Claude Code sessions: promote changes through the full release cycle, audit Claude Code plugins/skills/agents, audit project standards compliance, analyse projects for improvements, triage open GitHub issues, and review pull requests",
  "author": {
    "name": "Alister Lewis-Bowen",
    "url": "https://github.com/ali5ter"
  },
  "homepage": "https://github.com/ali5ter/claude-workflow-skills",
  "repository": "https://github.com/ali5ter/claude-workflow-skills",
  "license": "MIT",
  "minVersion": "2.0.0",
  "keywords": [
    "workflow",
    "promote",
    "release",
    "audit",
    "standards",
    "improve",
    "triage",
    "git",
    "review",
    "pull-request"
  ]
}