원클릭으로
wiki-doc-generator
Generate structured wiki documentation from brand campaign outputs and business artifacts using parallel agent dispatch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate structured wiki documentation from brand campaign outputs and business artifacts using parallel agent dispatch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
End-to-end brand identity orchestration system. Generates text strategy, visual assets, campaign copy, video deliverables, and publishing outputs using 44 specialized skills across 9 categories. Chains FAL.AI/Nano Banana/Flux visual generation with brand positioning, buyer personas, and campaign workflows via wave-based execution. Includes Remotion-based programmatic video generation.
Transform markdown documentation folders into professional Astro-based wikis using refero-design principles (research-first, anti-AI-slop: no default emojis, no 3-column layouts, sections + dividers + media blocks over cards, neutral color system). Use when the user has a folder of .md files and wants to generate a polished wiki/documentation site with dark/light mode support, readable typography, and professional aesthetics. Triggers on requests involving markdown-to-wiki conversion, documentation site generation, Astro wiki creation, or brand wiki themes.
Defines brand voice persona and tone calibration using persona and positioning data to produce a reusable meta-prompt for copywriting.
Generate images with Alibaba Qwen-Image-2.0-Pro via inference.sh CLI. Professional text rendering, fine-grained realism, enhanced semantic adherence. Ideal for posters, banners, and text-heavy designs. Triggers: qwen image pro, qwen-image-pro, qwen 2 pro, alibaba image pro, dashscope pro, professional text rendering
Generate and edit images with Alibaba Qwen-Image-2.0 models via inference.sh CLI. Models: Qwen-Image-2.0 (fast), Qwen-Image-2.0-Pro (professional text rendering). Capabilities: text-to-image, multi-image editing, complex text rendering. Triggers: qwen image, qwen-image, alibaba image, dashscope image, qwen image 2, qwen image pro
Batteries-included agent component for React/Next.js from ui.inference.sh. One component with runtime, tools, streaming, approvals, and widgets built in. Capabilities: drop-in agent, human-in-the-loop, client-side tools, form filling. Use for: building AI chat interfaces, agentic UIs, SaaS copilots, assistants. Triggers: agent component, agent ui, chat agent, shadcn agent, react agent, agentic ui, ai assistant ui, copilot ui, inference ui, human in the loop
| name | wiki-doc-generator |
| description | Generate structured wiki documentation from brand campaign outputs and business artifacts using parallel agent dispatch. |
This skill runs AFTER the brandmint pipeline completes, not as part of it. It reads JSON outputs from
.brandmint/outputs/and generates wiki markdown. Always use parallel agents (Task tool) for document generation — never generate pages sequentially. If running frombm launch, ensure all waves have completed first.
Transform campaign outputs and business documents into structured, interconnected wiki documentation using parallel agent dispatch for maximum efficiency.
Phase 1: Inventory → Scan input documents, classify by type
Phase 2: Dispatch Agents → Parallel processing of document categories
Phase 3: Cross-link → Build navigation and internal references
Phase 4: Output → Generate wiki-ready markdown structure
Scan the input location for source documents. Classify each by type:
| Document Type | Source Skill | Wiki Section |
|---|---|---|
| MDS (Messaging Direction Summary) | mds-messaging-direction-summary | Product Overview, Features |
| Buyer Persona | buyer-persona | User Personas |
| Product Positioning | product-positioning-summary | Brand Positioning |
| Voice & Tone | voice-and-tone | Brand Guidelines |
| Competitor Analysis | competitor-analysis | Market Context |
| Detailed Product Description | detailed-product-description | Product Specs |
| Campaign Page Copy | campaign-page-copy | Marketing Assets |
| Email Sequences | welcome/pre-launch/launch-email-sequence | Communications |
| Proposal | thoughtseed-proposal-generator (planned) | Technical Architecture, Timeline |
| Contract | thoughtseed-contract-generator (planned) | Project Scope, Deliverables |
Run inventory script to classify:
python3 scripts/inventory-sources.py /path/to/source/documents
If the brand has generated visual assets (via bm visual), also generate the asset-to-wiki mapping:
python3 scripts/map-assets-to-wiki.py /path/to/brand/generated/
This produces wiki-asset-map.json which maps each visual asset to its target wiki page, section, and role (hero, inline, gallery, or meta). Pass this mapping to agents in Phase 2 so they embed images in the correct locations.
Each document category becomes an independent agent task. Process 3-5 categories in parallel using the dispatching-parallel-agents pattern.
Agent 1: Foundation Docs
product/overview.md, product/features.md, product/specifications.mdAgent 2: Brand Docs
brand/voice-tone.md, brand/visual-guidelines.md, brand/writing-principles.mdAgent 3: Persona Docs
audience/primary-persona.md, audience/secondary-personas.md, market/competitive-landscape.mdAgent 4: Marketing Assets
marketing/campaign-copy.md, marketing/email-templates.md, marketing/ad-creative.mdAgent 5: Project Docs (if Proposal/Contract present)
project/architecture.md, project/timeline.md, project/team-roles.mdAgent 6: Visual Assets (if wiki-asset-map.json exists)
wiki-asset-map.json, generated image directorybrand/visual-assets.md — a gallery page listing ALL visual assets organized by categoryreferences/doc-schemas.md → Visual Asset Library## Task: Generate {Category} Wiki Documentation
**Input Sources:**
{List of source files with paths}
**Output Requirements:**
1. Extract key information following the schema in references/doc-schemas.md
2. Generate markdown files with proper frontmatter
3. Include cross-references to related documents (use relative paths)
4. Maintain heading hierarchy (H1 = page title, H2 = sections)
5. If `wiki-asset-map.json` is available, embed images for your pages using `` syntax. Place hero images after the H1. Place inline images within their mapped sections.
**Output Location:** /home/claude/wiki-output/{category}/
**Quality Checklist:**
- [ ] Source content synthesized (no copy-paste dumps)
- [ ] Frontmatter includes: title, description, category, tags
- [ ] Internal links use relative paths
- [ ] Code/technical content in fenced blocks
Return: Summary of generated files and any content gaps found.
After agents return, build navigation and cross-references.
Generate navigation.yaml:
- title: Getting Started
items:
- index.md
- quickstart.md
- title: Product
items:
- product/overview.md
- product/features.md
- product/specifications.md
- title: Brand
items:
- brand/voice-tone.md
- brand/visual-guidelines.md
- title: Audience
items:
- audience/primary-persona.md
- audience/secondary-personas.md
- title: Marketing
items:
- marketing/campaign-copy.md
- marketing/email-templates.md
- title: Project
items:
- project/architecture.md
- project/timeline.md
wiki-output/
├── index.md # Homepage with project overview
├── navigation.yaml # Sidebar configuration
├── getting-started/
│ └── quickstart.md
├── product/
│ ├── overview.md
│ ├── features.md
│ └── specifications.md
├── brand/
│ ├── voice-tone.md
│ ├── visual-guidelines.md
│ └── visual-assets.md # Gallery of all visual assets (Agent 6)
├── audience/
│ ├── primary-persona.md
│ └── secondary-personas.md
├── market/
│ └── competitive-landscape.md
├── marketing/
│ ├── campaign-copy.md
│ ├── email-templates.md
│ └── ad-creative.md
└── project/
├── architecture.md
├── timeline.md
└── scope.md
Every generated markdown file includes:
---
title: "Page Title"
description: "One-line description for SEO and navigation"
category: "product|brand|audience|marketing|project"
tags: ["relevant", "keywords"]
sources: ["mds.md", "positioning.md"]
lastUpdated: "2025-01-24"
---
Adapt output based on project context:
| Scenario | Pages | Sections Included |
|---|---|---|
| Brand Genesis ($3K) | 5-8 | Foundation + Brand basics |
| Crowdfunding Lean | 12-15 | + Personas + Marketing basics |
| Crowdfunding Full | 20-25 | + Full marketing + Project |
| DTC Launch | 15-18 | All sections, moderate depth |
| Enterprise GTM | 25-30 | All sections, maximum depth |
After generating wiki docs, build with markdown-to-astro-wiki:
# Wiki output location
/home/claude/wiki-output/
# Initialize Astro project
./scripts/init-astro-wiki.sh project-wiki
# Process markdown WITH images (if generated/ directory exists)
./scripts/process-markdown.sh /home/claude/wiki-output ./project-wiki/src/content/docs --images /path/to/brand/generated/
# Build
cd project-wiki && bun run build
The --images flag copies all visual assets (PNG, JPG, WebP) from the generated directory into public/images/ so that  references in markdown resolve correctly.
references/doc-schemas.md - Detailed schemas for each wiki page typereferences/frontmatter-templates.md - Frontmatter examples by categoryscripts/inventory-sources.py - Scan and classify input documents (text + visual)scripts/map-assets-to-wiki.py - Map visual assets to wiki pagesscripts/validate-wiki.py - Check output structure and links