/cs-handoff-setup
First-run setup for the handoff skill. Walks 5 questions (save location, retention, redaction strictness, git context, recommender scope) and writes the config. Run any time to reconfigure.
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cs-handoff-setup
Context preview
What this command does when you run it.
First-run setup for the handoff skill. Walks 5 questions (save location, retention, redaction strictness, git context, recommender scope) and writes the config. Run any time to reconfigure.
Command definition
cs-handoff-setup.mdname: cs-handoff-setup
description: "First-run setup for the handoff skill. Walks 5 questions (save location, retention, redaction strictness, git context, recommender scope) and writes the config. Run any time to reconfigure."
argument-hint: "[--project to set project-specific overrides]"
allowed-tools: ["Bash"]
/cs:handoff-setup
Configure the handoff skill. Walks 5 questions (plus 1-2 optional) and writes the config. Re-run any time.
Invocation
/cs:handoff-setup # configure global defaults
/cs:handoff-setup --project # set project-specific overrides
Questions
1. **Save location** — OS temp / home folder / hidden home folder / per-project / custom. *No pre-selected default — explicit choice required on first run.* 2. **Retention window** — 7 / 30 days / forever / manual. 3. **Redaction strictness** — strict / warn / off. 4. **Git context** — auto-include branch + last commit + dirty file count? yes/no. 5. **Skill recommendation scope** — all repo / current domain only / off. 6. **Filename style** *(only if save location ≠ temp)* — date_slug / timestamp / mktemp.
Behaviour
- **Global config** at `~/.config/handoff/config.json`.
- **Project override** at `<repo>/.handoff/config.json` (with `--project`). Missing keys fall back to global.
- For `save_location.mode = project`, setup offers to append `.handoff/` to `.gitignore`.
- Idempotent. Re-running pre-fills current values.
Reset to defaults
Delete the config and rerun:
rm ~/.config/handoff/config.json
rm ~/.config/handoff/.setup-declined 2>/dev/null
Run
python3 ${CLAUDE_PLUGIN_ROOT}/skills/handoff/scripts/setup.pyFor project-scoped overrides:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/handoff/scripts/setup.py --reconfigure --projectRead more
name: cs-handoff-setup description: "First-run setup for the handoff skill. Walks 5 questions (save location, retention, redaction strictness, git context, recommender scope) and writes the config. Run any time to reconfigure." argument-hint: "[--project to set project-specific overrides]" allowed-tools: ["Bash"]
/cs:handoff-setup
Configure the handoff skill. Walks 5 questions (plus 1-2 optional) and writes the config. Re-run any time.
Invocation
/cs:handoff-setup # configure global defaults /cs:handoff-setup --project # set project-specific overrides
Questions
1. **Save location** — OS temp / home folder / hidden home folder / per-project / custom. *No pre-selected default — explicit choice required on first run.* 2. **Retention window** — 7 / 30 days / forever / manual. 3. **Redaction strictness** — strict / warn / off. 4. **Git context** — auto-include branch + last commit + dirty file count? yes/no. 5. **Skill recommendation scope** — all repo / current domain only / off. 6. **Filename style** *(only if save location ≠ temp)* — date_slug / timestamp / mktemp.
Behaviour
- **Global config** at `~/.config/handoff/config.json`.
- **Project override** at `<repo>/.handoff/config.json` (with `--project`). Missing keys fall back to global.
- For `save_location.mode = project`, setup offers to append `.handoff/` to `.gitignore`.
- Idempotent. Re-running pre-fills current values.
Reset to defaults
Delete the config and rerun:
rm ~/.config/handoff/config.json rm ~/.config/handoff/.setup-declined 2>/dev/null
Run
python3 ${CLAUDE_PLUGIN_ROOT}/skills/handoff/scripts/setup.pyFor project-scoped overrides:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/handoff/scripts/setup.py --reconfigure --project362 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Other commands on claude-skills.
- /focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Open command - /clean
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Open command - /cm
Stage working tree changes and create a Conventional Commit (no push).
Open command - /cp
Stage, commit, and push the current branch following git governance rules.
Open command - /pr
Create a pull request from the current branch.
Open command - /plugin-audit
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform compatibility, and ecosystem integration. Runs all built-in validation tools, invokes domain-appropriate agents for code review,
Open command

