Split large changes into logical commits by semantic meaning. Use when handling large features or refactors that should be split into focused commits.
Splits large changes into logical commits by semantic meaning for focused version control.
npx claudepluginhub kkhys/claude-code-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Split large changes into logical commits organized by semantic meaning. This ensures each commit represents a single, cohesive unit of work.
Analyze Changes
git status to identify all modified, added, and deleted filesgit diff to review the full scope of changesIdentify Semantic Groups
Interactive Selection
git add <files> to stage relevant filesgit diff --cachedformatting-commit skill to create properly formatted commitCommit Creation
For each semantic group, use the formatting-commit skill to ensure Conventional Commits compliance.
The skill provides detailed guidance on commit format, types, and best practices.
Given changes across auth, API, and docs:
fix(auth): handle token expirationfeat(api): add user profile endpointdocs(api): add authentication guiderefactor(core): extract validation utilitiesfeat(feature): implement new functionality
test(feature): add unit tests for new feature
fix(bug): resolve issue with edge case
docs(bug): document expected behavior
refactor(module): extract shared logic
perf(module): optimize performance after refactoring
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.