com um clique
preview
Render, summarize, and present markdown documents and structured content in multiple output modes
Menu
Render, summarize, and present markdown documents and structured content in multiple output modes
Unified design foundations — design system architecture, tokens, component specs, visual principles, creative vision, figma integration, plus brand design system loader (66 real brands via DESIGN.md). Absorbs design, design-system, design-systems, design-principles, design-router, creative-vision, figma, design-md.
Ultra UI skill - combines Google's DESIGN.md spec (machine-readable design tokens) with the ui-ux-pro-max knowledge base (91 styles, 161 palettes, 73 font pairings, 161 products, 104 UX guidelines, 25 chart types). Generates lint-clean DESIGN.md files, validates token references and WCAG contrast, exports Tailwind/DTCG tokens, and diffs design systems version-over-version.
Initialize UltraThink capabilities in the current project directory
Advanced UI/UX design intelligence — InuVerse edition. 84 styles, 160 palettes, 73 font pairings, 161 product types, 98 UX guidelines, 25 chart types across 16 stacks. Absorbs ui, ui-design, ui-styling, ui-ux-pro, ui-design-pipeline, stitch, web-design-guidelines. Routes all UI structure/visual/interaction work.
Get Shit Done — spec-driven development pipeline with XML-structured plans, wave-based parallel execution with fresh-context agents, goal-backward verification, and lightweight ad-hoc quick mode with composable flags. Single skill containing plan/execute/verify/quick modes as sub-workflows.
AI agent architecture, tool use, memory systems, multi-agent orchestration, and safety patterns
| name | preview |
| description | Render, summarize, and present markdown documents and structured content in multiple output modes |
| layer | hub |
| category | workflow |
| triggers | ["/preview","preview this","show me the doc","render this markdown","summarize this document","present this"] |
| inputs | [{"source":"File path, URL, or inline content to preview"},{"mode":"full | summary | outline | diff | presentation (optional, defaults to full)"},{"audience":"Who the preview is for -- technical, executive, user (optional)"}] |
| outputs | [{"renderedContent":"The document presented in the requested mode"},{"metadata":"Document stats (word count, sections, reading time)"},{"suggestions":"Improvement recommendations for the document (optional)"}] |
| linksTo | ["research","scout"] |
| linkedFrom | ["cook","team","ship","plan","plan-archive"] |
| preferredNextSkills | ["code-review","plan"] |
| fallbackSkills | ["research"] |
| riskLevel | low |
| memoryReadPolicy | selective |
| memoryWritePolicy | selective |
| sideEffects | ["Reads files","Does NOT modify any files"] |
Render, summarize, and present documents and structured content in formats optimized for different audiences and purposes. This skill transforms raw documents into consumable presentations without altering the source material.
Preview is the read-only presentation layer. It helps people understand documents quickly, verify content before publishing, and adapt material for different audiences.
Renders the complete document with enhanced formatting and metadata.
---
Words: [count] | Sections: [count] | Reading time: [N] min
Last modified: [date if available]
Produces a concise summary of the document, preserving key information.
Produces a hierarchical outline of the document's structure.
# Document Title
## Section 1 — [brief summary]
### Subsection 1.1 — [brief summary]
### Subsection 1.2 — [brief summary]
## Section 2 — [brief summary]
...
Compares two versions of a document and highlights changes.
Transforms a document into a presentation-friendly format (slide-like sections).
## Slide 1: [Title]
- Point 1
- Point 2
- Point 3
> Speaker notes: [expanded detail]
---
## Slide 2: [Title]
...
/preview docs/architecture.md
/preview summary docs/migration-plan.md --audience executive
/preview outline docs/api-reference.md
/preview diff docs/spec-v1.md docs/spec-v2.md
/preview presentation docs/quarterly-review.md
/preview
# My Document
Here is some content I want to preview...
Input: 2000-word migration plan document Mode: summary, audience: technical
Output:
## TL;DR
Migrate from REST to tRPC over 3 phases, maintaining backwards compatibility throughout.
## Key Points
- Phase 1 (Week 1-2): Set up tRPC alongside existing REST endpoints
- Phase 2 (Week 3-4): Migrate client components one by one, starting with non-critical paths
- Phase 3 (Week 5): Remove REST endpoints after all clients are migrated
- Rollback: Each phase can be reverted independently via feature flags
## Action Items
- [ ] Review tRPC schema by Friday
- [ ] Set up feature flags for gradual rollout
- [ ] Update API documentation
## Notable Details
- Estimated 30% reduction in API boilerplate
- Breaking change in User response shape (Phase 2)
- Requires Node 22+ (currently on 16 -- upgrade first)
Input: Large API reference document Mode: outline
Output:
# API Reference
## Authentication — JWT-based auth with refresh tokens
### Token Format — Standard JWT with custom claims
### Endpoints — Login, register, refresh, logout
## Users — CRUD operations for user management
#### Profile — (WARNING: H4 under H2, missing H3)
## Orders — Order lifecycle management
### Create — POST /orders with items array
### Update — PATCH /orders/:id (partial updates)
### (Missing: Delete/cancel endpoint documented elsewhere but not here)
## Structural Issues
- Line 45: H4 heading directly under H2 (skipped H3)
- Orders section: No DELETE endpoint documented
- No error response format section