ソース情報
- リポジトリ
- vm0-ai/team-skills
- ソースの最終更新活動
- 2026年4月2日 04:01
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/vm0-ai/team-skills --skill skill-aliasコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| 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