一键导入
一键导入
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
wanman CLI command reference — inter-agent communication, task management, artifact storage
File and output conventions for agent workspaces
| 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