This skill should be used when switching personas, creating new personas, or checking the current active persona. Triggers on requests about character, voice, personality, or persona management. <example> Context: User wants to switch persona user: "Switch to the developer persona" </example> <example> Context: User wants to create a persona user: "Create a new persona for code review" </example> <example> Context: User checks current state user: "What persona are you using?" </example>
From psnnpx claudepluginhub aladac/claude-pluginsThis skill uses the workspace's default tool permissions.
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.
Configures VPN and dedicated connections like Direct Connect, ExpressRoute, Interconnect for secure on-premises to AWS, Azure, GCP, OCI hybrid networking.
| Tool | Purpose |
|---|---|
mcp__plugin_psn_core__cart_list | List all available personas |
mcp__plugin_psn_core__cart_use | Switch to a different persona |
mcp__plugin_psn_core__cart_create | Create a new persona |
Manage AI personas (carts) for consistent voice and behavior.
mcp__plugin_psn_core__cart_list()
mcp__plugin_psn_core__cart_use(tag: "developer")
mcp__plugin_psn_core__cart_create(
tag: "reviewer",
name: "Code Reviewer",
type: "assistant"
)
Each persona (cart) has:
| Field | Description |
|---|---|
tag | Unique identifier (required) |
name | Display name |
type | Persona category |
cart_list()cart_use() if neededcart_use() to switch mid-session# Check what's available
personas = mcp__plugin_psn_core__cart_list()
# If no active persona, prompt user
if not personas.active:
# Ask user which persona to use
pass
mcp__plugin_psn_core__cart_create(
tag: "debug-assistant",
name: "Debug Helper",
type: "technical"
)
mcp__plugin_psn_core__cart_use(tag: "debug-assistant")
# For code review
mcp__plugin_psn_core__cart_use(tag: "reviewer")
# For documentation
mcp__plugin_psn_core__cart_use(tag: "writer")
# For pair programming
mcp__plugin_psn_core__cart_use(tag: "pair-partner")