Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

dev-toolkit plugin.

Install to Claude Code

/plugin install dev-toolkit@q-skills

Run in Claude Code. Add the marketplace first with /plugin marketplace add Alton09/q-skills if you haven't already.

README.md

q-skills

A collection of project-agnostic Claude Code plugins for structured development workflows.

Plugins

workflow-kit

Project-agnostic Claude Code plugins for the full feature lifecycle: structured planning, verified implementation, and PR review.

Skills included:

| Skill | Command | Description | |-------|---------|-------------| | feature-plan | /workflow-kit:feature-plan | Create structured implementation plans with phases, tasks, and acceptance criteria | | implement-plan | /workflow-kit:implement-plan | Execute a plan end-to-end with dependency-graph parallel phases, two-tier verification, an opus escalation rescue, and a post-plan review + auto-fix |

Composable Skills

workflow-kit skills delegate to project-local skills that you supply. These must exist in your project's .claude/skills/ before running implement-plan or feature-plan:

| Skill | Required | Contract | |---|---|---| | /verify | Required | Run quality gates; return pass or fail with raw output verbatim on failure | | /create-worktree | Required | Create an isolated git worktree and branch; return its path | | /clean-architecture | Required | Load layer rules and naming conventions into context | | /research | Optional | Look up latest API docs for a given surface; return findings as text. Skipped gracefully if absent. |

See examples/android/ for a working reference implementation targeting Kotlin, Gradle KTS, Jetpack Compose, Hilt, and Clean Architecture. Copy and adapt those skills as a starting point for your own project.

dev-toolkit

Standalone dev utilities that work independently of any planning pipeline.

Skills included:

| Skill | Command | Description | |-------|---------|-------------| | pr-review | /dev-toolkit:pr-review | Project-aware GitHub PR review with focused, numbered findings | | skill-sharpener | /dev-toolkit:skill-sharpener | Analyze session transcripts to find and fix skill friction | | notify-me | /dev-toolkit:notify-me | Send macOS system notifications during long-running tasks (macOS only) |

Installation

1. Add the marketplace directly from GitHub (no clone required):

claude plugin marketplace add Alton09/q-skills

The owner/repo shorthand above works, as does the full URL:

claude plugin marketplace add https://github.com/Alton09/q-skills

2. Install each plugin:

claude plugin install workflow-kit
claude plugin install dev-toolkit

3. Reload plugins in Claude Code:

/reload-plugins

Run /doctor to confirm no errors.

Local development install

Developing the plugins locally? Point the marketplace at your working copy instead:

git clone https://github.com/Alton09/q-skills.git ~/Workspace/q-skills
claude plugin marketplace add ~/Workspace/q-skills
claude plugin install workflow-kit
claude plugin install dev-toolkit

Updating

# Check your exact plugin identifier
claude plugins list

# Update using the name shown (e.g. workflow-kit@q-skills)
claude plugins update workflow-kit@<marketplace-name>
claude plugins update dev-toolkit@<marketplace-name>

Restart Claude Code after updating to apply changes.

Usage

After installation, skills are available as slash commands:

/workflow-kit:feature-plan      # Plan a feature
/workflow-kit:implement-plan    # Execute a plan
/dev-toolkit:pr-review          # Review a GitHub PR
/dev-toolkit:skill-sharpener    # Improve skills from session data
/dev-toolkit:notify-me          # Send macOS notification

Project Structure

q-skills/
  .claude-plugin/
    marketplace.json          # Marketplace registry (lists both plugins)
  plugins/
    workflow-kit/
      .claude-plugin/
        plugin.json           # Plugin manifest (v1.1.0)
      skills/
        feature-plan/         # Feature planning skill
        implement-plan/       # Plan execution skill (with built-in opus escalation rescue)
    dev-toolkit/
      .claude-plugin/
        plugin.json           # Plugin manifest (v1.0.0)
      skills/
        pr-review/            # GitHub PR review skill
        skill-sharpener/      # Skill improvement skill
        notify-me/            # macOS notification skill

License

See LICENSE for details.

Related plugins

Browse all →