소스 정보
- 저장소
- jmagly/aiwg
- 최근 소스 활동
- 2026년 4월 30일 21:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 178
- 포크
- 26
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jmagly/aiwg --skill add-command명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| namespace | aiwg |
| name | add-command |
| platforms | ["all"] |
| description | Scaffold a new command definition inside an existing addon or framework |
Scaffold a new command definition inside an existing addon or framework.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
| Pattern | Example | Action |
|---|---|---|
| Named add | "add command lint-fix --to aiwg-utils" | Scaffold directly |
| Template specified | "add command deploy-all --template orchestration" | Use named template |
| Interactive | "add command --interactive --to sdlc-complete" | Guided mode |
| Target omitted | "add command my-command" | Ask which addon or framework |
Extract from $ARGUMENTS:
<name> — kebab-case command name (required)--to <target> — addon or framework directory name (required)--template <type> — one of utility (default), transformation, orchestration--interactive — enable guided design questionsIf either <name> or --to is missing, ask before proceeding.
Commands in AIWG are generated from skills at deploy time. The primary source of truth is the skill definition; the command file is the deployable artifact. This skill scaffolds the command .md file directly inside the target's commands/ directory.
Commands differ from skills:
/command-name $ARGUMENTSUse a command when the user needs explicit control over invocation.
Confirm the target exists:
# Check addons
ls agentic/code/addons/<target>/
# Check frameworks
ls agentic/code/frameworks/<target>/
| Template | Use When | Structure |
|---|---|---|
utility | Single action, quick operation | Arguments, Steps, Output |
transformation | Input → processed output pipeline | Input, Pipeline stages, Output format |
orchestration | Multi-agent workflow, phase transitions | Phases, Agent assignments, Gate criteria |
Ask before generating:
--flag options should it support?aiwg add-command <name> --to <target> --template <type>
---
name: <name>
description: <one-sentence purpose>
args: [<arg>] [--option value]
---
# Command Title
[Description]
## Usage
\`\`\`
/<name> <arg> [--option value]
\`\`\`
## Arguments
| Argument | Required | Description |
|----------|----------|-------------|
| <arg> | Yes | What it controls |
## Options
| Option | Default | Description |
|--------|---------|-------------|
| --option | value | What it controls |
## Execution
1. Validate inputs
2. [Step 2]
3. [Step 3]
## Output
[What success looks like]
The CLI tool updates <target>/manifest.json. Verify:
{
"commands": ["existing-command", "<name>"]
}
<target>/commands/<name>.md
Manifest updated: <target>/manifest.json
Command Created: <name>
───────────────────────
Location: <target>/commands/<name>.md
Template: <type>
Created:
✓ <target>/commands/<name>.md
✓ manifest.json updated
Next Steps:
1. Define arguments and options
2. Write execution steps
3. Specify output format
4. Deploy: aiwg use <target>
5. Test: /<name> --help
User: "add command validate-intake --to sdlc-complete"
Action:
aiwg add-command validate-intake --to sdlc-complete
Result: agentic/code/frameworks/sdlc-complete/commands/validate-intake.md scaffolded with utility template.
User: "create an orchestration command for running the security review cycle in aiwg-utils"
Extraction: name=security-review-cycle, target=aiwg-utils, template=orchestration
Action:
aiwg add-command security-review-cycle --to aiwg-utils --template orchestration
User: "scaffold a command called convert-voice --to voice-framework --template transformation --interactive"
Process: Guided questions clarify input format, transformation pipeline, and output shape before scaffolding.