43 skills and 19 agents for software engineering — knowledge, tools, frameworks, playbooks, roles, and agents
npx claudepluginhub krzysztofsurdy/code-virtuoso5 playbook skills — PHP upgrade, Composer dependencies, branch finishing, ticket delivery, and worktree ops
No description available.
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Share bugs, ideas, or general feedback.

AI agent skill sets for software engineering — built on the Agent Skills open standard. Knowledge, Tools, Frameworks, Playbooks, Roles, and Agents.
Six categories, installable independently or as bundles:
# Interactive — select skills and agents to install
npx skills add krzysztofsurdy/code-virtuoso
# Install specific skills
npx skills add krzysztofsurdy/code-virtuoso --skill design-patterns --skill refactoring
# Install all skills to all agents
npx skills add krzysztofsurdy/code-virtuoso --all
# Install globally (available in all projects)
npx skills add krzysztofsurdy/code-virtuoso -g
# List available skills without installing
npx skills add krzysztofsurdy/code-virtuoso --list
# Check for available updates
npx skills check
# Update all installed skills to latest versions
npx skills update
macOS / Linux — runs silently on each new shell, at most once per day:
echo '_skills_marker="${TMPDIR:-/tmp}/.skills-updated-$(date +%Y%m%d)"
[ ! -f "$_skills_marker" ] && (npx skills update --yes >/dev/null 2>&1 && touch "$_skills_marker" &)' >> ~/.zshrc
Windows (PowerShell) — same behavior, once per day on shell startup:
Add-Content $PROFILE '$marker = "$env:TEMP\.skills-updated-$(Get-Date -Format yyyyMMdd)"; if (-not (Test-Path $marker)) { Start-Job { npx skills update --yes *> $null; New-Item $using:marker -Force } | Out-Null }'
Project-level — auto-update after every git pull via post-merge hook:
printf '#!/bin/sh\nnpx skills update --yes >/dev/null 2>&1 &\n' > .git/hooks/post-merge && chmod +x .git/hooks/post-merge