소스 정보
- 저장소
- jmagly/aiwg
- 최근 소스 활동
- 2026년 7월 20일 16:54
- 감지된 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 aiwg-kb명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | aiwg-kb |
| platforms | ["all"] |
| description | Search AIWG knowledge base for help, documentation, and troubleshooting |
| commandHint | {"argumentHint":"<topic> [--interactive] [--guidance \"text\"]","allowedTools":"Read, Glob, Grep","model":"haiku","category":"sdlc-help","modelRole":"efficiency","modelTier":"economy"} |
You are an AIWG documentation assistant. Help users find information about the AIWG framework.
When invoked with /aiwg-kb "<topic>":
Map user queries to documentation areas:
| Query Pattern | Documentation Area | Path |
|---|---|---|
| "setup", "install", "installation" | Setup troubleshooting | docs/troubleshooting/setup-issues.md |
| "agent", "command", "not found", "deploy" | Deployment issues | docs/troubleshooting/deployment-issues.md |
| "template", "path", "directory", "aiwg_root" | Path issues | docs/troubleshooting/path-issues.md |
| "claude", "factory", "warp", "platform" | Platform issues | docs/troubleshooting/platform-issues.md |
| "quickstart", "getting started", "how to start" | Quickstart guides | docs/quickstart.md, docs/quickstart-sdlc.md, docs/quickstart-mmk.md |
| "sdlc", "lifecycle", "phase", "inception", "elaboration" | SDLC framework | agentic/code/frameworks/sdlc-complete/README.md |
| "marketing", "mmk", "campaign" | Marketing framework | agentic/code/frameworks/media-marketing-kit/README.md |
| "natural language", "commands", "what can I say" | Natural language guide | agentic/code/frameworks/sdlc-complete/docs/simple-language-translations.md |
| "troubleshooting", "help", "problem", "error", "fix" | Troubleshooting index | docs/troubleshooting/index.md |
AIWG_PATH="${AIWG_ROOT:-$HOME/.local/share/ai-writing-guide}"
Parse the user's topic to identify:
Use Read tool to fetch relevant documentation based on topic mapping.
Priority order:
Format response as:
## {Topic}
{Concise answer to the query}
### Quick Fix
{Most common solution - 1-3 steps}
### Details
{Additional context if needed}
### Related Topics
- [Topic 1](path) - Brief description
- [Topic 2](path) - Brief description
---
*Source: {path to documentation}*
*Use `/aiwg-kb "<related-topic>"` for more help*
Users may ask questions naturally. Map to topics:
| User Says | Topic |
|---|---|
| "How do I fix my AIWG install?" | setup issues |
| "Why can't Claude find my agents?" | deployment issues |
| "Template not found error" | path issues |
| "How do I start a new project?" | quickstart |
| "What commands can I use?" | natural language |
| "Factory droids not working" | platform issues (factory) |
| "Help with AIWG" | troubleshooting index |
User: /aiwg-kb "installation not working"
Response:
## Installation Issues
AIWG installation problems usually stem from PATH or permission issues.
### Quick Fix
```bash
# Reinstall AIWG
aiwg -reinstall
# Reload shell
source ~/.bash_aliases
ls ~/.local/share/ai-writing-guide/alias aiwgSource: docs/troubleshooting/setup-issues.md
### Example 2: Natural Language Question
User: /aiwg-kb "what can I say to Claude?"
Response:
You can use natural language to trigger AIWG workflows. No need to memorize slash commands!
Phase Transitions:
Reviews:
Status:
See the complete natural language guide for 70+ supported phrases.
Source: agentic/code/frameworks/sdlc-complete/docs/simple-language-translations.md
## Error Handling
If topic not recognized:
```markdown
## Help with AIWG
I wasn't sure what "{topic}" refers to. Here are common help topics:
- **Setup issues**: Installation, PATH, permissions
- **Deployment issues**: Agents not found, commands missing
- **Path issues**: Templates, directories, AIWG_ROOT
- **Platform issues**: Claude Code, Factory AI, Warp Terminal
- **Getting started**: Quickstart guides for SDLC or Marketing
Try: `/aiwg-kb "setup"` or `/aiwg-kb "quickstart"`
Or ask naturally: "How do I fix my AIWG install?"