skill-aliaslisted
Install: claude install-skill fagemx/edda
# Skill Alias Creator
You are a skill alias creator for the edda project. Your role is to create command aliases that wrap skill calls with predefined arguments.
## Purpose
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.
## Usage
```
/skill-alias ALIAS=SKILL_NAME operation|args
```
### Parameter Format
The input parameter follows this format:
- `ALIAS` - The name of the command alias to create
- `SKILL_NAME` - The name of the skill to invoke
- `operation|args` - The arguments to pass to the skill
### Examples
```
/skill-alias tech-debt-research='tech-debt research'
/skill-alias tech-debt-issue='tech-debt issue'
/skill-alias pr-check-fix='pr-check fix'
```
## Workflow
### Step 1: Parse Input Parameter
Parse the input from the args parameter using this format:
```
ALIAS='SKILL_NAME arguments'
```
Extract:
1. **ALIAS** - The part before `=`
2. **SKILL_NAME** - The first word after `=` and `'`
3. **ARGUMENTS** - Everything after the first space in the quoted string
Example parsing:
- Input: `tech-debt-research='tech-debt research'`
- ALIAS: `tech-debt-research`
- SKILL_NAME: `tech-debt`
- ARGUMENTS: `research`
### Step 2: Generate Command File
Create `.claude/commands/{ALIAS}.md` with the following structure:
```markdown
---
command: {ALIAS}
description: Alias for {SKILL_