focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Update all the documentation related files.
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/update-docsContext preview
What this command does when you run it.
Update all the documentation related files.
description: Update all the documentation related files.
After completing any skill creation, agent creation, or command creation in this repository, run the full post-creation sync pipeline below. Execute every step — never skip a task. If something is unclear or a step fails, ask the user for guidance before continuing.
---
Scan the working tree to identify what was added, modified, or deleted:
git status --short
Classify each change:
Report the inventory to the user before proceeding.
---
Ensure all platforms have compatible versions of every skill, agent, and command.
Run the Codex sync script to regenerate symlinks and the skills index:
python3 scripts/sync-codex-skills.py --verbose
Verify the output: check `.codex/skills-index.json` for correct `total_skills` count and that new skills appear in the index.
Run the Gemini sync script:
python3 scripts/sync-gemini-skills.py --verbose
Verify: check `.gemini/skills-index.json` for correct total count. New skills, agents, and commands should all have corresponding entries and symlinks under `.gemini/skills/`.
Verify that `scripts/openclaw-install.sh` will pick up the new skills. The install script uses the same directory structure, so no separate sync is needed — but confirm the new skill directories are not excluded by any filter in the script.
Report sync results (skill counts per platform) to the user.
---
For each domain that had changes, update the domain's `.claude-plugin/plugin.json`:
Domain plugin.json locations:
Update `.claude-plugin/marketplace.json`:
---
Update `/CLAUDE.md` (the root project instructions):
For each domain that had changes, update its `CLAUDE.md`:
Domain CLAUDE.md locations:
Update `/README.md`:
Update `docs/index.md`:
Update `docs/getting-started.md`:
---
Run the docs generation script to create/update all MkDocs pages:
python3 scripts/generate-docs.py
This generates pages for:
Open `mkdocs.yml` and update the `nav:` section:
python3 -m mkdocs build 2>&1 | tail -5
The build should complete without errors. Warnings about relative links in SKILL.md files are expected and can be ignored (they reference skill-internal paths like `references/` and `scripts/`).
Report the build result and page count to the user.
---
Run a final consistency check across all updated files:
1. **Count consistency** — Verify the same skill/agent/comma
388 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
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…