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

Compact a conversation into a handoff doc and spawn a fresh tmux pane to continue with a clean context window.

Install to Claude Code

/plugin install handoff@my-skills

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

README.md

my-skills

A personal Claude Code plugin marketplace for distributing my own skills across repos, dev containers, and VMs from a single source of truth.

A "marketplace" here is just this git repo plus a catalog file (.claude-plugin/marketplace.json) — there is no separate hosted service.

Install

Inside any Claude Code session (replace rinman24/claude-skills):

/plugin marketplace add rinman24/claude-skills
/plugin install handoff@my-skills
/plugin install local-backlog@my-skills

Or from the command line:

claude plugin marketplace add rinman24/claude-skills
claude plugin install handoff@my-skills --scope user

Scope

  • --scope user — available to you across all projects in this Claude Code

install (recommended for a personal dev container).

  • --scope project — committed for all collaborators on a repo.
  • --scope local — just you, just this repo.

CLI flags change; confirm with claude plugin install --help if --scope is not accepted.

Verify

claude plugin validate .            # validate the whole marketplace
/plugin                             # confirm the handoff plugin is listed
/hooks                              # confirm the Stop hook registered

Update after editing: push to the repo, then

claude plugin marketplace update my-skills in each environment.

Plugins

handoff

Compacts the current conversation into .pipeline/<slug>/handoff.md and drops a one-shot marker (.pipeline/.spawn-successor). The plugin's Stop hook then spawns a fresh interactive Claude session in a new lower tmux pane, seeded with the handoff document, to continue with a clean context window.

The hook is the sole spawner — the skill itself never spawns. That keeps the model out of the spawn path entirely (it only writes a file and drops a marker, both reliable), so exactly one successor is created and a forgotten spawn is impossible.

Requirements: tmux (3.3a+), and jq for the hook's loop-guard (the hook degrades gracefully without jq). The session must be running inside tmux for the spawn to work.

local-backlog

Sets up a personal, git-excluded backlog in the current repo. Invoke

/local-backlog once per repo and it will:

  • create BACKLOG.local.md at the repo root (dated items, (P1)/(P2)/(P3)

priorities, ## Open / ## Done), with the "promote real work to …" line pointed at the repo's tracker (Azure DevOps / GitHub / GitLab, auto-detected from the origin remote);

  • write a ## Local backlog section into CLAUDE.local.md so future sessions

keep announcing changes, dating items, and sorting by priority — the part a one-shot skill can't do on its own;

  • add /BACKLOG.local.md and /CLAUDE.local.md to .git/info/exclude (the

local exclude — never the shared, tracked .gitignore).

It is idempotent and never overwrites an existing backlog. No hook, no tmux — it only reads/writes files. See docs/local-backlog-plugin-install-runbook.md.

Troubleshooting

The handoff runs but no new pane appears

If /handoff writes the document and drops the marker but no successor pane spawns, the most common cause is that the workspace is not trusted. Claude Code silently skips all hooks in untrusted workspaces — no error, nothing in the pane. Trust the workspace (Claude Code prompts on first entry to a new directory, or run /permissions / re-open the folder and accept the trust prompt), then try again.

Other things to check, in order:

1. Hook registered? Run /hooks and confirm a Stop hook pointing at

spawn-handoff-successor.sh is listed. If it isn't, the plugin install or manifest didn't load — re-run claude plugin validate . and reinstall. (The plugin manifest schema changes; valid-looking JSON has silently failed to load before.) 2. Inside tmux? The hook needs $TMUX set and a pane to split. If you launched claude outside tmux, the hook exits cleanly and leaves the marker in place. Start claude inside a tmux session. 3. Marker present? After a handoff, check ls .pipeline/.spawn-successor. If it's gone, the hook spawned successfully (it consumes the marker only on a successful spawn). If it's still there, the spawn didn't happen — re-check 1 and 2. 4. jq / tmux installed? Missing tmux stops the spawn; missing jq only disables the loop-guard (the hook still works).

Related plugins

Browse all →