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
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
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 47,000+ AI builders

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

Advertise here

Summary

Workflow meta-tools: discuss (discussion mode), research, sidetrack, worktree isolation, mediocre redo, commit-push-pr, learn, tidy-permissions, plus issue-creator and code-simplifier agents.

Install to Claude Code

/plugin install flow@claude-skills

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

README.md

Claude Skills & Agents

Reusable Claude Code skills and agents that work across any project. Skills are inline workflow tools; agents are isolated AI workers with their own context window.

Distributed as a Claude Code plugin named flow via this repo's built-in marketplace. Once installed, every machine you use stays in sync — git pull upstream and /plugin update pulls the latest.

Skills

| Skill | Command | What it does | |-------|---------|-------------| | discuss | /flow:discuss | Pause implementation, switch to discussion-only mode. No code changes until you say "go ahead." | | research | /flow:research <feature> | Research implementation approaches with alternatives comparison, trade-off analysis, and architecture fit. Produces a structured report, no code. | | sidetrack | /flow:sidetrack [deep] <issue> | Evaluate a side issue found during development. Assess coupling, compare fixes, decide: fix now or defer? | | worktree | /flow:worktree [create\|list\|remove\|clean] | Isolate parallel, independent tasks in separate git worktrees so they never overwrite each other — each task gets its own working directory and branch. | | mediocre | /flow:mediocre | After a mediocre fix, scrap it and redo it right — using everything learned from the first attempt. | | commit-push-pr | /flow:commit-push-pr [desc] | Commit, push, and create a PR in one step. Reads project conventions from CLAUDE.md. | | decide | /flow:decide [topic] | Guided decision flow using the interactive AskUserQuestion UI — structured options you click, not text walls. | | learn | /flow:learn [topic] | Capture lessons from the current conversation and add them to the project's CLAUDE.md. | | tidy-permissions | /flow:tidy-permissions | Clean up settings.json permissions — consolidate similar rules with wildcards, remove duplicates, sort alphabetically. |

Agents

| Agent | Command | What it does | |-------|---------|-------------| | issue-creator | /flow:issue-creator <description> | Investigate a problem, create a detailed GitHub issue with root cause analysis. Runs in isolated context. Supports list, fix <n>, close <n>, search, view <n> subcommands. | | code-simplifier | /flow:code-simplifier | Clean up code after implementation — remove dead code, simplify verbose patterns, consolidate duplicates. Verifies with lint/test/build. |

Installation

Install once per machine, from inside any Claude Code session:

/plugin marketplace add enderyildirim/claude-skills
/plugin install flow@claude-skills

Restart Claude Code (or start a new session) and the skills/agents are available as /flow:<name>.

> Prefer the terminal? The same thing non-interactively: > ``bash > claude plugin marketplace add enderyildirim/claude-skills > claude plugin install flow@claude-skills > ``

Updating

After pushing changes to this repo:

/plugin marketplace update claude-skills
/plugin update flow@claude-skills

Or from the terminal: claude plugin update flow@claude-skills. Restart to apply. Because the plugin is sourced from GitHub, every machine that has it installed picks up the update the same way.

Migrating from symlinks

Earlier these skills were linked into ~/.claude/skills/ and ~/.claude/agents/ with ln -s. After installing the plugin, remove the old symlinks so they don't shadow the plugin versions:

# Skills (only delete the ones that are symlinks into this repo)
for s in commit-push-pr decide discuss hold learn mediocre research sidetrack tidy-permissions; do
  [ -L ~/.claude/skills/$s ] && rm ~/.claude/skills/$s
done
# Agents
for a in code-simplifier.md issue-creator.md; do
  [ -L ~/.claude/agents/$a ] && rm ~/.claude/agents/$a
done

> Note: Project-level skills/agents (in a repo's .claude/) still override plugin ones with the same name — handy for project-specific variants.

License

MIT

Related plugins

Browse all →