From ctx-customer-pack
Development tools: create_feature_pr, get_feature, merge_feature_pr, start_new_feature, update_feature_decisions
npx claudepluginhub codota/ctx-customer-pack-distributable --plugin ctx-customer-packThis skill is limited to using the following tools:
> Auto-generated from 5 exported tool(s) in the Context Engine.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Auto-generated from 5 exported tool(s) in the Context Engine.
Update a Feature entity with Pull Request information. Call this after creating a PR via gh CLI.
Call mcp__tabnine-ctx-cloud__create_feature_pr with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| featureName | string | Yes | The feature name to update |
| prNumber | number | Yes | The PR number |
| prUrl | string | Yes | The full PR URL |
| prTitle | string | Yes | The PR title |
| reviewers | string | No | Comma-separated list of reviewer usernames |
| filesChanged | string | No | Comma-separated list of changed files |
Retrieve information about a Feature entity by name.
Call mcp__tabnine-ctx-cloud__get_feature with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| featureName | string | Yes | The feature name to look up |
Mark a Feature as merged. Call this after successfully merging the PR.
Call mcp__tabnine-ctx-cloud__merge_feature_pr with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| featureName | string | Yes | The feature name to mark as merged |
| mergeCommit | string | No | The merge commit SHA |
Register a new development feature in the Context Engine. Creates a Feature entity to track the feature lifecycle including branch, worktree, decisions, and PR info. Call this after creating the git worktree and feature branch.
Call mcp__tabnine-ctx-cloud__start_new_feature with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| featureName | string | Yes | The feature name (used as entity name) |
| branchName | string | Yes | The full git branch name (e.g., feature/my-feature) |
| worktreePath | string | Yes | Relative path to the worktree (e.g., .worktrees/my-feature) |
| baseBranch | string | No | The base branch (default main) |
| description | string | No | Brief description of the feature |
Add a design decision to an existing Feature entity. Use this to record architectural choices, implementation decisions, and their rationale.
Call mcp__tabnine-ctx-cloud__update_feature_decisions with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| featureName | string | Yes | The feature name to update |
| decision | string | Yes | The design decision that was made |
| rationale | string | Yes | The reasoning behind this decision |
| alternatives | string | No | Alternative approaches considered |