From skill-authoring
Creates git commits in Conventional Commits format with required type/scope/subject, enforcing project conventions from CLAUDE.md. Use for committing changes, saving work, or staging files.
npx claudepluginhub fvadicamo/dev-agent-skills --plugin github-workflowThis skill uses the workspace's default tool permissions.
Creates git commits following Conventional Commits format.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Creates git commits following Conventional Commits format.
!git log --oneline -5 2>/dev/null
# 1. Stage changes
git add <files>
# 2. Create commit
git commit -m "type(scope): subject"
validation, auth, cookie-service, apisecurity (vulnerability fixes or hardening)git commit -m "$(cat <<'EOF'
feat(validation): add URLValidator with domain whitelist
Implement URLValidator class supporting:
- Domain whitelist enforcement
- Dangerous scheme blocking
Addresses Requirement 31
Part of Task 5.1
EOF
)"
references/commit_examples.md - Extended examples by type, good/bad comparisons