en un clic
skill-alias
Create command aliases for skills with arguments
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Create command aliases for skills with arguments
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Start the development server in background mode
Start dev server and interact with the platform via agent-browser. Use when user asks to browse, test, or demo the platform UI, connect services, or perform any browser-based interaction with the local dev environment.
Reset turbo environment (clean node_modules, reinstall, sync DB)
Check if a PR, commit, or tag has been deployed to production
Query, investigate, and manage Sentry issues for debugging and incident response
Create or update a PR and hand it off to a coding agent worker via load balancing. Removes pending label if present, then assigns a worker.
| name | skill-alias |
| description | Create command aliases for skills with arguments |
| context | fork |
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