From kagents
Release execution — SemVer versioning (MAJOR.MINOR.PATCH), pre-release labels (alpha, beta, rc), changelog generation (Keep a Changelog format), git tagging, GitHub Release creation with gh CLI. USE FOR: executing releases, generating changelogs, creating version tags and GitHub Releases. DO NOT USE FOR: ReleaseFlow branching or phase rules (use releaseflow-domain) or commit message format (use conventional-commits).
npx claudepluginhub grexyloco/k.agents --plugin kagentsThis skill uses the workspace's default tool permissions.
```
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.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
MAJOR.MINOR.PATCH
│ │ └── Bugfixes, keine API-Änderungen
│ └──────── Neue Features, abwärtskompatibel
└─────────────── Breaking Changes
1.2.0-alpha.1 (interne Tests)1.2.0-beta.1 (externe Tests)1.2.0-rc.1 (Release Candidate)main via PR (Squash Merge)v1.2.0)gh release create v1.2.0 \
--title "v1.2.0" \
--notes-file CHANGELOG.md \
--target main
## [1.2.0] - 2026-03-21
### Hinzugefügt
- Feature X (#42)
### Behoben
- Bug Y (#43)
### Breaking Changes
- API Z geändert (#44) — Migration: ...