소스 정보
- 저장소
- 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-update-claude명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-update-claude |
| platforms | ["all"] |
| description | Update existing project CLAUDE.md with latest AIWG orchestration guidance |
| commandHint | {"argumentHint":["project-directory --interactive --guidance \"text\""],"allowedTools":"Read, Write, Edit, Bash","model":"haiku","category":"sdlc-setup","modelRole":"efficiency","modelTier":"economy"} |
Skill access pattern (post-kernel-pivot, 2026.5+)
Skill names referenced in this document are AIWG skills, not slash commands. Most are not kernel-listed and cannot be invoked as
/skill-nameby the platform. Reach them via:aiwg discover "<capability>" aiwg show skill <name>Only kernel-listed skills (
aiwg-doctor,aiwg-refresh,aiwg-status,aiwg-help,use,steward) are directly invokable as slash commands. See skill-discovery rule.
You are an SDLC Configuration Specialist responsible for updating existing project CLAUDE.md files with the latest AIWG orchestration guidance while preserving all user-specific content.
When invoked with /aiwg-update-claude [project-directory]:
PROJECT_DIR="${1:-.}"
CLAUDE_MD="$PROJECT_DIR/CLAUDE.md"
if [ ! -f "$CLAUDE_MD" ]; then
echo "❌ Error: No CLAUDE.md found at $CLAUDE_MD"
echo ""
echo "For new projects, use: /aiwg-setup-project"
exit 1
fi
echo "✓ Found existing CLAUDE.md: $CLAUDE_MD"
Use path resolution from aiwg-config-template.md:
# Function: Resolve AIWG installation path
resolve_aiwg_root() {
# 1. Check environment variable
if [ -n "$AIWG_ROOT" ] && [ -d "$AIWG_ROOT" ]; then
echo "$AIWG_ROOT"
return 0
fi
# 2. Check installer location (user)
if [ -d ~/.local/share/ai-writing-guide ]; then
echo ~/.local/share/ai-writing-guide
return 0
fi
# 3. Check system location
if [ -d /usr/local/share/ai-writing-guide ]; then
echo /usr/local/share/ai-writing-guide
return 0
fi
# 4. Check git repository root (development)
if git rev-parse --show-toplevel &>/dev/null; then
echo "$(git rev-parse --show-toplevel)"
return 0
fi
# 5. Fallback to current directory
echo "."
return 1
}
AIWG_ROOT=$(resolve_aiwg_root)
if [ ! -d "$AIWG_ROOT/agentic/code/frameworks/sdlc-complete" ]; then
echo "❌ Error: AIWG installation not found at $AIWG_ROOT"
exit 1
fi
CLAUDE_TEMPLATE="$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/templates/project/CLAUDE.md"
if [ ! -f "$CLAUDE_TEMPLATE" ]; then
echo "❌ Error: CLAUDE.md template not found at $CLAUDE_TEMPLATE"
exit 1
fi
echo "✓ Loaded CLAUDE.md template with latest orchestration guidance"
Read existing CLAUDE.md and identify sections:
# Pseudo-code for section identification
existing_content = read_file(CLAUDE_MD)
sections = {
"user_header": extract_until("## AIWG"), # Everything before AIWG section
"aiwg_section": extract_between("## AIWG", next_major_heading),
"user_footer": extract_after(aiwg_section) # Everything after AIWG section
}
# If no AIWG section exists
if not sections["aiwg_section"]:
sections["user_header"] = entire_file
sections["user_footer"] = ""
Merge logic:
## AIWG)Use Read and Edit tools to identify and preserve user sections:
# What to PRESERVE:
- Custom ## Repository Purpose content
- Project-specific rules and guidelines
- Custom tool configurations
- Team conventions
- Any sections NOT starting with "## AIWG"
# What to REPLACE:
- Entire ## AIWG SDLC Framework section
- All subsections under ## AIWG
# What to ADD if missing:
- ## AIWG section from template (after Repository Purpose, before user footer)
Strategy A: AIWG Section Exists
Use Edit tool to replace AIWG section:
# Find section boundaries
aiwg_start = find_heading("## AIWG")
aiwg_end = find_next_major_heading_after(aiwg_start) or end_of_file
# Read template and substitute AIWG_ROOT
new_aiwg_section = read_template()
new_aiwg_section = substitute("{AIWG_ROOT}", AIWG_ROOT)
# Replace old AIWG section with new
old_section = extract(aiwg_start, aiwg_end)
Edit(
file_path=CLAUDE_MD,
old_string=old_section,
new_string=new_aiwg_section
)
Strategy B: No AIWG Section
Use Edit tool to append AIWG section:
# Find insertion point (after Repository Purpose, before any footer content)
insertion_point = find_heading("## Repository Purpose")
next_heading = find_next_major_heading_after(insertion_point)
# Read template and substitute
new_aiwg_section = read_template()
new_aiwg_section = substitute("{AIWG_ROOT}", AIWG_ROOT)
# Insert AIWG section
if next_heading:
# Insert before next heading
old_string = extract(insertion_point, next_heading)
new_string = old_string + "\n\n---\n\n" + new_aiwg_section + "\n\n---\n\n"
else:
# Append to end
old_string = extract(insertion_point, end_of_file)
new_string = old_string + "\n\n---\n\n" + new_aiwg_section
Run validation checks:
echo ""
echo "======================================================================="
echo "CLAUDE.md Update Validation"
echo "======================================================================="
echo ""
# Check 1: AIWG section updated
if grep -q "## AIWG SDLC Framework" "$CLAUDE_MD"; then
echo "✓ AIWG section updated"
else
echo "❌ AIWG section not found after update"
fi
# Check 2: Orchestrator role present
if grep -q "Core Platform Orchestrator Role" "$CLAUDE_MD"; then
echo "✓ Orchestrator role documentation present"
else
echo "❌ Orchestrator role documentation missing"
fi
# Check 3: Natural language translations present
if grep -q "Natural Language Command Translation" "$CLAUDE_MD"; then
echo "✓ Natural language translation guide present"
else
echo "❌ Natural language translation guide missing"
fi
# Check 4: Multi-agent pattern present
if grep -q ;
grep -q ;
Check if Factory AI is also being used and update AGENTS.md accordingly:
# Detect Factory AI deployment
if [ -d "$PROJECT_DIR/.factory/droids" ]; then
echo ""
echo "======================================================================="
echo "Factory AI Detected - AGENTS.md Update Recommended"
echo "======================================================================="
echo ""
# Check if aiwg-update-agents-md command exists
if [ -f "$AIWG_ROOT/agentic/code/frameworks/sdlc-complete/commands/aiwg-update-agents-md.md" ]; then
echo "✓ Factory AI droids detected in .factory/droids/"
echo "ℹ️ AGENTS.md should also be updated for Factory AI users"
echo ""
echo "Recommended next step:"
echo " /aiwg-update-agents-md"
echo ""
else
echo "⚠️ Factory AI droids detected but aiwg-update-agents-md command not found"
echo " Install latest AIWG version for Factory AI support"
fi
echo "======================================================================="
fi
Cross-Platform Integration:
Use Bash tool for Factory AI detection.
These sections are ALWAYS preserved:
# CLAUDE.md (header)## Repository Purpose (and its content)## headings (not "## AIWG")## Project-Specific Notes (footer section)Example existing CLAUDE.md:
# CLAUDE.md
## Repository Purpose
This is a financial trading platform built with Python and FastAPI.
## Team Rules
- All commits must be signed
- Use black for formatting
- Run tests before pushing
## AIWG SDLC Framework
{...old AIWG section...}
## Deployment Notes
- Production deploys require approval
- Staging auto-deploys from main
After update:
# CLAUDE.md
## Repository Purpose
This is a financial trading platform built with Python and FastAPI.
## Team Rules
- All commits must be signed
- Use black for formatting
- Run tests before pushing
---
## AIWG SDLC Framework
{...NEW orchestration guidance from template...}
---
## Deployment Notes
- Production deploys require approval
- Staging auto-deploys from main
Case 1: AIWG section at end of file
# CLAUDE.md
## Repository Purpose
...
## AIWG SDLC Framework
{...old section...}
Action: Replace AIWG section through EOF
Case 2: Multiple user sections after AIWG
# CLAUDE.md
## Repository Purpose
...
## AIWG SDLC Framework
{...old section...}
## Deployment Notes
...
## Security Rules
...
Action: Replace AIWG section, preserve all user sections after
Case 3: No AIWG section (first time setup)
# CLAUDE.md
## Repository Purpose
...
## Team Rules
...
Action: Insert AIWG section after Repository Purpose, before Team Rules
Provide clear status report:
# CLAUDE.md Update Complete
**Project**: {project-directory}
**AIWG Installation**: {AIWG_ROOT}
**Operation**: {UPDATED | INSERTED}
## Changes Made
### AIWG Section
- {UPDATED | INSERTED} AIWG framework documentation
- ✓ Added Core Platform Orchestrator Role guidance
- ✓ Added Natural Language Command Translation map
- ✓ Added Multi-Agent Orchestration Pattern
- ✓ Updated command reference to latest flows
- ✓ Substituted AIWG_ROOT: {actual-path}
### User Content Preserved
- ✓ Repository Purpose section preserved
- ✓ Custom team rules preserved
- ✓ {N} custom sections preserved
- {List any custom sections found}
## Validation Results
{validation checklist from Step 7}
## What's New in This Update
**Orchestration Architecture**:
- Core platform (Claude Code) is now the orchestrator, not command executor
- Flow commands are templates, not bash scripts to run
- Multi-agent coordination pattern documented
**Natural Language Support**:
- Users can use natural language instead of slash commands
- Translation map for common phrases ("transition to Elaboration", etc.)
- Intent recognition patterns documented
**Multi-Agent Workflow**:
- Primary Author → Parallel Reviewers → Synthesizer → Archive pattern
- Parallel execution guidance (single message, multiple Task calls)
- Progress tracking with ✓ ⏳ ❌ symbols
**Enhanced Guidance**:
- --guidance and --interactive parameter support
- Phase-specific workflow patterns
- Troubleshooting and common patterns
## Next Steps
1. **Review Updated Sections**: Read through the new AIWG orchestration guidance
2. **Test Natural Language**: Try "Let's transition to Elaboration" instead of slash commands
: Run if needed
: Ensure are deployed
{if Factory AI detected}
: Run to update AGENTS.md with project-specific content for Factory AI users
A backup of your previous CLAUDE.md has been saved to:
{CLAUDEMD}.backup-{timestamp} {CLAUDE
CLAUDE.md Not Found:
❌ Error: No CLAUDE.md found at {path}
For new projects, use:
/aiwg-setup-project
For projects that never had CLAUDE.md, create one first or use aiwg-setup-project.
AIWG Template Not Found:
❌ Error: AIWG template not found at {CLAUDE_TEMPLATE}
Please update AIWG installation:
aiwg -update
Or reinstall:
aiwg -reinstall
Merge Conflict:
⚠️ Warning: Could not automatically merge AIWG section
Manual review required. The file structure is unexpected.
Please review:
{CLAUDE_MD}
Backup saved to:
{CLAUDE_MD}.backup-{timestamp}
This command succeeds when:
Use Read tool to:
Use Edit tool to:
Use Bash tool to:
DO NOT:
| Feature | aiwg-setup-project | aiwg-update-claude |
|---|---|---|
| Target | New projects or first-time setup | Existing projects with CLAUDE.md |
| Operation | Create or append AIWG section | Intelligently replace AIWG section |
| User Content | May not exist yet | MUST be preserved |
| Backup | Optional | ALWAYS created |
| Validation | Basic checks | Comprehensive validation |
| Use Case | Initial setup | Update to latest guidance |