Write git commit messages for Tenzir repositories. Use when committing changes, running git commit, drafting commit messages, detecting staged changes, or asking about commit format and subject lines.
Generates git commit messages for Tenzir repositories following conventional commit format.
npx claudepluginhub tenzir/claude-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Write clear, consistent git commit messages in Tenzir projects.
<subject>
<body>
Subject line:
Body (optional):
Perspective: Write from users' capabilities and needs, not technical implementation.
Good: "Add DNS resolution operator" Bad: "Implement dns_lookup in libtenzir"
Voice: Active voice, present tense.
Good: "Fix crash when input file is empty" Bad: "Fixed a bug that was causing crashes"
Add slice function for substring extraction
Fix crash when input file is empty
The parser assumed at least one byte of input. Now it handles
empty files gracefully by returning an empty result.
Resolves: #456
Remove deprecated export command
Use `to` instead. The export command has been deprecated since v4.0.
Resolves: #123 or See also: #456git commit --fixup <SHA1> for corrections meant to be squashedActivates 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.
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.
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.