From klaussy
Refreshes klaussy-generated boilerplate (skills, rules, hooks) across all scaffolded agents after upgrading klaussy. Shows diff of changes before commit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/klaussy:klaussy-update [--skip-enrich][--skip-enrich]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Refresh this repository's klaussy-generated boilerplate to match the latest klaussy version, for every agent klaussy previously scaffolded (Claude Code, Gemini CLI, Cursor, Codex, GitHub Copilot, Google Antigravity, Cline, Aider).
Refresh this repository's klaussy-generated boilerplate to match the latest klaussy version, for every agent klaussy previously scaffolded (Claude Code, Gemini CLI, Cursor, Codex, GitHub Copilot, Google Antigravity, Cline, Aider).
Upgrade klaussy first. Run pipx upgrade klaussy (or pip install --user --upgrade klaussy if klaussy wasn't installed via pipx). Verify the new version with klaussy --version. Note the version for the report at the end.
Read the existing version marker. cat .claude/skills/.klaussy-version captures the version that last generated the skills. If the new klaussy version is the same as the marker, klaussy will skip — surface that to the user and confirm they want to proceed anyway (rare; usually only useful if you've also bumped klaussy-repo-conventions and want to re-run the path-scoped CLAUDE.md emission).
Detect the base branch the same way klaussy-init does (git branch --list dev develop main master | head -1).
Run klaussy init --force. The --force flag overrides the version-skip check and rewrites all generated files with the new templates:
klaussy init --force --base-branch <detected> $ARGUMENTS
Diff the result. Run git diff over the generated files for every scaffolded agent — Claude (CLAUDE.md, .claude/) plus any of GEMINI.md/.gemini/, AGENTS.md (Codex/Antigravity), .cursor/, .github/copilot-instructions.md/.github/skills/, .clinerules/, CONVENTIONS.md (Aider) that exist — and summarize the substantive changes for the user:
<repo>-plan / <repo>-review / etc..claude/rules/)Report. Tell the user the old marker version → new version, what materially changed in the generated content, and remind them to commit.
klaussy-init skill instead (running klaussy init --force on a clean repo works but the skill auto-detect is cleaner).klaussy skills, klaussy hooks, or klaussy settings directly without init --force.klaussy init --force against the existing version, but flag that this is unusual.npx claudepluginhub steph-dove/klaussy-agents --plugin klaussyRefreshes CopilotKit agent SKILLs by pulling the latest definitions from GitHub. For updating the agent's knowledge, not the project codebase.
Scaffolds per-agent conventions (CLAUDE.md, GEMINI.md, Cursor rules, Copilot instructions) and repo-namespaced skills for eight AI coding tools via klaussy. Run once per repo.
Upgrades Claude Code plugins by aligning skills, hooks, and patterns with latest capabilities and best practices. Use after updates, for modernization, or on user request.