소스 정보
- 저장소
- chekusu/wanman
- 최근 소스 활동
- 2026년 4월 19일 15:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 681
- 포크
- 106
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/chekusu/wanman --skill cross-validation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Naming conventions for artifact kind and path, ensuring data can be aggregated and analyzed
Quality standards for structured deliverables, ensuring data is verifiable and traceable
Methodology for market research and data collection, ensuring data quality and source traceability
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cross-validation |
| description | CEO checks consistency of agent outputs during post-completion review |
After wanman task list shows all tasks with status=done, perform output consistency validation before inspecting artifact data.
# List all agent output files
find /workspace/agents -name "*.md" -o -name "*.html" | grep -v CLAUDE.md | sort
Extract the following key information from each file:
| Fact Type | Example |
|---|---|
| Brand name | "COFFEE TO" |
| Tagline | "Coffee to, begin." |
| Address | 2-XX-XX Kamimeguro, Meguro-ku, Tokyo |
| Business hours | 8:00 - 20:00 |
| Opening date | 2026.4.1 |
| Menu prices | Drip Coffee ¥500 |
| Instagram handle | @coffee.to.nakameguro |
| Color HEX values | #2D1B0E, #F5E6D3 |
Cross-check file by file:
Brand guide (marketing) brand name ←→ Website (dev) brand name
Brand guide tagline ←→ Poster (marketing) tagline
Brand guide colors ←→ Website CSS colors
Financial report pricing ←→ Website menu prices
Poster opening date ←→ Social media content date
Poster address ←→ Website address
When inconsistencies are found, defer to the earliest completed authoritative document (usually the brand guide) and create a correction task:
# Example: website brand name does not match brand guide
wanman task create "Fix website brand name: unify the brand name on the website from 'KAWA' to 'COFFEE TO' as specified in the brand guide. Update all brand names, taglines, and Instagram handles in index.html. Reference: /workspace/agents/output/marketing/brand-design.md" --assign dev --priority 1
When information conflicts, follow this order of precedence:
| Pattern | Cause | Fix |
|---|---|---|
| Website brand name differs from brand guide | Dev started website before brand design was complete | Create correction task for dev |
| Poster prices differ from financial pricing | Marketing and finance worked independently | Defer to finance, fix the poster |
| Social media dates differ from poster dates | Same agent produced outputs at different times | Unify to the latest confirmed date |
When creating tasks, use --after to declare dependencies:
# Brand design must be completed first
brand_id=$(wanman task create "Brand design" --assign marketing --priority 1 | grep -o '[a-f0-9-]\{36\}')
# Website development depends on brand design
wanman task create "Website development: based on the brand guide..." --assign dev --priority 5 --after $brand_id
# Poster design also depends on brand design
wanman task create "Opening poster: based on the brand guide..." --assign marketing --priority 4 --after $brand_id