用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/InugamiDev/ultrathink-oss --skill preview命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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
基于 SOC 职业分类
正在显示 SKILL.md
| 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