用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill team命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
WCAG accessibility analysis for color palettes including contrast ratios, compliance checking, and remediation suggestions. Use when user needs to verify colors meet accessibility standards.
Generate, analyze, compare, export, and suggest color palettes using color theory. Use when user asks about colors, palettes, color schemes, or needs help choosing colors for a project.
Research current color trends from Pantone, architecture, film, and design. Use when user asks about trending colors, popular palettes, or wants research-backed color inspiration.
基于 SOC 职业分类
正在显示 SKILL.md
| namespace | aiwg |
| name | team |
| platforms | ["all"] |
| description | Orchestrate multi-agent teams across AIWG providers natively on Claude Code or emulated via Mission Control elsewhere |
You orchestrate multi-agent teams across all AIWG providers. On Claude Code, teams run natively via the Task tool. On all other providers, you emulate team execution through aiwg mc (Mission Control). Team definitions live in agentic/code/frameworks/sdlc-complete/teams/.
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
team run with named teamteam infoteam listteam run greenfield "<task>"| Pattern | Example | Action |
|---|---|---|
| Run a named team | "run the sdlc-review team on the SAD" | aiwg team run sdlc-review "<task>" |
| List available teams | "what teams are available" | aiwg team list |
| Inspect team composition | "who is on the security review team" | aiwg team info security-review |
| Task-inferred team | "review this architecture for security" | aiwg team run security-review "<task>" |
When triggered:
Parse the subcommand:
run <team-name> "<task>" — execute team against a tasklist — list all available teams from the manifestinfo <team-name> — show team composition and use casesDetect provider:
CLAUDE_CODE_VERSION set) → native Task-tool dispatchaiwg mc dispatchRun the appropriate command:
# Run a team on a task
aiwg team run sdlc-review "Review the SAD at .aiwg/architecture/sad.md"
# Run with provider override
aiwg team run security-review "Audit auth module" --provider cursor
# List all teams
aiwg team list
# Inspect a team
aiwg team info greenfield
Report execution progress:
aiwg mc statusTeams are defined as JSON files in agentic/code/frameworks/sdlc-complete/teams/. Built-in teams:
| Team | Use Cases |
|---|---|
sdlc-review | Architecture, requirements, and test review |
security-review | Threat modeling, security audit, privacy review |
api-development | API design, documentation, test generation |
full-stack | Feature implementation across layers |
greenfield | New project inception and architecture |
maintenance | Refactoring, debt reduction, upgrades |
migration | Database or platform migration planning |
# .aiwg/teams/my-team.yaml (project-local override)
name: Custom Review Team
slug: custom-review
description: Tailored review for domain-specific concerns
agents:
- agent: security-architect
role: lead
responsibilities:
- Security threat model
- Auth design review
- agent: test-architect
role: contributor
responsibilities:
- Test coverage gaps
- Integration risks
- agent: technical-writer
role: reviewer
responsibilities:
- Clarity and consistency
dispatch: parallel
Agents launch as parallel Task tool calls in a single message. Each agent runs independently with its assigned prompt, and results are collected and synthesized.
# Steward emulates by dispatching via Mission Control
SESSION=$(aiwg mc start --name "team-run-$(date +%s)")
aiwg mc dispatch $SESSION "security-architect: <task>" --completion "Review complete"
aiwg mc dispatch $SESSION "test-architect: <task>" --completion "Review complete"
aiwg mc watch $SESSION
User: "Run the security review team on the auth module"
Extraction: team run security-review on the auth module
Action:
aiwg team run security-review "Review src/auth/ for security vulnerabilities, focusing on token handling and session management"
Response (Claude Code, native):
Launching security-review team (3 agents, parallel)...
security-architect: reviewing...
security-auditor: reviewing...
privacy-officer: reviewing...
Results collected. 2 critical findings, 4 recommendations.
Full report: .aiwg/working/team-runs/security-review-20260401-143022.md
User: "What teams do I have available?"
Action:
aiwg team list
Response:
Available teams (7):
api-development API design, documentation, test generation
full-stack Feature implementation across layers
greenfield New project inception and architecture
maintenance Refactoring, debt reduction, upgrades
migration Database or platform migration planning
sdlc-review Architecture, requirements, and test review
security-review Threat modeling, security audit, privacy review
User: "Who is on the sdlc-review team?"
Action:
aiwg team info sdlc-review
Response:
Team: sdlc-review
Description: Architecture, requirements, and test review
Dispatch: parallel
Agents:
architecture-designer [lead] Architecture quality and pattern review
requirements-analyst [contributor] Requirements traceability and completeness
test-architect [contributor] Testability and coverage gaps
technical-writer [reviewer] Clarity and documentation quality
Use cases:
- SAD review before Architecture Baseline Milestone
- Elaboration phase gate check
- ADR peer review
If the user names a task without a team:
If the team name is ambiguous:
security-review or sdlc-review?"