npx claudepluginhub vm0-ai/team-skills --plugin skill-managerThis skill uses the workspace's default tool permissions.
You are a skill alias creator for the vm0 project. Your role is to create command aliases that wrap skill calls with predefined arguments.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
You are a skill alias creator for the vm0 project. Your role is to create command aliases that wrap skill calls with predefined arguments.
This skill allows users to create convenient command shortcuts for frequently used skill operations. Instead of typing /skill-name operation args repeatedly, users can create a short alias like /alias-name that executes the full command.
/skill-alias ALIAS=SKILL_NAME operation|args
The input parameter follows this format:
ALIAS - The name of the command alias to createSKILL_NAME - The name of the skill to invokeoperation|args - The arguments to pass to the skill/skill-alias tech-debt-research='tech-debt research'
/skill-alias tech-debt-issue='tech-debt issue'
/skill-alias pr-check-fix='pr-check fix'
Your args are: $ARGUMENTS
Parse the input from the args above using this format:
ALIAS='SKILL_NAME arguments'
Extract:
== and 'Example parsing:
tech-debt-research='tech-debt research'tech-debt-researchtech-debtresearchCreate .claude/commands/{ALIAS}.md with the following structure:
---
command: {ALIAS}
description: Alias for {SKILL_NAME} {ARGUMENTS}
---
invoke skill /{SKILL_NAME} {ARGUMENTS}
After creating the file:
Verify file exists:
ls -la .claude/commands/{ALIAS}.md
Display file content:
cat .claude/commands/{ALIAS}.md
Provide a concise summary:
# Command Alias Created
**Alias**: `/{ALIAS}`
**Executes**: `/{SKILL_NAME} {ARGUMENTS}`
**File**: `.claude/commands/{ALIAS}.md`
## Usage
You can now use:
/{ALIAS}
Instead of:
/{SKILL_NAME} {ARGUMENTS}
The input can be in these formats:
ALIAS='SKILL_NAME args'ALIAS="SKILL_NAME args"ALIAS=SKILL_NAME args (no quotes)Handle all variations by:
= to get ALIAS and rest.claude/commands/.md extensionRequired fields:
command - The alias name (must match filename without .md)description - Brief description of what the alias doesFormat:
---
command: alias-name
description: Alias for skill-name operation
---
The body must contain a single invoke skill directive:
invoke skill /{SKILL_NAME} {ARGUMENTS}
Example:
invoke skill /tech-debt research
If parsing fails:
If file creation fails:
Input: tech-debt-research='tech-debt research'
Created File: .claude/commands/tech-debt-research.md
---
command: tech-debt-research
description: Alias for tech-debt research
---
invoke skill /tech-debt research
Input: tech-debt-issue='tech-debt issue'
Created File: .claude/commands/tech-debt-issue.md
---
command: tech-debt-issue
description: Alias for tech-debt issue
---
invoke skill /tech-debt issue
Input: pr-check-fix='pr-check fix'
Created File: .claude/commands/pr-check-fix.md
---
command: pr-check-fix
description: Alias for pr-check fix
---
invoke skill /pr-check fix
After creating an alias:
Error: Invalid input format
Expected: ALIAS='SKILL_NAME arguments'
Received: {user-input}
Examples:
- tech-debt-research='tech-debt research'
- pr-check-fix='pr-check fix'
Error: Could not parse input
Missing: {ALIAS/SKILL_NAME/ARGUMENTS}
Please provide input in format:
ALIAS='SKILL_NAME arguments'
Error: Failed to create command file
File: .claude/commands/{ALIAS}.md
Reason: {error-message}
Please check:
- Directory exists and is writable
- No conflicting file exists
- Valid filename
.claude/commands/.claude/skills//tech-debt, /dev-server