@vm0/cli 9.165.3 → 9.167.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{chunk-X7OEKYPB.js → chunk-34LCMNHI.js} +69 -21
- package/{chunk-X7OEKYPB.js.map → chunk-34LCMNHI.js.map} +1 -1
- package/index.js +9 -9
- package/package.json +1 -1
- package/zero.js +763 -63
- package/zero.js.map +1 -1
package/zero.js
CHANGED
|
@@ -152,7 +152,7 @@ import {
|
|
|
152
152
|
zeroAgentCustomSkillNameSchema,
|
|
153
153
|
zeroLocalAgentCommand,
|
|
154
154
|
zeroTokenAllowsFeatureSwitch
|
|
155
|
-
} from "./chunk-
|
|
155
|
+
} from "./chunk-34LCMNHI.js";
|
|
156
156
|
import {
|
|
157
157
|
__toESM,
|
|
158
158
|
init_esm_shims
|
|
@@ -6850,6 +6850,44 @@ import { mkdir, writeFile } from "fs/promises";
|
|
|
6850
6850
|
import { join as join6 } from "path";
|
|
6851
6851
|
var COMPUTER_USE_SCREENSHOT_DIR = "/tmp/vm0/computer-use";
|
|
6852
6852
|
var DATA_URL_PATTERN = /^data:([^;,]+);base64,(.*)$/s;
|
|
6853
|
+
var COMPUTER_USE_HELP_TEXT = `
|
|
6854
|
+
Workflow:
|
|
6855
|
+
1. Start the Zero Desktop app and make sure Computer Use is online.
|
|
6856
|
+
2. Run "zero computer-use list-apps" to find the target app name or bundle id.
|
|
6857
|
+
3. Run "zero computer-use get-app-state --app <app>" to get a screenshot,
|
|
6858
|
+
snapshotId, visible element indexes, and accessibility state.
|
|
6859
|
+
4. Prefer element actions with --snapshot-id and --element-index. Use --x/--y
|
|
6860
|
+
only when the target is visible in the returned screenshot but has no useful
|
|
6861
|
+
accessibility element.
|
|
6862
|
+
5. Read the JSON result. Screenshot data is saved under /tmp/vm0/computer-use
|
|
6863
|
+
and replaced with a local file path in CLI output.
|
|
6864
|
+
|
|
6865
|
+
Notes:
|
|
6866
|
+
Write commands are sent to the connected Desktop host and may wait for local
|
|
6867
|
+
approval before they run. Coordinate fallbacks use screenshot coordinates from
|
|
6868
|
+
get-app-state; pass the matching --snapshot-id when acting on a prior snapshot.
|
|
6869
|
+
|
|
6870
|
+
Examples:
|
|
6871
|
+
List available apps:
|
|
6872
|
+
zero computer-use list-apps
|
|
6873
|
+
|
|
6874
|
+
Inspect Safari state:
|
|
6875
|
+
zero computer-use get-app-state --app Safari
|
|
6876
|
+
|
|
6877
|
+
Click element index 7 from snapshot desktop_abc:
|
|
6878
|
+
zero computer-use click --app Safari --snapshot-id desktop_abc --element-index 7
|
|
6879
|
+
|
|
6880
|
+
Click screenshot coordinate (320, 240) from snapshot desktop_abc:
|
|
6881
|
+
zero computer-use click --app Safari --snapshot-id desktop_abc --x 320 --y 240
|
|
6882
|
+
|
|
6883
|
+
Type text into the current focus in Safari:
|
|
6884
|
+
zero computer-use type-text --app Safari --text "Hello"
|
|
6885
|
+
|
|
6886
|
+
Press a keyboard shortcut:
|
|
6887
|
+
zero computer-use press-key --app Safari --key Command+L
|
|
6888
|
+
|
|
6889
|
+
Open an app without activating the current foreground app:
|
|
6890
|
+
zero computer-use open-app --app Things`;
|
|
6853
6891
|
function sleep2(ms) {
|
|
6854
6892
|
return new Promise((resolve2) => {
|
|
6855
6893
|
setTimeout(resolve2, ms);
|
|
@@ -7144,7 +7182,7 @@ var openAppCommand = appOption(
|
|
|
7144
7182
|
)
|
|
7145
7183
|
)
|
|
7146
7184
|
);
|
|
7147
|
-
var zeroComputerUseCommand = new Command().name("computer-use").description("Desktop app computer use through Zero CLI").addCommand(listAppsCommand).addCommand(getAppStateCommand).addCommand(clickCommand).addCommand(scrollCommand).addCommand(setValueCommand).addCommand(typeTextCommand).addCommand(pressKeyCommand).addCommand(performActionCommand).addCommand(openAppCommand);
|
|
7185
|
+
var zeroComputerUseCommand = new Command().name("computer-use").description("Desktop app computer use through Zero CLI").addHelpText("after", COMPUTER_USE_HELP_TEXT).addCommand(listAppsCommand).addCommand(getAppStateCommand).addCommand(clickCommand).addCommand(scrollCommand).addCommand(setValueCommand).addCommand(typeTextCommand).addCommand(pressKeyCommand).addCommand(performActionCommand).addCommand(openAppCommand);
|
|
7148
7186
|
|
|
7149
7187
|
// src/commands/zero/built-in/index.ts
|
|
7150
7188
|
init_esm_shims();
|
|
@@ -7179,26 +7217,606 @@ function sourceRef(repo, commit, path) {
|
|
|
7179
7217
|
function source(path) {
|
|
7180
7218
|
return sourceRef(OPEN_DESIGN_REPO, OPEN_DESIGN_COMMIT, path);
|
|
7181
7219
|
}
|
|
7182
|
-
var
|
|
7183
|
-
|
|
7184
|
-
|
|
7220
|
+
var STYLE_OPEN_DESIGN_SKILL_SLUGS = [
|
|
7221
|
+
"8-bit-orbit-video-template",
|
|
7222
|
+
"after-hours-editorial-template",
|
|
7223
|
+
"algorithmic-art",
|
|
7224
|
+
"apple-hig",
|
|
7225
|
+
"brainstorming",
|
|
7226
|
+
"brand-guidelines",
|
|
7227
|
+
"canvas-design",
|
|
7228
|
+
"card-twitter",
|
|
7229
|
+
"card-xiaohongshu",
|
|
7230
|
+
"color-expert",
|
|
7231
|
+
"creative-director",
|
|
7232
|
+
"d3-visualization",
|
|
7233
|
+
"deck-guizang-editorial",
|
|
7234
|
+
"deck-open-slide-canvas",
|
|
7235
|
+
"deck-swiss-international",
|
|
7236
|
+
"design-consultation",
|
|
7237
|
+
"design-md",
|
|
7238
|
+
"design-review",
|
|
7239
|
+
"digits-fintech-swiss-template",
|
|
7240
|
+
"doc-kami-parchment",
|
|
7241
|
+
"editorial-burgundy-principles-template",
|
|
7242
|
+
"enhance-prompt",
|
|
7243
|
+
"faq-page",
|
|
7244
|
+
"field-notes-editorial-template",
|
|
7245
|
+
"figma-create-design-system-rules",
|
|
7246
|
+
"figma-generate-design",
|
|
7247
|
+
"figma-generate-library",
|
|
7248
|
+
"figma-implement-design",
|
|
7249
|
+
"flutter-animating-apps",
|
|
7250
|
+
"frame-data-chart-nyt",
|
|
7251
|
+
"frame-flowchart-sticky",
|
|
7252
|
+
"frame-glitch-title",
|
|
7253
|
+
"frame-light-leak-cinema",
|
|
7254
|
+
"frame-liquid-bg-hero",
|
|
7255
|
+
"frame-logo-outro",
|
|
7256
|
+
"frame-macos-notification",
|
|
7257
|
+
"frontend-design",
|
|
7258
|
+
"frontend-dev",
|
|
7259
|
+
"frontend-skill",
|
|
7260
|
+
"frontend-slides",
|
|
7261
|
+
"gsap-core",
|
|
7262
|
+
"gsap-react",
|
|
7263
|
+
"gsap-scrolltrigger",
|
|
7264
|
+
"gsap-timeline",
|
|
7265
|
+
"hand-drawn-diagrams",
|
|
7266
|
+
"hatch-pet",
|
|
7267
|
+
"html-ppt-retro-quarterly-review",
|
|
7268
|
+
"login-flow",
|
|
7269
|
+
"mockup-device-3d",
|
|
7270
|
+
"paywall-upgrade-cro",
|
|
7271
|
+
"plan-design-review",
|
|
7272
|
+
"platform-design",
|
|
7273
|
+
"poster-hero",
|
|
7274
|
+
"ppt-keynote",
|
|
7275
|
+
"release-notes-one-pager",
|
|
7276
|
+
"resume-modern",
|
|
7277
|
+
"screenshots-marketing",
|
|
7278
|
+
"shadcn-ui",
|
|
7279
|
+
"shader-dev",
|
|
7280
|
+
"slack-gif-creator",
|
|
7281
|
+
"slides",
|
|
7282
|
+
"social-reddit-card",
|
|
7283
|
+
"social-spotify-card",
|
|
7284
|
+
"social-x-post-card",
|
|
7285
|
+
"stitch-loop",
|
|
7286
|
+
"swiftui-design",
|
|
7287
|
+
"swiss-creative-mode-template",
|
|
7288
|
+
"swiss-user-research-video-template",
|
|
7289
|
+
"taste-skill",
|
|
7290
|
+
"theme-factory",
|
|
7291
|
+
"threejs",
|
|
7292
|
+
"ui-skills",
|
|
7293
|
+
"ui-ux-pro-max",
|
|
7294
|
+
"vfx-text-cursor",
|
|
7295
|
+
"video-hyperframes",
|
|
7296
|
+
"web-design-guidelines",
|
|
7297
|
+
"weread-year-in-review-video-template",
|
|
7298
|
+
"wpds"
|
|
7299
|
+
];
|
|
7300
|
+
var STYLE_OPEN_DESIGN_SKILL_DESCRIPTIONS = {
|
|
7301
|
+
"8-bit-orbit-video-template": "Hyperframes-based video template for retro pixel deck motion design. Use when users want a high-fidelity, multi-scene HTML-to-video composition with advanced transitions, interactive preview controls, and ready-to-render default style.",
|
|
7302
|
+
"after-hours-editorial-template": "Luxury dark-editorial HyperFrames template for three-page cinematic storyboards, inspired by haute couture title cards and magazine chapter spreads. Use when the user asks for premium fashion-style motion pages, moody serif-led storytelling, or a high-end dark presentation aesthetic with rich transitions.",
|
|
7303
|
+
"algorithmic-art": "Create generative art using p5.js with seeded randomness so every render is reproducible. Useful for procedural posters, motion-style stills, and artistic frame studies.",
|
|
7304
|
+
"apple-hig": "Apple Human Interface Guidelines as 14 agent skills covering platforms, foundations, components, patterns, inputs, and technologies for iOS, macOS, visionOS, watchOS, and tvOS.",
|
|
7305
|
+
brainstorming: "Transform rough ideas into fully-formed designs through structured questioning and alternative exploration. Useful early in concept work.",
|
|
7306
|
+
"brand-guidelines": "Apply Anthropic's official brand colors and typography to artifacts for consistent visual identity and professional design standards. A reference for shaping your own.",
|
|
7307
|
+
"canvas-design": "Create beautiful visual art in PNG and PDF documents using design philosophy and aesthetic principles for posters, illustrations, and static pieces.",
|
|
7308
|
+
"card-twitter": "Twitter quote or data card designed to pair with a post.",
|
|
7309
|
+
"card-xiaohongshu": "Xiaohongshu-style knowledge cards, arranged as a swipeable multi-card carousel.",
|
|
7310
|
+
"color-expert": "Color science expert skill with 286K words of reference material covering OKLCH/OKLAB, palette generation, accessibility/contrast, color naming, pigment mixing, and historical color theory.",
|
|
7311
|
+
"creative-director": "AI creative director with recursive self-assessment: 20+ methodologies (SIT, TRIZ, Bisociation, SCAMPER, Synectics), 3-axis evaluation calibrated against Cannes/D&AD/HumanKind, 5-phase process from brief to presentation.",
|
|
7312
|
+
"d3-visualization": "Teaches the agent to produce D3 charts and interactive data visualizations. Useful for editorial dashboards, reports, and explanatory graphics.",
|
|
7313
|
+
"deck-guizang-editorial": "Editorial magazine meets e-ink: 10 layouts and 5 palettes (Ink, Indigo Porcelain, Forest Ink, Kraft Paper, Dune).",
|
|
7314
|
+
"deck-open-slide-canvas": "Locked 1920x1080 canvas deck with React component-level free composition, not bound to a fixed template.",
|
|
7315
|
+
"deck-swiss-international": "16-column grid, one saturated accent, and 22 locked layouts (Klein Blue, Lemon, Mint, Safety Orange).",
|
|
7316
|
+
"design-consultation": "Build a complete design system from scratch with creative risks and realistic product mockups. Useful for kickoff workshops and brand-from-zero work.",
|
|
7317
|
+
"design-md": "Create and manage DESIGN.md files. Useful for capturing design direction, tokens, and visual rules in a single source of truth.",
|
|
7318
|
+
"design-review": "Designer Who Codes: visual audit then fixes with atomic commits and before/after screenshots. Useful for tightening shipped UI before launch.",
|
|
7319
|
+
"digits-fintech-swiss-template": "Swiss-grid fintech deck template in black / warm paper / neon-lime contrast. Use when users ask for premium data-story slides with strict modular layout, bold numeric cards, restrained motion, and keyboard/click navigation in one HTML file.",
|
|
7320
|
+
"doc-kami-parchment": "Warm parchment canvas (#f5f4ed), monochrome ink-blue accent (#1B365D), one serif family, and editorial-grade typography.",
|
|
7321
|
+
"editorial-burgundy-principles-template": "Editorial studio deck template in burgundy / blush / muted-gold palette. Use when users ask for premium manifesto or culture slides with pill tags, large typographic statements, principle cards, and guided keyboard/click navigation.",
|
|
7322
|
+
"enhance-prompt": "Improve prompts with design specs and UI/UX vocabulary. Useful for design-to-code workflows and clarifying requests for visual output.",
|
|
7323
|
+
"faq-page": 'A Frequently Asked Questions (FAQ) page with collapsible accordion sections, search functionality, and category filtering. Use when the brief asks for "FAQ", "help center", "questions", or "support page".',
|
|
7324
|
+
"field-notes-editorial-template": 'Editorial "Field Notes" report template with soft paper background, serif hero typography, rounded pastel insight cards, and a retention chart panel. Use when users ask for a premium magazine-style business report, board memo one-pager, or elegant data storytelling layout.',
|
|
7325
|
+
"figma-create-design-system-rules": "Generate project-specific design system rules for Figma-to-code workflows. Useful for capturing tokens, naming, and lint rules in one source.",
|
|
7326
|
+
"figma-generate-design": "Build or update screens in Figma from code or description using design system components. Translate app pages into Figma using design tokens.",
|
|
7327
|
+
"figma-generate-library": "Build or update a professional-grade design system library in Figma from a codebase. Useful for keeping the Figma source of truth in sync with shipped components.",
|
|
7328
|
+
"figma-implement-design": "Translate Figma designs into production-ready code with 1:1 visual fidelity. Useful for handing off Figma frames straight to a frontend agent.",
|
|
7329
|
+
"flutter-animating-apps": "Implement animated effects, transitions, and motion in Flutter apps. Useful for native iOS/Android motion design.",
|
|
7330
|
+
"frame-data-chart-nyt": "NYT-newsroom typography, staggered reveal animation, and editorial-grade charts (line, bar, or range band).",
|
|
7331
|
+
"frame-flowchart-sticky": "SVG curve connectors, sticky-note nodes, and cursor interaction with a whiteboard-brainstorm feel.",
|
|
7332
|
+
"frame-glitch-title": "Digital glitch, chromatic offset, and data-corruption title frame for video transitions or cyberpunk heroes.",
|
|
7333
|
+
"frame-light-leak-cinema": "Film light leaks, grain, 16:9 letterbox, and large serif type for cinematic openings or chapter cards.",
|
|
7334
|
+
"frame-liquid-bg-hero": "WebGL-style fluid displacement background with a quote overlay, suited to video intros, landing heroes, or posters.",
|
|
7335
|
+
"frame-logo-outro": "Segmented logo assembly, glow bloom, and tagline reveal for video outros or brand closing frames.",
|
|
7336
|
+
"frame-macos-notification": "Realistic macOS notification banner with app icon, title, and body, suited to video overlays or product teasers.",
|
|
7337
|
+
"frontend-design": "Frontend design and UI/UX development tools for shipping production-ready interfaces with strong typographic and layout discipline.",
|
|
7338
|
+
"frontend-dev": "Full-stack frontend with cinematic animations, AI-generated media via MiniMax API, and generative art. Useful for hero pages and showcase sites.",
|
|
7339
|
+
"frontend-skill": "Create visually strong landing pages, websites, and app UIs with restrained composition. OpenAI's production frontend playbook.",
|
|
7340
|
+
"frontend-slides": "Generate animation-rich HTML presentations with visual style previews. Useful for online keynotes, embedded talks, and interactive briefs.",
|
|
7341
|
+
"gsap-core": "Core GSAP API with gsap.to(), from(), fromTo(), easing, duration, stagger, and defaults. Production-grade web animation primitives.",
|
|
7342
|
+
"gsap-react": "GSAP React integration with useGSAP hook, refs, gsap.context(), cleanup, and SSR. Ships safe motion in React + Next.js apps.",
|
|
7343
|
+
"gsap-scrolltrigger": "GSAP ScrollTrigger for scroll-linked animations, pinning, scrub, and refresh handling. Useful for editorial sites and product pages.",
|
|
7344
|
+
"gsap-timeline": "GSAP Timelines with sequencing, position parameter, labels, nesting, and playback control. Useful for orchestrating multi-step motion sequences.",
|
|
7345
|
+
"hand-drawn-diagrams": "Generate hand-drawn Excalidraw diagrams from a prompt - animated SVG, hosted edit link, and PNG export. Works with Claude Code, Codex, Gemini CLI, and any agent supporting standard skill paths.",
|
|
7346
|
+
"hatch-pet": "Create, repair, validate, preview, and package Codex-compatible animated pet spritesheets from character art, screenshots, generated images, or visual references. Use when a user wants to hatch a Codex pet, create a custom animated pet, or build a built-in pet asset with an 8x9 atlas, transparent unused cells, row-by-row animation prompts, QA contact sheets, preview videos, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",
|
|
7347
|
+
"html-ppt-retro-quarterly-review": "Retro Quarterly Review presentation template in a bold blue + orange editorial language. Use when users ask for a high-impact quarterly review / roadmap deck with heavyweight slab headlines, clean cream paper sections, structured grids, and fast premium motion pacing (3 slides, each hold under 3s in video mode).",
|
|
7348
|
+
"login-flow": "Mobile login and authentication flow screens",
|
|
7349
|
+
"mockup-device-3d": "Static iPhone and MacBook 3D-style showcase with real HTML embedded on screens, glass-lens refraction, and 360-degree turntable composition.",
|
|
7350
|
+
"paywall-upgrade-cro": "Design and optimize upgrade screens, paywalls, and upsell modals. Useful for SaaS conversion design and pricing-page experiments.",
|
|
7351
|
+
"plan-design-review": "Senior Designer review: rates each design dimension 0-10, explains what a 10 looks like, and flags AI Slop signals. Useful as a gate before merging UI work.",
|
|
7352
|
+
"platform-design": "300+ design rules from Apple HIG, Material Design 3, and WCAG 2.2 for cross-platform apps. Useful when shipping a single design across iOS, Android, and the web.",
|
|
7353
|
+
"poster-hero": "Vertical poster or Moments-style share image with strong visual impact.",
|
|
7354
|
+
"ppt-keynote": "Apple Keynote-quality slides, one card per screen, with keyboard left/right navigation.",
|
|
7355
|
+
"release-notes-one-pager": 'Release notes one-page HTML with highlights, Added, Fixed, Breaking changes, Known issues, and Upgrade note. Writes explicit "None" style sections whenever the user does not provide details.',
|
|
7356
|
+
"resume-modern": "Modern minimal resume, single A4 page, ready for print or PDF export.",
|
|
7357
|
+
"screenshots-marketing": "Generate marketing screenshots with Playwright. Useful for landing-page hero shots, App Store screenshots, and changelog visuals.",
|
|
7358
|
+
"shadcn-ui": "Build UI components with shadcn/ui. Pairs with the Stitch design loop to ship structured, accessible components quickly.",
|
|
7359
|
+
"shader-dev": "GLSL shader techniques for ray marching, fluid simulation, particle systems, and procedural generation. Useful for hero visuals and motion stills.",
|
|
7360
|
+
"slack-gif-creator": "Create animated GIFs optimized for Slack with validators for size constraints and composable animation primitives.",
|
|
7361
|
+
slides: "Create and edit .pptx presentation decks with PptxGenJS. Useful for sales decks, kickoff briefs, and design-system showcases.",
|
|
7362
|
+
"social-reddit-card": "Realistic Reddit post card with vote rail and comment count, suited to video overlays or story sharing.",
|
|
7363
|
+
"social-spotify-card": "Spotify Now Playing-style card with album art, progress bar, and playback controls, suited to video overlays or personal homepages.",
|
|
7364
|
+
"social-x-post-card": "Realistic X post card with engagement metrics (likes, reposts, views), suited to video overlays or shareable image cards.",
|
|
7365
|
+
"stitch-loop": "Iterative design-to-code feedback loop. Critique adjust ship cycle for tightening visual fidelity between brief and built UI.",
|
|
7366
|
+
"swiftui-design": "SwiftUI skill - anti AI-slop rules, design direction advisor, brand asset protocol, and five-dimension review. Works with Claude Code, Cursor, Codex, and OpenCode.",
|
|
7367
|
+
"swiss-creative-mode-template": "Swiss-inspired creative-mode presentation template skill with bold editorial typography, high-contrast geometric cards, interactive slide navigation, theme switching, hotspot overlays, and palette choreography in a single-file HTML artifact. Use when users ask for a premium presentation-style landing, a Swiss/brutalist deck look, or a creative launch page with rich interactions.",
|
|
7368
|
+
"swiss-user-research-video-template": "Swiss-style user-research narrative template in warm-paper editorial aesthetics. Use when users ask for a premium research deck or story-first live artifact with minimalist typography, high-clarity layout, subtle motion, donut breakdowns, and keyboard/click navigation across slides in a single HTML file.",
|
|
7369
|
+
"taste-skill": "High-agency frontend skill that gives AI good taste with tunable design variance, motion intensity, and visual density to stop generic UI slop.",
|
|
7370
|
+
"theme-factory": "Apply professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships 10 pre-set themes.",
|
|
7371
|
+
threejs: "Three.js skills for creating 3D elements and interactive experiences in the browser - scenes, materials, controls, and post-processing.",
|
|
7372
|
+
"ui-skills": "Opinionated, evolving constraints to guide agents when building interfaces. Useful for keeping output coherent across many small UI pieces.",
|
|
7373
|
+
"ui-ux-pro-max": "Catalog-only UI/UX Pro Max entry. The full upstream templates, data, and search workflow are not bundled in Open Design.",
|
|
7374
|
+
"vfx-text-cursor": "Cursor light trail, chromatic rays, and directional flares for word-by-word quote reveals in video intros.",
|
|
7375
|
+
"video-hyperframes": "Hyperframes / Remotion-compatible continuous frame animation with autoplay support.",
|
|
7376
|
+
"web-design-guidelines": "Web design guidelines and standards by the Vercel engineering team. Covers layout, typography, color, motion, and accessibility for product UI.",
|
|
7377
|
+
"weread-year-in-review-video-template": "WeRead-inspired HyperFrames video template for vertical annual reading reports, personal reading dashboards, book-note recaps, and shareable year-in-review stories. Use when users want a 9:16 HTML-to-MP4 reading report with warm paper texture, editorial Chinese typography, book-page metaphors, data highlights, and deterministic motion.",
|
|
7378
|
+
wpds: "WordPress Design System. Apply WordPress's official design tokens, typography, and component patterns to themes and sites."
|
|
7379
|
+
};
|
|
7380
|
+
var ADDITIONAL_OPEN_DESIGN_TEMPLATE_DESCRIPTIONS = {
|
|
7381
|
+
"audio-jingle": "Audio generation skill \u2014 jingles, beds, voiceover, and sound effects. Routes music requests to Suno V5 / Udio / Lyria, speech to MiniMax TTS / FishAudio / ElevenLabs V3, and SFX to ElevenLabs SFX or AudioCraft. Output is one MP3/WAV file saved to the project folder.",
|
|
7382
|
+
"blog-post": 'A long-form article / blog post \u2014 masthead, hero image placeholder, article body with figures and pull quotes, author byline, related posts. Use when the brief asks for "blog", "article", "post", "essay", or "case study".',
|
|
7383
|
+
"clinical-case-report": 'Structured medical case presentation for clinical rounds, conferences, and documentation. Generates SOAP-format or narrative case reports with physiologically accurate vitals, labs, and evidence-based plans. Use when the brief mentions "case report", "case presentation", "SOAP note", "clinical case", "ward rounds", "case summary", or "patient presentation".',
|
|
7384
|
+
critique: `Run a 5-dimension expert design review on any HTML artifact in the project \u2014 Philosophy / Visual hierarchy / Detail / Functionality / Innovation, each scored 0\u201310. Outputs a single self-contained HTML report with a radar chart, evidence-backed scores, and three lists: Keep / Fix / Quick-wins. Use when the brief asks for a "design review", "design critique", "5 \u7EF4\u5EA6\u8BC4\u5BA1", "design audit", or "what's wrong with my design".`,
|
|
7385
|
+
"dating-web": 'A consumer-feeling dating / matchmaking dashboard \u2014 left rail navigation, ticker bar of community signals, headline KPIs, a 30-day mutual-matches bar chart, and a match-rate trend block. Editorial typography, restrained accent. Use when the brief asks for a "dating site", "matchmaking", "community dashboard", "social network dashboard", or any consumer product where the data is the story.',
|
|
7386
|
+
"dcf-valuation": 'Discounted cash flow valuation and intrinsic value analysis for public companies. Use when the brief asks for DCF, fair value, intrinsic value, price target, undervalued or overvalued analysis, or "what is this company worth?"',
|
|
7387
|
+
"digital-eguide": `A two-spread digital e-guide preview \u2014 page 1 is a cover (display title, author, "What's inside" stats, table of contents teaser); page 2 is a spread (lesson body with pull-quote and a step list). Lifestyle / creator brand tone. Use when the brief asks for an "e-guide", "digital guide", "lookbook", "lead magnet", "creator guide", "playbook", "PDF guide", or "\u7535\u5B50\u6307\u5357".`,
|
|
7388
|
+
"email-marketing": 'A brand product-launch email \u2014 masthead with wordmark, hero image block, headline lockup with skewed-italic accent, body copy, primary CTA, and a specifications grid. Pure HTML email layout (centered single column, table fallback). Use when the brief asks for an "email", "newsletter blast", "MJML", "product launch email", or "email template".',
|
|
7389
|
+
"eng-runbook": 'An engineering runbook \u2014 service overview, alerts table, dashboards links, common procedures with copy-pasteable commands, on-call rotation, and an incident-response checklist. Use when the brief mentions "runbook", "ops doc", "on-call guide", "SRE doc", or "\u8FD0\u7EF4\u624B\u518C".',
|
|
7390
|
+
"flowai-live-dashboard-template": "Team-management dashboard skill in the FlowAI aesthetic \u2014 three tabs (Team Members, Team Details, Activity Log), KPI stat row, member table, role distribution bar chart, online presence and activity sparklines, and a top-contributors panel, all in a single self-contained HTML file with light/dark theming, hoverable chart tooltips, click-to-zoom panels, and CSV export. Use when the brief asks for a team / workspace admin dashboard, an interactive admin dashboard with charts, or names FlowAI.",
|
|
7391
|
+
"gamified-app": `A multi-frame gamified mobile-app prototype \u2014 three phone frames on a dark showcase stage. Frame 1: cover / poster, Frame 2: today's quests with XP ribbons and a level bar, Frame 3: quest detail. Vivid quest tiles, level ribbon, bottom tab bar. Use when the brief asks for a "gamified app", "habit tracker", "RPG-style life app", "level-up app", "daily quests", "XP / streak app", or "ELI5-style explainer app".`,
|
|
7392
|
+
"github-dashboard": "GitHub repository analytics dashboard \u2014 stars, forks, contributors, issues, pull requests, recent activity, and top contributors. Use when the brief asks for a GitHub repo dashboard, open-source growth report, repository health page, or GitHub analytics view.",
|
|
7393
|
+
"guizang-ppt": '\u751F\u6210"\u7535\u5B50\u6742\u5FD7 \xD7 \u7535\u5B50\u58A8\u6C34"\u98CE\u683C\u7684\u6A2A\u5411\u7FFB\u9875\u7F51\u9875 PPT\uFF08\u5355 HTML \u6587\u4EF6\uFF09\uFF0C\u542B WebGL \u6D41\u4F53\u80CC\u666F\u3001\u886C\u7EBF\u6807\u9898 + \u975E\u886C\u7EBF\u6B63\u6587\u3001\u7AE0\u8282\u5E55\u5C01\u3001\u6570\u636E\u5927\u5B57\u62A5\u3001\u56FE\u7247\u7F51\u683C\u7B49\u6A21\u677F\u3002\u5F53\u7528\u6237\u9700\u8981\u5236\u4F5C\u5206\u4EAB / \u6F14\u8BB2 / \u53D1\u5E03\u4F1A\u98CE\u683C\u7684\u7F51\u9875 PPT\uFF0C\u6216\u63D0\u5230"\u6742\u5FD7\u98CE PPT"\u3001"horizontal swipe deck"\u3001"editorial magazine"\u3001"e-ink presentation"\u65F6\u4F7F\u7528\u3002',
|
|
7394
|
+
"hr-onboarding": `A new-hire onboarding plan as a single page \u2014 first week schedule, buddy + manager intro, learning track, equipment checklist, and "you're set when\u2026" outcomes. Use when the brief mentions "onboarding", "new hire", "first week plan", or "\u5165\u804C".`,
|
|
7395
|
+
"html-ppt": 'HTML PPT Studio \u2014 author professional static HTML presentations in many styles, layouts, and animations, all driven by templates. Use when the user asks for a presentation, PPT, slides, keynote, deck, slideshow, "\u5E7B\u706F\u7247", "\u6F14\u8BB2\u7A3F", "\u505A\u4E00\u4EFD PPT", "\u505A\u4E00\u4EFD slides", a reveal-style HTML deck, a \u5C0F\u7EA2\u4E66 \u56FE\u6587, or any kind of multi-slide pitch/report/sharing document that should look tasteful and be usable with keyboard navigation. Triggers include keywords like "presentation", "ppt", "slides", "deck", "keynote", "reveal", "slideshow", "\u5E7B\u706F\u7247", "\u6F14\u8BB2\u7A3F", "\u5206\u4EAB\u7A3F", "\u5C0F\u7EA2\u4E66\u56FE\u6587", "talk slides", "pitch deck", "tech sharing", "technical presentation".',
|
|
7396
|
+
"html-ppt-course-module": "Online-course / workshop module deck \u2014 warm paper background + Playfair serif, persistent left sidebar of learning objectives, MCQ self-check page. Use for teaching modules, training materials, workshop slides.",
|
|
7397
|
+
"html-ppt-dir-key-nav-minimal": '8 \u9875\u6781\u7B80\u65B9\u5411\u952E keynote \u2014 \u6BCF\u9875\u4E00\u4E2A\u72EC\u7ACB\u5355\u8272\u80CC\u666F\uFF08\u975B / \u5976 / \u7EDB / \u7FE0 / \u7070 / \u7D2B / \u767D / \u70AD\uFF09\uFF0C\u5404\u81EA\u914D\u8272\uFF0C160px display \u6807\u9898 + 4px \u77ED\u7C97 accent \u7EBF\u5206\u9694\u3001\u7BAD\u5934 \u2192 \u524D\u7F00\u7684 Mono \u5217\u8868\u3001\u5DE6\u4E0B \u2190 \u2192 kbd \u63D0\u793A + \u53F3\u4E0B\u9875\u7801\u3001\u5DE8\u5927\u547C\u5438\u7559\u767D\u3002\u9002\u5408"\u6709\u8BDD\u8981\u8BF4\u4F46\u6CA1\u4EC0\u4E48\u53EF\u770B"\u7684 keynote\u3001launch\u3001\u516C\u5F00\u6F14\u8BB2\u3002',
|
|
7398
|
+
"html-ppt-hermes-cyber-terminal": "\u6697\u7EC8\u7AEF honest-review deck \u2014 #0a0c10 \u9ED1\u5E95 + 56px \u8D5B\u535A\u7F51\u683C + CRT \u6697\u89D2 + \u626B\u63CF\u7EBF\u3001\u7A97\u53E3\u7EA2\u7EFF\u706F chrome\u3001`$ prompt` \u547D\u4EE4\u884C\u6807\u9898\u3001\u8584\u8377\u7EFF #7ed3a4 \u5927\u5B57\u3001JetBrains Mono\u3001stroke-only \u67F1\u72B6\u56FE\u3001blinking \u5149\u6807\u3001\u7425\u73C0/\u7EFF/\u7EA2\u4E09\u6863 tag\u3001\u6697\u8272\u4EE3\u7801\u5757\u3002\u9002\u5408 CLI / agent / dev tool \u6D4B\u8BC4\uFF08\u542B trace\u3001diff\u3001benchmark\uFF09\u3002",
|
|
7399
|
+
"html-ppt-knowledge-arch-blueprint": "\u5976\u6CB9\u84DD\u56FE\u67B6\u6784 deck \u2014 \u5976\u6CB9\u7EB8 #F0EAE0 \u5E95\u8272 + \u5355\u4E00\u9508\u7EA2 #B5392A \u9AD8\u4EAE\u300148px \u84DD\u56FE\u7F51\u683C mask\u30012px \u9ED1\u8FB9\u786C\u5361\u7247\u3001pipeline \u6B65\u9AA4\u76D2\uFF08\u5176\u4E2D\u4E00\u4E2A\u62AC\u9AD8\uFF09\u3001\u53F3\u4FA7\u9508\u7EA2 insight callout\u3001Playfair \u886C\u7EBF\u5927\u5B57\u3001SVG \u865A\u7EBF\u53CD\u9988\u73AF\u3002\u96F6\u6E10\u53D8\u96F6\u8F6F\u9634\u5F71\uFF0C\u8BA4\u771F\u4E14\u5370\u5237\u53CB\u597D\u3002",
|
|
7400
|
+
"html-ppt-obsidian-claude-gradient": "GitHub \u6697\u7D2B\u6E10\u53D8 deck \u2014 GitHub-dark #0d1117 + \u7D2B\u84DD radial \u73AF\u5883\u5149 + 60px \u7F51\u683C mask\u3001\u5C45\u4E2D\u5E03\u5C40\u3001\u7D2B\u8272 pill \u6807\u7B7E\u3001\u4E09\u8272\u6E10\u53D8\u6807\u9898\uFF08#a855f7\u2192#60a5fa\u2192#34d399\uFF09\u3001GitHub \u98CE\u4EE3\u7801 palette\u3001\u7D2B\u8272\u5DE6\u8FB9\u6846\u9AD8\u4EAE\u5757\u3002\u9002\u5408\u5F00\u53D1\u8005\u5DE5\u4F5C\u6D41 / MCP / Agent / dev tool \u6559\u7A0B\uFF0C\u7C7B\u4F3C GitHub Blog / Linear Changelog\u3002",
|
|
7401
|
+
"html-ppt-pitch-deck": "Investor-ready 10-slide HTML pitch deck \u2014 white + blue\u2192purple gradient hero, big numbers, traction bar chart, $4.5M-style ask page. Use when the user wants a fundraising deck, seed-round pitch, or VC meeting slides.",
|
|
7402
|
+
"html-ppt-presenter-mode-reveal": '\u6F14\u8BB2\u8005\u6A21\u5F0F\u4E13\u7528 deck \u2014 tokyo-night \u9ED8\u8BA4\u4E3B\u9898\uFF0C5 \u5957\u4E3B\u9898 T \u952E\u5207\u6362\uFF0C\u6BCF\u9875\u5E26 150-300 \u5B57\u9010\u5B57\u7A3F\u793A\u4F8B\uFF08<aside class="notes">\uFF09\uFF0C\u6309 S \u6253\u5F00 popup\uFF08CURRENT / NEXT / SCRIPT / TIMER \u56DB\u5F20\u78C1\u5438\u5361\u7247\uFF09\u3002\u7528\u4E8E\u6280\u672F\u5206\u4EAB\u3001\u516C\u5F00\u6F14\u8BB2\u3001\u8BFE\u7A0B\u8BB2\u89E3\uFF0C\u6015\u5FD8\u8BCD\u6216\u8981\u63D0\u8BCD\u5668\u7684\u573A\u666F\u3002',
|
|
7403
|
+
"html-ppt-product-launch": "Launch keynote deck \u2014 dark hero + light content, warm orange\u2192peach accent, feature cards, pricing tiers, CTA. Use when announcing a product, launching a feature, or doing a keynote-style reveal.",
|
|
7404
|
+
"html-ppt-taste-brutalist": "16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill `brutalist-skill` (Tactical Telemetry mode).",
|
|
7405
|
+
"html-ppt-taste-editorial": "16:9 HTML deck in editorial-minimalist taste. Warm cream slides, serif display + grotesque body, hairline rules, monospace meta, generous macro-whitespace, one accent. Distilled from Leonxlnx/taste-skill `minimalist-skill`.",
|
|
7406
|
+
"html-ppt-tech-sharing": "Conference / internal tech-talk deck \u2014 GitHub-dark, JetBrains Mono, terminal code blocks, agenda + Q&A pages. Use for engineering presentations, internal sharing sessions, conference talks, and code-heavy walkthroughs.",
|
|
7407
|
+
"html-ppt-testing-safety-alert": "\u7EA2\u7425\u73C0\u8B66\u793A deck \u2014 \u9876/\u5E95 45\xB0 \u7EA2\u9ED1 hazard \u6761\u7EB9\u3001\u7EA2\u8272\u5220\u9664\u7EBF\u5426\u5B9A\u6807\u9898\u3001L1/L2/L3 \u7EFF/\u7425\u73C0/\u7EA2 tier \u5361\u7247\u3001\u5706\u70B9\u72B6\u6001 alert box\u3001policy-yaml \u4EE3\u7801\u5757\uFF08\u7EA2\u5DE6\u8FB9\u6846 + bad \u5173\u952E\u8BCD\u9AD8\u4EAE\uFF09\u3001\u7EA2\u7EFF checklist\u3001Q1 \u4E8B\u6545\u5806\u53E0\u67F1\u72B6\u56FE\u3002\u9002\u5408\u5B89\u5168 / \u98CE\u9669 / \u4E8B\u6545\u590D\u76D8 / \u7EA2\u961F / \u4E0A\u7EBF\u524D AI \u8BC4\u5BA1 / policy-as-code\u3002",
|
|
7408
|
+
"html-ppt-weekly-report": "Team weekly / status-update deck \u2014 corporate clarity, 8-cell KPI grid, shipped list, 8-week bar chart, next-week table. Use for \u5468\u62A5, business reviews, team status updates, and exec dashboards.",
|
|
7409
|
+
"html-ppt-xhs-pastel-card": '\u67D4\u548C\u9A6C\u5361\u9F99\u6162\u751F\u6D3B deck \u2014 \u5976\u6CB9 #fef8f1 \u5E95 + \u4E09\u4E2A\u67D4\u5149 blob\u3001Playfair \u659C\u4F53\u886C\u7EBF display \u6807\u9898\u6DF7 sans \u6B63\u6587\u300128px \u5706\u89D2\u9A6C\u5361\u9F99\u5361\u7247\uFF08\u6843 / \u8584\u8377 / \u5929 / \u7D2B / \u67E0 / \u73AB\uFF09\u3001Playfair \u659C\u4F53 01-04 \u5E8F\u53F7\u3001SVG donut \u56FE\u3001chip+page \u9876\u680F\u3002\u9002\u5408\u751F\u6D3B\u65B9\u5F0F / \u4E2A\u4EBA\u6210\u957F / \u6162\u751F\u6D3B / \u60C5\u7EEA\u7C7B\u5185\u5BB9\uFF0C"\u6742\u5FD7\u3001\u624B\u4F5C\u3001\u4E0D\u592A\u79D1\u6280"\u7684\u611F\u89C9\u3002',
|
|
7410
|
+
"html-ppt-xhs-post": "\u5C0F\u7EA2\u4E66 / Instagram \u98CE 9 \u9875 3:4 \u7AD6\u7248\u56FE\u6587\uFF08810\xD71080\uFF09\u2014 \u6696\u8272 pastel\u3001\u865A\u7EBF sticker \u5361\u7247\u3001\u5E95\u90E8\u9875\u7801\u70B9\u70B9\u3002\u7528\u4E8E\u53D1\u5C0F\u7EA2\u4E66\u56FE\u6587\u3001Instagram carousel\u3001\u54C1\u724C\u79CD\u8349\u5185\u5BB9\u3002",
|
|
7411
|
+
"html-ppt-xhs-white-editorial": "\u767D\u5E95\u6742\u5FD7\u98CE deck \u2014 \u7EAF\u767D\u80CC\u666F + \u9876\u90E8 10 \u8272\u5F69\u8679 bar\u300180-110px display \u6807\u9898\u3001\u7D2B\u2192\u84DD\u2192\u7EFF\u2192\u6A59\u2192\u7C89\u6E10\u53D8\u6587\u5B57\u3001\u9A6C\u5361\u9F99\u8F6F\u5361\u7247\u7EC4\uFF08\u7C89/\u7D2B/\u84DD/\u7EFF/\u6A59\uFF09\u3001\u9ED1\u5E95\u767D\u5B57 .focus pill\u3001\u5F15\u7528\u5927\u5757\u3002\u540C\u65F6\u9002\u5408\u53D1\u5C0F\u7EA2\u4E66\u56FE\u6587 + \u6A2A\u7248 PPT \u53CC\u7528\u3002",
|
|
7412
|
+
"html-ppt-zhangzara-8-bit-orbit": "8-Bit Orbit \u2014 Pixel-art neon arcade aesthetic on a deep navy void. Anything that should feel like a CRT screen at 2am: cyberpunk, gaming, web3, indie dev tools, hackathon demos.",
|
|
7413
|
+
"html-ppt-zhangzara-biennale-yellow": "Biennale Yellow \u2014 Solar yellow on warm parchment with deep indigo serif and atmospheric sun-glow gradients. Anything that should feel like an art-biennale poster or a museum's annual programme: exhibition decks, arts-institution announcements, design conference brochures, curatorial pitches, literary publications, studio retrospectives.",
|
|
7414
|
+
"html-ppt-zhangzara-block-frame": "BlockFrame \u2014 Neobrutalist deck with pastel-neon color blocks and chunky black borders. Anything that should feel pop-graphic and design-led: indie SaaS launches, agency credentials, creative reviews, brand redesigns.",
|
|
7415
|
+
"html-ppt-zhangzara-blue-professional": "Blue Professional \u2014 Cream paper background with electric cobalt blue accents; clean modern professional. Anything that should feel modern-considered and lightly authoritative: B2B SaaS pitches, consulting deliverables, advisory updates, investor reports.",
|
|
7416
|
+
"html-ppt-zhangzara-bold-poster": "Bold Poster \u2014 Editorial poster aesthetic with massive Shrikhand display and a single fire-engine red accent. Anything that should land like a magazine cover: brand manifestos, founder vision decks, editorial / cultural pitches, creative reviews.",
|
|
7417
|
+
"html-ppt-zhangzara-broadside": "Broadside \u2014 Dark editorial canvas with a single fire orange accent and bilingual Latin/Chinese type stack. Anything that should land like a broadside newspaper headline: brand manifestos, magazine and cultural pitches, design talks, bilingual EN/CN decks, founder vision statements.",
|
|
7418
|
+
"html-ppt-zhangzara-capsule": "Capsule \u2014 Modular pill-shaped cards on warm bone with a full pastel-pop palette. Anything that should feel modular, modern, and a little Y2K: lifestyle brands, creator portfolios, DTC launches, beauty / wellness, agency credentials.",
|
|
7419
|
+
"html-ppt-zhangzara-cartesian": "Cartesian \u2014 Quiet warm-neutral palette with classical Playfair serifs; tasteful and unhurried. Anything that should feel quiet, considered, and grown-up: investment theses, white papers, advisory work, longform research, gallery / cultural decks.",
|
|
7420
|
+
"html-ppt-zhangzara-cobalt-grid": "Cobalt Grid \u2014 Electric cobalt italic serifs on a graph-paper canvas, anchored by stair-stepped pixel-glitch decorations and slim hairline rules. Anything that should feel like a quietly serious design / research bulletin, art publication, or curated trend report.",
|
|
7421
|
+
"html-ppt-zhangzara-coral": "Coral \u2014 Cream and coral on near-black, set in oversized Bebas Neue. Anything that should feel warm-graphic and editorial: fashion, beauty, fitness, F&B, lifestyle brands, agency credentials.",
|
|
7422
|
+
"html-ppt-zhangzara-creative-mode": "Creative Mode \u2014 Cream paper canvas with confident multi-color (green, pink, orange, yellow) accents and Archivo Black display. Anything that should feel design-led and confident: creative agency pitches, design studio decks, ad shop credentials, brand creative reviews, art-direction reviews.",
|
|
7423
|
+
"html-ppt-zhangzara-daisy-days": "Daisy Days \u2014 Cheerful pastel deck with hand-drawn daisies, stars, and rainbows. Friendly, soft, and warm. Anything that should feel friendly, soft, and joyful: educational content, kids and family, wellness programs, community workshops, creator portfolios for craft / illustration.",
|
|
7424
|
+
"html-ppt-zhangzara-editorial-tri-tone": "Editorial Tri-Tone \u2014 Three-color editorial system: dusty pink, mustard cream, and deep burgundy, set in Bricolage + Instrument Serif. Anything that should feel like a fashion-magazine spread: editorial pitches, fashion brand decks, lifestyle media, art direction reviews.",
|
|
7425
|
+
"html-ppt-zhangzara-grove": "Grove \u2014 Forest-green canvas with cream type, classical Playfair serifs, and a single rust accent. Anything that should feel organic, considered, and grown-up: sustainability and wellness brands, outdoor / nature products, wineries and restaurants, literary or arts decks, advisory deliverables, bilingual EN/CN reports.",
|
|
7426
|
+
"html-ppt-zhangzara-long-table": "Long Table \u2014 Warm cream and rust-red supper-club aesthetic with bold uppercase grotesk headlines, italic Fraunces, and pill-shaped outlined buttons. Anything that should feel like a warm, intimate, modern hospitality / community brand: supper clubs, dinner series, small restaurants, creative-studio events, membership pitches, lifestyle and wine brands.",
|
|
7427
|
+
"html-ppt-zhangzara-mat": "Mat \u2014 Dark sage canvas with bone paper and burnt-orange accent; mid-century modern with wood undertones. Anything that should feel mid-century, tactile, and intentional: design studio credentials, architecture / interior brands, ceramics / craft / furniture, advisory decks.",
|
|
7428
|
+
"html-ppt-zhangzara-monochrome": "Monochrome \u2014 Ivory ledger paper with all-black type; Lora serif headlines, Jost body, no color at all. Anything that should feel like a hand-typeset ledger: user research synthesis, white papers, longform reports, academic and policy briefs, advisory deliverables, bilingual EN/CN reports.",
|
|
7429
|
+
"html-ppt-zhangzara-neo-grid-bold": "Neo-Grid Bold \u2014 Editorial neo-brutalism with a single neon yellow accent on off-white paper. Anything that should feel confident and editorial-graphic: design-led pitches, brand work, founder talks, conference keynotes.",
|
|
7430
|
+
"html-ppt-zhangzara-peoples-platform": "People's Platform (Block & Bold) \u2014 Activist poster energy: blue, orange, red on cream, with Alfa Slab + Caveat Brush. Anything that should feel honest, loud, and graphic: cultural commentary, manifestos, civic and community decks, design talks, campaign pitches.",
|
|
7431
|
+
"html-ppt-zhangzara-pin-and-paper": "Pin & Paper \u2014 Yellow paper with safety-pin illustrations, ink-blue handwritten Caveat, paper-grain texture. Anything that should feel hand-crafted, warm, and literary: qualitative research findings, founder reflections, longform brand stories, workshop debriefs.",
|
|
7432
|
+
"html-ppt-zhangzara-pink-script": "Pink Script \u2014 After Hours \u2014 Black canvas, hot pink accent, pearl-cream paper, Instrument Serif headlines: late-night editorial luxury. Anything that should feel nocturnal, intentional, and a little luxe: fashion brand decks, creator personal brands, after-hours / nightlife / spirits launches, luxury product reveals, editorial features.",
|
|
7433
|
+
"html-ppt-zhangzara-playful": "Playful \u2014 Sun-warm peach background with Syne display: a friendly indie launch deck. Anything that should feel warm, indie, and approachable: creator portfolios, indie product launches, lifestyle brands, small-business pitches, newsletter / community decks.",
|
|
7434
|
+
"html-ppt-zhangzara-raw-grid": "Raw Grid \u2014 Neo-brutalist deck with thick borders, offset shadows, and a pink/sage/ink palette. Anything that should feel direct and graphic-confident: founder pitches, accelerator demos, brand decks, indie launches, creator portfolios.",
|
|
7435
|
+
"html-ppt-zhangzara-retro-windows": "Retro Windows \u2014 Windows 95 chrome: gray title bars, MS Sans Serif, pixel typography, full nostalgia. Anything that should feel knowingly nostalgic: retro gaming, Y2K-aesthetic brands, creator portfolios with a 90s vibe, tech-history talks, deliberately tongue-in-cheek decks.",
|
|
7436
|
+
"html-ppt-zhangzara-sakura-chroma": "Sakura Chroma \u2014 Vintage Japanese cassette-package aesthetic: cream paper, diagonal rainbow ribbons, condensed bold type, JIS-style spec checkboxes. Anything that should feel like a vintage Japanese cassette package or a TDK / Sony / Sakura Color product catalogue: indie hardware brand decks, music-label release schedules, analog studio retrospectives, zine and magazine pitches, kawaii-tech product launches, creative-studio annual reports.",
|
|
7437
|
+
"html-ppt-zhangzara-scatterbrain": "Scatterbrain \u2014 Post-it inspired: pastel sticky notes, Caveat handwriting, Shrikhand and Zilla Slab type stack. Anything that should feel like a designer's whiteboard: brainstorms, workshops, creative-agency credentials, design-thinking sessions, ideation pitches, art-direction reviews.",
|
|
7438
|
+
"html-ppt-zhangzara-signal": "Signal \u2014 Deep navy canvas with bone paper and a single muted-gold accent; institutional with quiet weight. Anything that should feel weighty, considered, and credibly institutional: investor decks, board presentations, consulting deliverables, legal / policy briefs, advisory pitches.",
|
|
7439
|
+
"html-ppt-zhangzara-soft-editorial": "Soft Editorial \u2014 Cormorant Garamond serif on warm paper with sage, blush, and lemon accents. Anything that should feel literary, elegant, and unhurried: editorial features, longform brand stories, gallery / museum decks, advisory deliverables, wedding / lifestyle media, founder essays.",
|
|
7440
|
+
"html-ppt-zhangzara-stencil-tablet": "Stencil & Tablet \u2014 Bone paper with stencil-cut headlines and a six-color earth palette: archaeology meets brand. Anything that should feel archival, tactile, and weighty-graphic: museum and cultural-institution decks, art / architecture brands, longform research, heritage and craft brands, manifestos.",
|
|
7441
|
+
"html-ppt-zhangzara-studio": "Studio \u2014 Black canvas with electric-yellow type; high-voltage design studio aesthetic. Anything that should feel electric and design-led: studio credentials, creative agency pitches, brand showcases, art-direction reviews, fashion / sneaker brand work.",
|
|
7442
|
+
"html-ppt-zhangzara-vellum": "Vellum \u2014 Deep navy canvas with warm-yellow italic Cormorant serifs and a single dusty teal accent. A quiet, scholarly aesthetic. Anything that should feel scholarly, literary, and quietly intelligent: research synthesis, white papers, academic and policy briefs, advisory deliverables, longform editorial pieces, founder reflections.",
|
|
7443
|
+
hyperframes: "Create video compositions, animations, title cards, overlays, captions, voiceovers, audio-reactive visuals, and scene transitions in HyperFrames HTML. Use when asked to build any HTML-based video content, add captions or subtitles synced to audio, generate text-to-speech narration, create audio-reactive animation (beat sync, glow, pulse driven by music), add animated text highlighting (marker sweeps, hand-drawn circles, burst lines, scribble, sketchout), or add transitions between scenes (crossfades, wipes, reveals, shader transitions). Covers composition authoring, timing, media, and the full video production workflow. For CLI commands (init, lint, preview, render, transcribe, tts) see the hyperframes-cli skill.",
|
|
7444
|
+
"ib-pitch-book": "Investment-banking pitch book for strategic alternatives \u2014 trading comps, precedent transactions, valuation football field, DCF sensitivity, strategic-options matrix, process recommendation. Built by adapting `assets/template.html` so IB-specific chrome, disclosure bands, and source labels are preserved. Use for Board / sell-side discussion materials. Not a VC fundraising deck (see html-ppt-pitch-deck). Workflow adapted from Anthropic financial-services Pitch Agent (Apache-2.0).",
|
|
7445
|
+
"image-poster": "Single-image generation skill for posters, key art, and editorial illustrations. Defaults to gpt-image-2 but is provider-agnostic \u2014 the same workflow drives Flux, Imagen, or Midjourney via the active upstream tooling. Output is one or more PNG/JPEG files saved to the project folder.",
|
|
7446
|
+
invoice: 'A printable invoice page \u2014 sender + recipient block, line items table, tax breakdown, totals, and payment instructions. Use when the brief mentions "invoice", "bill", "billing statement", or "\u53D1\u7968".',
|
|
7447
|
+
"kami-deck": "Produce a print-grade slide deck in the kami (\u7D19 / \u7EB8) design system \u2014 warm parchment background (or ink-blue for cover / chapter slides), serif at one weight, ink-blue accent \u2264 5% per slide, no italic. Horizontal magazine swipe pagination (\u2190/\u2192 \xB7 wheel \xB7 swipe \xB7 ESC overview). One self-contained HTML file, zero dependencies beyond Google Fonts.",
|
|
7448
|
+
"kami-landing": "Produce a print-grade single-page kami (\u7D19 / \u7EB8) document \u2014 warm parchment canvas, ink-blue accent, serif at one weight, no italic, no cool grays. The output reads like a professional white paper or studio one-pager, not an app UI. Multilingual by design (EN \xB7 zh-CN \xB7 ja). One self-contained HTML file, zero dependencies.",
|
|
7449
|
+
"kanban-board": 'Kanban / task board with columns (To do / In progress / In review / Done), draggable-looking cards, assignee avatars, swimlanes, and a top filter bar. Use when the brief mentions "kanban", "task board", "sprint board", "trello", "\u770B\u677F".',
|
|
7450
|
+
last30days: "Recent community and social trend research over the last 30 days. Use when the brief asks what people are saying now, recent sentiment, community reactions, social proof, launch reaction, trend scan, or last-30-days context.",
|
|
7451
|
+
"live-artifact": "Create refreshable, auditable Open Design artifacts backed by connector or local data. Trigger when the user asks for live dashboards, refreshable reports, synced views, or reusable data-backed artifacts.",
|
|
7452
|
+
"live-dashboard": "Notion-style team dashboard rendered as a Live Artifact. A single-page, self-contained HTML dashboard with KPIs, a 7-day sparkline, a real-time activity feed and a linked-database task table \u2014 wired to Notion via the Composio connector catalog. Refreshes on demand and when the artifact is opened. Falls back to seeded mock data when no connector is bound, so it works offline / in screenshots / in the picker preview.",
|
|
7453
|
+
"magazine-poster": 'An editorial-style poster \u2014 newsprint paper, dateline, oversized serif headline with a struck-through word and italic accent, a 2-column body block, and 6 numbered sections with annotated pull-quote captions. Reads like a Sunday-paper full-page essay or a thoughtful launch poster. Use when the brief asks for "magazine poster", "editorial poster", "newsprint", "essay layout", or "manifesto".',
|
|
7454
|
+
"meeting-notes": 'Meeting notes page \u2014 title bar with attendees, agenda checklist, decisions block, action items table with owners + dates, and a "next meeting" footer. Use when the brief mentions "meeting notes", "minutes", "1:1 notes", "all-hands recap", or "\u4F1A\u8BAE\u7EAA\u8981".',
|
|
7455
|
+
"mobile-onboarding": 'A multi-screen mobile onboarding flow rendered as three phone frames side by side \u2014 splash, value-prop, sign-in. Status bar, swipe dots, primary CTA. Use when the brief mentions "mobile onboarding", "iOS onboarding", "phone signup", or "\u79FB\u52A8\u7AEF\u5F15\u5BFC".',
|
|
7456
|
+
"motion-frames": 'A single-frame motion-design composition with looping CSS animations \u2014 rotating type ring, animated globe, ticking timer, parallax labels. Renders as a hero video poster you can hand straight to HyperFrames or any keyframe-based exporter. Use when the brief asks for "motion design", "animated hero", "loop", "video poster", "title card", or pairs Open Claude Design with HyperFrames for a kinetic export.',
|
|
7457
|
+
"open-design-landing": "Produce a world-class single-page editorial landing site in the Atelier Zero visual language (Monocle / Apartamento / \xC9tudes editorial collage) \u2014 the same aesthetic Open Design uses for its own marketing surface. The agent fills a typed `inputs.json` from a brand brief, optionally generates 16 collage assets via gpt-image-2, then runs a pure-function composer that emits a self-contained HTML file; a separate path can mirror the Astro marketing site in `apps/landing-page/`. Drop-in scroll-reveal motion and a Headroom-style sticky nav are wired automatically.",
|
|
7458
|
+
"open-design-landing-deck": "Produce a single-file slide deck in the Atelier Zero visual language (warm-paper background, italic-serif emphasis spans, coral terminating dots, surreal collage plates) \u2014 Open Design's brand deck recipe. The deck uses **horizontal magazine-style swipe pagination** (\u2190/\u2192, wheel, swipe), a per-slide chrome strip with brand mark and slide counter, an ESC overview grid, a coral progress bar, and inherits the canonical stylesheet + 16-slot image library from the sister `open-design-landing` skill.",
|
|
7459
|
+
"orbit-general": `Open Orbit briefing skill \u2014 selected by the Orbit pipeline when the user has two or more connectors connected. Pulls the past 24 hours of activity from every authenticated connector (GitHub, Linear, Notion, Slack, \u98DE\u4E66, Calendar, Gmail, Drive, Sentry, Vercel, \u2026) and renders a single adaptive bento-grid dashboard at the top of "\u6211\u7684\u8BBE\u8BA1". Each connector module picks its own UI form (list, avatar stack, status ring, heatmap, file grid, alert card, \u2026) based on the data shape it returns, so the layout scales as Orbit's connector ecosystem grows. This skill should not be triggered manually \u2014 it is invoked by Orbit's daily-digest scheduler against the user's live connector data.`,
|
|
7460
|
+
"orbit-github": "Open Orbit briefing skill \u2014 selected by the Orbit pipeline when GitHub is the user's only connected connector, or when the user explicitly scopes their daily digest to GitHub. Pulls the past 24 hours of PRs, review requests, issues, CI runs, and merges from the user's authenticated GitHub connection and renders them in a layout that mirrors GitHub's native Notifications + PR-diff visual language. This skill should not be triggered manually \u2014 it is invoked by Orbit's daily-digest scheduler against live GitHub data.",
|
|
7461
|
+
"orbit-gmail": "Open Orbit briefing skill \u2014 selected by the Orbit pipeline when Gmail is the user's only connected connector, or when the user explicitly scopes their daily digest to Gmail. Pulls the past 24 hours of inbox activity (replies awaited, mentions, cc, auto- categorized bulk) from the user's authenticated Gmail connection and renders the digest as the Orbit Daily Digest email opened inside Gmail's reading view. This skill should not be triggered manually \u2014 it is invoked by Orbit's daily-digest scheduler against live Gmail data.",
|
|
7462
|
+
"orbit-linear": "Open Orbit briefing skill \u2014 selected by the Orbit pipeline when Linear is the user's only connected connector, or when the user explicitly scopes their daily digest to Linear. Pulls the past 24 hours of issue movement, status changes, assignments, and cycle progress from the user's authenticated Linear connection and renders the digest in Linear's native Inbox + cycle-progress visual language. This skill should not be triggered manually \u2014 it is invoked by Orbit's daily-digest scheduler against live Linear data.",
|
|
7463
|
+
"orbit-notion": "Open Orbit briefing skill \u2014 selected by the Orbit pipeline when Notion is the user's only connected connector, or when the user explicitly scopes their daily digest to Notion. Pulls the past 24 hours of document edits, comments, mentions, and database row changes from the user's authenticated Notion connection and renders the digest as a native Notion page (callout / toggle / database table primitives). This skill should not be triggered manually \u2014 it is invoked by Orbit's daily-digest scheduler against live Notion data.",
|
|
7464
|
+
"pm-spec": 'Product spec / PRD as a single page \u2014 problem, success metrics, scope, user stories, design notes, rollout plan, open questions. Use when the brief mentions "PRD", "spec", "product spec", "feature brief", or "\u9700\u6C42\u6587\u6863".',
|
|
7465
|
+
"pricing-page": 'A standalone pricing page \u2014 header, plan tiers, feature comparison table, and an FAQ. Use when the brief asks for "pricing", "plans", "subscription tiers", or a "compare plans" page.',
|
|
7466
|
+
"replit-deck": `Single-file horizontal-swipe HTML deck in the style of Replit Slides's landing-page template gallery. Eight distinct themes (helix, holm, vance, bevel, world-dark, world-mint, atlas, bluehouse) \u2014 each a complete visual system (palette + type + accent) captured from replit.com/slides. Pick one theme, do not mix. For pitch decks, board reports, brand memos, campaign reveals \u2014 when the user explicitly wants "Replit Slides style".`,
|
|
7467
|
+
"saas-landing": 'Single-page SaaS landing with hero, features, social proof, pricing, and CTA. Respects the active DESIGN.md color/typography/layout tokens. Trigger keywords: "saas landing", "marketing page", "product landing".',
|
|
7468
|
+
"simple-deck": "Single-file horizontal-swipe HTML deck. Built by copying the seed `assets/template.html` (which carries the proven 5-rule iframe nav script) and pasting slide layouts from `references/layouts.md`. Pitch decks, product overviews, study material \u2014 when you don't need the magazine aesthetic of `magazine-web-ppt`.",
|
|
7469
|
+
"social-carousel": 'A three-card social-media carousel laid out as 1080\xD71080 squares \u2014 three cinematic, on-brand panels with display headlines that connect across the series ("onwards." \u2192 "to the next one." \u2192 "looking ahead."). Each card has a brand mark, a number / total, a caption, and a "loop" affordance. Use when the brief asks for a "carousel post", "social carousel", "Instagram carousel", "LinkedIn series", "X thread cards", or "\u4E09\u8FDE\u53D1".',
|
|
7470
|
+
"social-media-dashboard": 'Creator-facing social media analytics dashboard in a single HTML file. A platform switcher (X / LinkedIn / YouTube / Instagram), a row of KPI cards (followers, engagement rate, likes, reposts), a follower-growth chart, a "top post this week" preview, and a trending topics / top comments side panel. Use when the brief mentions a "social media dashboard", "creator analytics", "social analytics", or names specific platforms (X, Twitter, LinkedIn, YouTube, Instagram, TikTok) together with metrics like followers, engagement, likes, reposts.',
|
|
7471
|
+
"social-media-matrix-tracker-template": "\u793E\u5A92\u77E9\u9635\u6570\u636E\u8FFD\u8E2A\u9762\u677F\u6A21\u677F\uFF08Social Media Matrix Tracker\uFF09\u3002 Use when users ask for a cinematic, data-dense social media analytics dashboard with multi-platform metrics, interactive charts, hover insights, range compare, and dark/light theme switching in a single HTML artifact.",
|
|
7472
|
+
"sprite-animation": 'A pixel / sprite-style animated explainer slide \u2014 full-bleed cream stage, bold display year, animated pixel-art mascot (e.g. Hanafuda card, mushroom, or 8-bit console), kinetic Japanese display type, ticking timeline ribbon. Reads like a single frame of an educational motion video \u2014 looping CSS keyframes, no JS, ready to be screen-recorded into a vertical video. Use when the brief asks for a "sprite animation", "pixel-art video", "8-bit explainer", "history of X explainer", "kinetic typography history", "Nintendo-style", "\u7CBE\u7075\u56FE\u52A8\u753B", "\u50CF\u7D20\u52A8\u753B", or "\u590D\u53E4\u52A8\u753B".',
|
|
7473
|
+
"team-okrs": 'OKR tracker page \u2014 quarter banner, three objectives with their key results as progress bars, owner avatars, status pills, and a "this quarter at a glance" sidebar. Use when the brief mentions "OKRs", "key results", "objectives", or "\u76EE\u6807".',
|
|
7474
|
+
"trading-analysis-dashboard-template": "Professional trading analysis dashboard template (single-file HTML) with light/dark theme switch, dense market panels, chart interactions, demo/live playback, and command palette behavior. Use when users ask for a Wall-Street-style analytics terminal, trading cockpit, or high-tech financial dashboard template with realistic data layout.",
|
|
7475
|
+
tweaks: 'Wrap any HTML artifact with a side panel of live, parameterized controls \u2014 accent color, type scale, density, motion, theme \u2014 that rewrite CSS custom properties in real time and persist to localStorage. Lets the user explore variants of a design without re-prompting the agent. Use when the brief asks for "variants", "side-by-side options", "tweak this", "let me adjust", "live knobs", or "\u5B9E\u65F6\u8C03\u53C2".',
|
|
7476
|
+
"video-shortform": "Short-form video generation skill \u2014 3-10 second clips for product reveals, motion teasers, ambient loops. Defaults to Seedance 2 but works the same with Kling 3 / 4, Veo 3 or Sora 2. Output is one MP4 saved to the project folder. When the workspace also ships an interactive-video / hyperframes skill, prefer composing several short shots into a single timeline rather than one long monolithic clip.",
|
|
7477
|
+
"waitlist-page": "Minimal pre-launch landing with email capture, brand logo, and optional decorative layer. Reads DESIGN.md for colors, typography, and layout rules. Best for: product launches, beta signups, early access programs, indie projects.",
|
|
7478
|
+
"web-prototype": "General-purpose desktop web prototype. Single self-contained HTML file built by copying the seed `assets/template.html` and pasting section layouts from `references/layouts.md`. Default for any landing / marketing / docs / SaaS page when no more specific skill matches.",
|
|
7479
|
+
"web-prototype-taste-brutalist": "Swiss industrial-print web prototype. Newsprint canvas, monolithic black grotesque, viewport-bleeding numerals, hairline grid dividers, hazard-red accent, ASCII syntax decoration. Distilled from Leonxlnx/taste-skill `brutalist-skill` (Swiss Industrial Print mode).",
|
|
7480
|
+
"web-prototype-taste-soft": "Apple-tier soft web prototype. Silver/cream canvas, double-bezel cards, button-in-button CTAs, generous squircle radii, spring motion, ambient mesh. Distilled from Leonxlnx/taste-skill `soft-skill` + sections 4\u20138 of `taste-skill`.",
|
|
7481
|
+
"wireframe-sketch": `A hand-drawn wireframe exploration \u2014 graph-paper background, marker / pencil tone, multiple tab labels for variants, sticky-note annotations, scribbled chart placeholders, hatched fills. Reads like a designer's whiteboard before any pixels are committed. Use when the brief asks for "wireframe", "sketch wireframe", "hand-drawn", "lo-fi", "whiteboard", "\u8349\u7A3F", or "\u624B\u7ED8\u539F\u578B".`,
|
|
7482
|
+
"x-research": "X/Twitter public sentiment research for recent market, company, product, or community discourse. Use when the brief asks what people are saying on X, Twitter sentiment, CT sentiment, public opinion, expert posts, or social reaction around a stock, sector, company, product, or market event."
|
|
7483
|
+
};
|
|
7484
|
+
var ADDITIONAL_OPEN_DESIGN_DESIGN_SYSTEM_DESCRIPTIONS = {
|
|
7485
|
+
agentic: "Conversational AI-first interface with minimal controls, clear outcomes, and delegated task flows for agentic workflows.",
|
|
7486
|
+
airbnb: "Travel marketplace. Warm coral accent, photography-driven, rounded UI.",
|
|
7487
|
+
airtable: "Spreadsheet-database hybrid. Colorful, friendly, structured data aesthetic.",
|
|
7488
|
+
ant: "Structured, enterprise-focused design system emphasizing clarity, consistency, and efficiency for data-dense web applications.",
|
|
7489
|
+
application: "App dashboard with purple-themed aesthetic, top-bar navigation, card-based layouts, and developer-first workflows.",
|
|
7490
|
+
arc: '"The browser that browses for you." Translucent surfaces, gradient warmth, sidebar-first layout.',
|
|
7491
|
+
artistic: "High-contrast, expressive style with creative typography and bold color choices for visually striking interfaces.",
|
|
7492
|
+
"atelier-zero": "A magazine-grade, collage-driven visual system: warm paper canvas, surreal",
|
|
7493
|
+
bento: "Modular grid layout with card-like blocks, clear hierarchy, soft spacing, and subtle visual contrast for organized, scannable interfaces.",
|
|
7494
|
+
binance: "Crypto exchange. Bold yellow accent on monochrome, trading-floor urgency.",
|
|
7495
|
+
bmw: "Luxury automotive. Dark premium surfaces, precise German engineering aesthetic.",
|
|
7496
|
+
"bmw-m": "Motorsport performance sub-brand. Near-black cockpit surfaces, BMW M tricolor accents, sharp engineering geometry.",
|
|
7497
|
+
bold: "Strong visual presence with heavyweight typography, high-contrast colors, and commanding layouts.",
|
|
7498
|
+
brutalism: "Raw, anti-design aesthetic inspired by concrete architecture with unadorned elements, jarring layouts, and functional minimalism.",
|
|
7499
|
+
bugatti: "Hypercar brand. Cinema-black canvas, monochrome austerity, monumental display type.",
|
|
7500
|
+
cafe: "Cozy cafe-inspired interface with warm tones, soft typography, and clean layouts for a relaxed browsing experience.",
|
|
7501
|
+
cal: "Open-source scheduling. Clean neutral UI, developer-oriented simplicity.",
|
|
7502
|
+
canva: "Visual creation platform. Vivid purple-blue gradient, generous spacing, friendly geometry.",
|
|
7503
|
+
cisco: "Enterprise infrastructure brand. Dark trust surfaces, Cisco Blue signal, technical clarity.",
|
|
7504
|
+
claude: "Anthropic's AI assistant. Warm terracotta accent, clean editorial layout.",
|
|
7505
|
+
clay: "Creative agency. Organic shapes, soft gradients, art-directed layout.",
|
|
7506
|
+
claymorphism: "Soft, rounded 3D-like shapes mimicking malleable clay with playful, puffy elements and colorful surfaces.",
|
|
7507
|
+
clean: "Simplicity-focused design with ample whitespace, legible typography, and a limited color palette to reduce visual clutter.",
|
|
7508
|
+
clickhouse: "Fast analytics database. Yellow-accented, technical documentation style.",
|
|
7509
|
+
cohere: "Enterprise AI platform. Vibrant gradients, data-rich dashboard aesthetic.",
|
|
7510
|
+
coinbase: "Crypto exchange. Clean blue identity, trust-focused, institutional feel.",
|
|
7511
|
+
colorful: "Vibrant, high-contrast palettes and gradients for engaging, memorable, and modern user experiences.",
|
|
7512
|
+
composio: "Tool integration platform. Modern dark with colorful integration icons.",
|
|
7513
|
+
contemporary: "Current-era minimalist design with bento grids, dark mode support, and high-performance accessible layouts.",
|
|
7514
|
+
corporate: "Professional, brand-aligned design with structured grids, minimalist layouts, and consistent enterprise patterns.",
|
|
7515
|
+
cosmic: "Futuristic sci-fi aesthetic with dark themes, vibrant neon accents, and immersive spatial elements.",
|
|
7516
|
+
creative: "Playful, character-driven design with expressive typography and bold graphics for landing pages and creative projects.",
|
|
7517
|
+
cursor: "AI-first code editor. Sleek dark interface, gradient accents.",
|
|
7518
|
+
default: "A clean, product-oriented default. Use when the brief doesn't call for a",
|
|
7519
|
+
discord: "Voice / chat platform. Deep blurple, dark-first surfaces, playful accent moments.",
|
|
7520
|
+
dithered: "Dot-pattern rendering technique that simulates shades with a limited palette for nostalgic, retro, high-contrast visuals.",
|
|
7521
|
+
doodle: "Hand-drawn, sketch-like style with doodles, handwritten fonts, and imperfect lines for a playful, informal feel.",
|
|
7522
|
+
dramatic: "High-contrast, theatrical design with bold layouts, immersive visuals, and unconventional compositions that command attention.",
|
|
7523
|
+
duolingo: "Language-learning platform. Bright owl green, chunky shadows, gamified joy.",
|
|
7524
|
+
elegant: "Graceful, refined aesthetic with delicate typography, minimal palettes, and polished layouts that exude sophistication.",
|
|
7525
|
+
elevenlabs: "AI voice platform. Dark cinematic UI, audio-waveform aesthetics.",
|
|
7526
|
+
energetic: "Dynamic, vibrant style with thick borders, geometric shapes, high-contrast colors, and expressive typography conveying motion and vitality.",
|
|
7527
|
+
enterprise: "Clean, high-contrast enterprise design for data-driven workflows with intuitive drag-and-drop patterns and structured layouts.",
|
|
7528
|
+
expo: "React Native platform. Dark theme, tight letter-spacing, code-centric.",
|
|
7529
|
+
expressive: "Vibrant, personality-driven design with bold colors, playful graphics, and dynamic layouts that balance creativity with structure.",
|
|
7530
|
+
fantasy: "Game-inspired fantasy aesthetic with bold, premium visuals, rich color palettes, and immersive thematic elements.",
|
|
7531
|
+
ferrari: "Luxury automotive. Chiaroscuro editorial, Ferrari Red accents, cinematic black.",
|
|
7532
|
+
figma: "Collaborative design tool. Vibrant multi-color, playful yet professional.",
|
|
7533
|
+
flat: "Two-dimensional minimalist style with vibrant colors, clean typography, and no 3D effects for fast, user-friendly interfaces.",
|
|
7534
|
+
framer: "Website builder. Bold black and blue, motion-first, design-forward.",
|
|
7535
|
+
friendly: "Approachable, intuitive design with rounded elements, ample whitespace, and soft pastel color palettes.",
|
|
7536
|
+
futuristic: "Forward-looking design with tech-inspired typography, modern layouts, and a sleek, innovation-driven aesthetic.",
|
|
7537
|
+
github: "Code-forward platform. Functional density, blue-on-white precision, Primer foundations.",
|
|
7538
|
+
glassmorphism: "Frosted glass effect with translucent layers, subtle blur, and luminous borders for depth and modern elegance.",
|
|
7539
|
+
gradient: "Smooth color transitions and gradient-rich surfaces for modern, playful interfaces with visual depth.",
|
|
7540
|
+
hashicorp: "Infrastructure automation. Enterprise-clean, black and white.",
|
|
7541
|
+
hud: "Fighter jet / helicopter head-up display. Phosphor green on near-black, all-caps data overlays, angular geometry. Zero ambiguity at speed and altitude.",
|
|
7542
|
+
huggingface: "ML community hub. Sunny yellow accent, monospace identity, cheerful and dense.",
|
|
7543
|
+
ibm: "Enterprise technology. Carbon design system, structured blue palette.",
|
|
7544
|
+
intercom: "Customer messaging. Friendly blue palette, conversational UI patterns.",
|
|
7545
|
+
kami: "Editorial paper system: warm parchment canvas, ink-blue accent, serif-led hierarchy. Built for resumes, one-pagers, white papers, portfolios, slide decks \u2014 anything that should feel like high-quality print rather than UI. Multilingual by design (EN \xB7 zh-CN \xB7 ja).",
|
|
7546
|
+
kraken: "Crypto trading. Purple-accented dark UI, data-dense dashboards.",
|
|
7547
|
+
lamborghini: "Supercar brand. True black surfaces, gold accents, dramatic uppercase typography.",
|
|
7548
|
+
levels: "Conversion-focused design that removes friction and guides users toward action through clarity, trust, and speed.",
|
|
7549
|
+
"linear-app": "Project management. Ultra-minimal, precise, purple accent.",
|
|
7550
|
+
lingo: "Playful, minimal design with bright colors, rounded shapes, tactile 3D borders, and friendly illustrations for approachable interfaces.",
|
|
7551
|
+
loom: "Loom async video. Purple primary, friendly surfaces, video-first layout. Clean and professional without being corporate.",
|
|
7552
|
+
lovable: "AI full-stack builder. Playful gradients, friendly dev aesthetic.",
|
|
7553
|
+
luxury: "High-end dark aesthetic with bold headings, monochromatic palette, and premium feel for luxury brand experiences.",
|
|
7554
|
+
mastercard: "Global payments network. Warm cream canvas, orbital pill shapes, editorial warmth.",
|
|
7555
|
+
material: "Google's Material Design with layered surfaces, dynamic theming, built-in motion, and responsive cross-platform patterns.",
|
|
7556
|
+
meta: "Tech retail store. Photography-first, binary light/dark surfaces, Meta Blue CTAs.",
|
|
7557
|
+
minimal: "Stripped-back design emphasizing whitespace, clean typography, and restrained color for maximum clarity and focus.",
|
|
7558
|
+
minimax: "AI model provider. Bold dark interface with neon accents.",
|
|
7559
|
+
mintlify: "Documentation platform. Clean, green-accented, reading-optimized.",
|
|
7560
|
+
miro: "Visual collaboration. Bright yellow accent, infinite canvas aesthetic.",
|
|
7561
|
+
"mission-control": "Space/aerospace mission monitoring. Dark command center, amber telemetry, monospace precision. Functional clarity above all else.",
|
|
7562
|
+
"mistral-ai": "Open-weight LLM provider. French-engineered minimalism, purple-toned.",
|
|
7563
|
+
modern: "Contemporary editorial style with serif typography, minimal palettes, and clean layouts for polished digital products.",
|
|
7564
|
+
mongodb: "Document database. Green leaf branding, developer documentation focus.",
|
|
7565
|
+
neobrutalism: "Modern take on brutalism with bold borders, vivid accent colors, and raw, high-contrast layouts on warm surfaces.",
|
|
7566
|
+
neon: "Electric neon glow effects with high-contrast color pairings for bold, attention-grabbing interfaces.",
|
|
7567
|
+
neumorphism: "Soft, extruded UI elements with inner and outer shadows on monochromatic surfaces for a tactile, embedded look.",
|
|
7568
|
+
nike: "Athletic retail. Monochrome UI, massive uppercase type, full-bleed photography.",
|
|
7569
|
+
notion: "All-in-one workspace. Warm minimalism, serif headings, soft surfaces.",
|
|
7570
|
+
nvidia: "GPU computing. Green-black energy, technical power aesthetic.",
|
|
7571
|
+
ollama: "Run LLMs locally. Terminal-first, monochrome simplicity.",
|
|
7572
|
+
openai: "Calm, near-monochrome system anchored in deep teal-black with generous white space and editorial typography.",
|
|
7573
|
+
"opencode-ai": "AI coding platform. Developer-centric dark theme.",
|
|
7574
|
+
pacman: "Retro arcade-inspired design with pixel fonts, dotted borders, playful high-contrast colors, and 8-bit game aesthetics.",
|
|
7575
|
+
paper: "Paper-textured, print-inspired design with minimal colors, clean serif/sans typography, and tactile surface qualities.",
|
|
7576
|
+
perplexity: "Conversational AI search engine. Deep-dark canvas, sharp typography, single violet accent, dense information hierarchy.",
|
|
7577
|
+
perspective: "Spatial depth design with isometric views, vanishing points, and layered elements that guide attention through 3D-like realism.",
|
|
7578
|
+
pinterest: "Visual discovery. Red accent, masonry grid, image-first.",
|
|
7579
|
+
playstation: "Gaming console retail. Three-surface channel layout, quiet-authority display type, cyan hover-scale.",
|
|
7580
|
+
posthog: "Product analytics. Playful hedgehog branding, developer-friendly dark UI.",
|
|
7581
|
+
premium: "Apple-inspired premium aesthetic with precise spacing, modern typography, and a refined, polished visual language.",
|
|
7582
|
+
professional: "Polished, business-ready design with modern typography, structured layouts, and a trustworthy visual identity.",
|
|
7583
|
+
publication: "Print-inspired visual language for books, magazines, and reports with editorial grids and expressive typography.",
|
|
7584
|
+
raycast: "Productivity launcher. Sleek dark chrome, vibrant gradient accents.",
|
|
7585
|
+
refined: "Carefully curated, modern minimal style with elegant serif typography and understated, sophisticated palettes.",
|
|
7586
|
+
renault: "French automotive. Vibrant aurora gradients, NouvelR typography, bold energy.",
|
|
7587
|
+
replicate: "Run ML models via API. Clean white canvas, code-forward.",
|
|
7588
|
+
resend: "Email API. Minimal dark theme, monospace accents.",
|
|
7589
|
+
retro: "Throwback design with vintage-inspired typography, high-contrast retro palettes, and nostalgic visual elements.",
|
|
7590
|
+
revolut: "Digital banking. Sleek dark interface, gradient cards, fintech precision.",
|
|
7591
|
+
runwayml: "AI video generation. Cinematic dark UI, media-rich layout.",
|
|
7592
|
+
sanity: "Headless CMS. Red accent, content-first editorial layout.",
|
|
7593
|
+
sentry: "Error monitoring. Dark dashboard, data-dense, pink-purple accent.",
|
|
7594
|
+
shadcn: "Shadcn/ui-inspired design with minimal, clean components, monochrome palette, and utility-first patterns.",
|
|
7595
|
+
shopify: "E-commerce platform. Dark-first cinematic, neon green accent, ultra-light type.",
|
|
7596
|
+
simple: "Straightforward, no-frills design with clean typography, neutral colors, and intuitive layouts that stay out of the way.",
|
|
7597
|
+
skeumorphism: "Real-world mimicry with textured surfaces, 3D effects, and familiar physical metaphors for intuitive digital interfaces.",
|
|
7598
|
+
slack: "Workplace communication platform. Aubergine-primary, multi-accent logo palette, light surfaces with dark sidebar, warm and approachable.",
|
|
7599
|
+
sleek: "Modern minimalist aesthetic with clean lines, intentional color palette, subtle interactions, and consistent spacing.",
|
|
7600
|
+
spacex: "Space technology. Stark black and white, full-bleed imagery, futuristic.",
|
|
7601
|
+
spacious: "Generous whitespace, consistent padding, and grid-based layouts for clean, readable, and breathing interfaces.",
|
|
7602
|
+
spotify: "Music streaming. Vibrant green on dark, bold type, album-art-driven.",
|
|
7603
|
+
starbucks: "Global coffee retail brand. Four-tier green system, warm cream canvas, full-pill buttons.",
|
|
7604
|
+
storytelling: "Narrative-driven design using visuals, copy, and interaction to guide users through engaging, emotionally resonant journeys.",
|
|
7605
|
+
stripe: "Payment infrastructure. Signature purple gradients, weight-300 elegance.",
|
|
7606
|
+
supabase: "Open-source Firebase alternative. Dark emerald theme, code-first.",
|
|
7607
|
+
superhuman: "Fast email client. Premium dark UI, keyboard-first, purple glow.",
|
|
7608
|
+
tesla: "Electric automotive. Radical subtraction, full-viewport photography, near-zero UI.",
|
|
7609
|
+
tetris: "Classic block-game inspired design with playful colors, bold display fonts, and compact, high-energy layouts.",
|
|
7610
|
+
theverge: "Tech editorial media. Acid-mint and ultraviolet accents, Manuka display, rave-flyer story tiles.",
|
|
7611
|
+
"together-ai": "Open-source AI infrastructure. Technical, blueprint-style design.",
|
|
7612
|
+
"totality-festival": 'A cosmic-premium, glassmorphic dark system that captures the visceral awe of a solar eclipse \u2014 obsidian surfaces, amber "corona" highlights, and cyan atmospheric accents.',
|
|
7613
|
+
uber: "Mobility platform. Bold black and white, tight type, urban energy.",
|
|
7614
|
+
urdu: "Urdu-first digital experiences with native RTL support,Nastaliq typography, and bilingual harmony.",
|
|
7615
|
+
vercel: "Frontend deployment. Black and white precision, Geist font.",
|
|
7616
|
+
vibrant: "Lively, colorful design with bold playful typography, warm accents, and dynamic visual energy.",
|
|
7617
|
+
vintage: "1950s-1990s nostalgia with skeuomorphic touches, grainy textures, retro color palettes, and pixel-style typography.",
|
|
7618
|
+
vodafone: "Global telecom brand. Monumental uppercase display, Vodafone Red chapter bands.",
|
|
7619
|
+
voltagent: "AI agent framework. Void-black canvas, emerald accent, terminal-native.",
|
|
7620
|
+
warp: "Modern terminal. Dark IDE-like interface, block-based command UI.",
|
|
7621
|
+
webex: "Collaboration platform. Momentum typography, blue action system, multi-user accent spectrum.",
|
|
7622
|
+
webflow: "Visual web builder. Blue-accented, polished marketing site aesthetic.",
|
|
7623
|
+
wechat: "Brand visual language for WeChat Mini Programs, official accounts, and open ecosystem extensions.",
|
|
7624
|
+
wired: "Tech magazine. Paper-white broadsheet density, custom serif display, mono kickers, ink-blue links.",
|
|
7625
|
+
wise: "Money transfer. Bright green accent, friendly and clear.",
|
|
7626
|
+
"x-ai": "Elon Musk's AI lab. Stark monochrome, futuristic minimalism.",
|
|
7627
|
+
xiaohongshu: "Lifestyle UGC social platform. Singular brand red, generous radius, content-first.",
|
|
7628
|
+
zapier: "Automation platform. Warm orange, friendly illustration-driven."
|
|
7629
|
+
};
|
|
7630
|
+
var OPEN_DESIGN_SKILL_ACRONYMS = /* @__PURE__ */ new Set([
|
|
7631
|
+
"ai",
|
|
7632
|
+
"css",
|
|
7633
|
+
"d3",
|
|
7634
|
+
"doc",
|
|
7635
|
+
"docx",
|
|
7636
|
+
"faq",
|
|
7637
|
+
"gif",
|
|
7638
|
+
"gsap",
|
|
7639
|
+
"hig",
|
|
7640
|
+
"html",
|
|
7641
|
+
"md",
|
|
7642
|
+
"pdf",
|
|
7643
|
+
"ppt",
|
|
7644
|
+
"pptx",
|
|
7645
|
+
"ui",
|
|
7646
|
+
"ux",
|
|
7647
|
+
"vfx",
|
|
7648
|
+
"wpds"
|
|
7649
|
+
]);
|
|
7650
|
+
function titleCaseOpenDesignSlug(slug) {
|
|
7651
|
+
return slug.split("-").map((part) => {
|
|
7652
|
+
if (OPEN_DESIGN_SKILL_ACRONYMS.has(part)) {
|
|
7653
|
+
return part.toUpperCase();
|
|
7654
|
+
}
|
|
7655
|
+
if (/^[0-9]+d$/u.test(part)) {
|
|
7656
|
+
return part.toUpperCase();
|
|
7657
|
+
}
|
|
7658
|
+
return `${part.charAt(0).toUpperCase()}${part.slice(1)}`;
|
|
7659
|
+
}).join(" ");
|
|
7660
|
+
}
|
|
7661
|
+
function addTarget(targets, target) {
|
|
7662
|
+
if (!targets.includes(target)) {
|
|
7663
|
+
targets.push(target);
|
|
7664
|
+
}
|
|
7665
|
+
}
|
|
7666
|
+
function inferOpenDesignSkillTargets(slug) {
|
|
7667
|
+
const targets = [];
|
|
7668
|
+
if (/video|remotion|sora|kling|lip|youtube|gif|stitch|hyperframes|orbit|speech|audio|music/u.test(
|
|
7669
|
+
slug
|
|
7670
|
+
)) {
|
|
7671
|
+
addTarget(targets, "intro-video");
|
|
7672
|
+
}
|
|
7673
|
+
if (/ppt|pptx|slides|deck|keynote|presentation/u.test(slug)) {
|
|
7674
|
+
addTarget(targets, "presentation");
|
|
7675
|
+
}
|
|
7676
|
+
if (/image|imagen|photo|illustration|poster|card|screenshot|frame|mockup|art|canvas|sticker|tryon|visual|creative|social|twitter|xiaohongshu/u.test(
|
|
7677
|
+
slug
|
|
7678
|
+
)) {
|
|
7679
|
+
addTarget(targets, "image");
|
|
7680
|
+
addTarget(targets, "poster");
|
|
7681
|
+
addTarget(targets, "website");
|
|
7682
|
+
addTarget(targets, "presentation");
|
|
7683
|
+
}
|
|
7684
|
+
if (/frontend|ui|ux|web|website|shadcn|three|gsap|shader|flutter|swift|app|login|paywall|figma|platform|browser/u.test(
|
|
7685
|
+
slug
|
|
7686
|
+
)) {
|
|
7687
|
+
addTarget(targets, "website");
|
|
7688
|
+
addTarget(targets, "mobile-app-design");
|
|
7689
|
+
addTarget(targets, "dashboard-design");
|
|
7690
|
+
}
|
|
7691
|
+
if (/doc|pdf|docx|report|article|copy|brand|brief|resume|faq|research|notes|markdown|release|guidelines|review/u.test(
|
|
7692
|
+
slug
|
|
7693
|
+
)) {
|
|
7694
|
+
addTarget(targets, "report");
|
|
7695
|
+
addTarget(targets, "docs-design");
|
|
7696
|
+
addTarget(targets, "website");
|
|
7697
|
+
addTarget(targets, "presentation");
|
|
7698
|
+
}
|
|
7699
|
+
if (targets.length === 0) {
|
|
7700
|
+
return ["presentation", "website", "poster", "report", "docs-design"];
|
|
7701
|
+
}
|
|
7702
|
+
return targets;
|
|
7703
|
+
}
|
|
7704
|
+
function inferOpenDesignSkillOutputKinds(slug) {
|
|
7705
|
+
const outputKinds = [];
|
|
7706
|
+
if (/image|imagen|photo|illustration|poster|card|screenshot|frame|mockup|art|canvas|sticker|tryon|visual/u.test(
|
|
7707
|
+
slug
|
|
7708
|
+
)) {
|
|
7709
|
+
outputKinds.push("image");
|
|
7710
|
+
}
|
|
7711
|
+
if (/video|remotion|sora|kling|lip|youtube|gif|stitch|hyperframes|orbit/u.test(
|
|
7712
|
+
slug
|
|
7713
|
+
)) {
|
|
7714
|
+
outputKinds.push("video");
|
|
7715
|
+
}
|
|
7716
|
+
if (/audio|speech|music/u.test(slug)) {
|
|
7717
|
+
outputKinds.push("audio");
|
|
7718
|
+
}
|
|
7719
|
+
if (/ppt|pptx|slides|deck|keynote|presentation/u.test(slug)) {
|
|
7720
|
+
outputKinds.push("presentation");
|
|
7721
|
+
}
|
|
7722
|
+
return outputKinds.length > 0 ? outputKinds : void 0;
|
|
7723
|
+
}
|
|
7724
|
+
function createOpenDesignSkillEntry(slug) {
|
|
7725
|
+
const name = titleCaseOpenDesignSlug(slug);
|
|
7726
|
+
const outputKinds = inferOpenDesignSkillOutputKinds(slug);
|
|
7727
|
+
const primaryOutputKind = outputKinds?.[0];
|
|
7728
|
+
return {
|
|
7729
|
+
id: `od:skill:${slug}`,
|
|
7185
7730
|
kind: "skill",
|
|
7186
|
-
name
|
|
7187
|
-
description:
|
|
7188
|
-
source: source(
|
|
7731
|
+
name,
|
|
7732
|
+
description: STYLE_OPEN_DESIGN_SKILL_DESCRIPTIONS[slug],
|
|
7733
|
+
source: source(`skills/${slug}/SKILL.md`),
|
|
7734
|
+
targets: inferOpenDesignSkillTargets(slug),
|
|
7735
|
+
tags: slug.split("-").filter((tag) => {
|
|
7736
|
+
return tag.length > 1;
|
|
7737
|
+
}),
|
|
7738
|
+
triggers: [slug, name.toLowerCase()],
|
|
7739
|
+
...outputKinds && primaryOutputKind ? {
|
|
7740
|
+
outputKinds,
|
|
7741
|
+
primaryOutputKind
|
|
7742
|
+
} : {},
|
|
7743
|
+
executorHints: ["skill-authored"],
|
|
7744
|
+
status: "experimental",
|
|
7745
|
+
priority: -90
|
|
7746
|
+
};
|
|
7747
|
+
}
|
|
7748
|
+
function inferOpenDesignTemplateTargets(slug) {
|
|
7749
|
+
const targets = [];
|
|
7750
|
+
if (/mobile|phone|app|onboarding|gamified/u.test(slug)) {
|
|
7751
|
+
addTarget(targets, "mobile-app-design");
|
|
7752
|
+
}
|
|
7753
|
+
if (/dashboard|admin|kanban|tracker|matrix|orbit|analytics/u.test(slug)) {
|
|
7754
|
+
addTarget(targets, "dashboard-design");
|
|
7755
|
+
addTarget(targets, "website");
|
|
7756
|
+
}
|
|
7757
|
+
if (/ppt|deck|slides|presentation|keynote/u.test(slug)) {
|
|
7758
|
+
addTarget(targets, "presentation");
|
|
7759
|
+
}
|
|
7760
|
+
if (/poster|image|sprite|wireframe|carousel|social|xhs|motion|video/u.test(slug)) {
|
|
7761
|
+
addTarget(targets, "image");
|
|
7762
|
+
addTarget(targets, "poster");
|
|
7763
|
+
addTarget(targets, "website");
|
|
7764
|
+
}
|
|
7765
|
+
if (/docs|doc|report|runbook|spec|invoice|email|notes|blog|guide|case/u.test(
|
|
7766
|
+
slug
|
|
7767
|
+
)) {
|
|
7768
|
+
addTarget(targets, "report");
|
|
7769
|
+
addTarget(targets, "docs-design");
|
|
7770
|
+
addTarget(targets, "website");
|
|
7771
|
+
}
|
|
7772
|
+
if (targets.length === 0) {
|
|
7773
|
+
return ["website", "presentation", "report"];
|
|
7774
|
+
}
|
|
7775
|
+
return targets;
|
|
7776
|
+
}
|
|
7777
|
+
function createOpenDesignTemplateEntry(slug, description) {
|
|
7778
|
+
const name = titleCaseOpenDesignSlug(slug);
|
|
7779
|
+
return {
|
|
7780
|
+
id: `od:template:${slug}`,
|
|
7781
|
+
kind: "template",
|
|
7782
|
+
name,
|
|
7783
|
+
description,
|
|
7784
|
+
source: source(`design-templates/${slug}`),
|
|
7785
|
+
targets: inferOpenDesignTemplateTargets(slug),
|
|
7786
|
+
tags: slug.split("-").filter((tag) => {
|
|
7787
|
+
return tag.length > 1;
|
|
7788
|
+
}),
|
|
7789
|
+
triggers: [slug, name.toLowerCase()],
|
|
7790
|
+
status: "experimental",
|
|
7791
|
+
priority: -90
|
|
7792
|
+
};
|
|
7793
|
+
}
|
|
7794
|
+
function createOpenDesignDesignSystemEntry(slug, description) {
|
|
7795
|
+
const name = titleCaseOpenDesignSlug(slug);
|
|
7796
|
+
return {
|
|
7797
|
+
id: `od:design-system:${slug}`,
|
|
7798
|
+
kind: "design-system",
|
|
7799
|
+
name,
|
|
7800
|
+
description,
|
|
7801
|
+
source: source(`design-systems/${slug}`),
|
|
7189
7802
|
targets: [
|
|
7190
7803
|
"presentation",
|
|
7191
7804
|
"website",
|
|
7192
7805
|
"dashboard-design",
|
|
7806
|
+
"mobile-app-design",
|
|
7807
|
+
"poster",
|
|
7193
7808
|
"report",
|
|
7194
7809
|
"docs-design"
|
|
7195
7810
|
],
|
|
7196
|
-
tags:
|
|
7197
|
-
|
|
7198
|
-
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
|
|
7811
|
+
tags: slug.split("-").filter((tag) => {
|
|
7812
|
+
return tag.length > 1;
|
|
7813
|
+
}),
|
|
7814
|
+
triggers: [slug, name.toLowerCase()],
|
|
7815
|
+
status: "experimental",
|
|
7816
|
+
priority: -90
|
|
7817
|
+
};
|
|
7818
|
+
}
|
|
7819
|
+
var OPEN_DESIGN_REGISTRY = [
|
|
7202
7820
|
{
|
|
7203
7821
|
id: "od:skill:article-magazine",
|
|
7204
7822
|
kind: "skill",
|
|
@@ -7229,17 +7847,18 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7229
7847
|
status: "curated",
|
|
7230
7848
|
priority: 16
|
|
7231
7849
|
},
|
|
7850
|
+
...STYLE_OPEN_DESIGN_SKILL_SLUGS.map(createOpenDesignSkillEntry),
|
|
7232
7851
|
{
|
|
7233
7852
|
id: "od:template:dashboard",
|
|
7234
7853
|
kind: "template",
|
|
7235
7854
|
name: "Dashboard",
|
|
7236
|
-
description: "
|
|
7855
|
+
description: "Admin or analytics dashboard in a single HTML file with fixed sidebar, top bar, KPI cards, and one or two charts.",
|
|
7237
7856
|
source: source("design-templates/dashboard"),
|
|
7238
7857
|
targets: ["website", "dashboard-design", "report"],
|
|
7239
7858
|
tags: ["dashboard", "analytics", "kpi", "metrics", "operations", "table"],
|
|
7240
7859
|
triggers: ["dashboard", "analytics", "monitoring", "metrics", "ops"],
|
|
7241
7860
|
bestFor: ["metric-heavy pages", "status surfaces", "operational summaries"],
|
|
7242
|
-
compatibleWith: ["od:
|
|
7861
|
+
compatibleWith: ["od:design-system:dashboard"],
|
|
7243
7862
|
status: "curated",
|
|
7244
7863
|
priority: 36
|
|
7245
7864
|
},
|
|
@@ -7247,13 +7866,13 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7247
7866
|
id: "od:template:finance-report",
|
|
7248
7867
|
kind: "template",
|
|
7249
7868
|
name: "Finance Report",
|
|
7250
|
-
description: "
|
|
7869
|
+
description: "Quarterly or monthly financial report with masthead KPIs, revenue and burn charts, P&L summary, highlights, and outlook.",
|
|
7251
7870
|
source: source("design-templates/finance-report"),
|
|
7252
7871
|
targets: ["presentation", "website", "report"],
|
|
7253
7872
|
tags: ["report", "finance", "executive", "table", "analysis", "sources"],
|
|
7254
7873
|
triggers: ["report", "brief", "analysis", "top 10", "finance"],
|
|
7255
7874
|
bestFor: ["source-backed reports", "executive summaries", "ranked lists"],
|
|
7256
|
-
compatibleWith: ["od:
|
|
7875
|
+
compatibleWith: ["od:design-system:dashboard"],
|
|
7257
7876
|
status: "curated",
|
|
7258
7877
|
priority: 34
|
|
7259
7878
|
},
|
|
@@ -7261,7 +7880,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7261
7880
|
id: "od:template:docs-page",
|
|
7262
7881
|
kind: "template",
|
|
7263
7882
|
name: "Docs Page",
|
|
7264
|
-
description: "Documentation
|
|
7883
|
+
description: "Documentation page with inline-start navigation, scrollable article body, and inline-end table of contents.",
|
|
7265
7884
|
source: source("design-templates/docs-page"),
|
|
7266
7885
|
targets: ["website", "docs-design", "report"],
|
|
7267
7886
|
tags: ["docs", "explanation", "guide", "structured", "reference"],
|
|
@@ -7275,7 +7894,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7275
7894
|
id: "od:template:mobile-app",
|
|
7276
7895
|
kind: "template",
|
|
7277
7896
|
name: "Mobile App Design",
|
|
7278
|
-
description: "
|
|
7897
|
+
description: "Mobile app screen rendered inside a pixel-accurate iPhone 15 Pro frame using reusable screen archetypes.",
|
|
7279
7898
|
source: source("design-templates/mobile-app"),
|
|
7280
7899
|
targets: ["mobile-app-design"],
|
|
7281
7900
|
tags: ["mobile", "app", "ios", "design", "prototype", "phone"],
|
|
@@ -7296,16 +7915,13 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7296
7915
|
id: "od:template:html-ppt-graphify-dark-graph",
|
|
7297
7916
|
kind: "template",
|
|
7298
7917
|
name: "Graphify Dark Graph",
|
|
7299
|
-
description: "Dark graph
|
|
7918
|
+
description: "Dark knowledge-graph deck with midnight gradients, force-graph cover visuals, command-line highlights, and glass-morphism cards.",
|
|
7300
7919
|
source: source("design-templates/html-ppt-graphify-dark-graph"),
|
|
7301
7920
|
targets: ["presentation", "report"],
|
|
7302
7921
|
tags: ["presentation", "dark", "graph", "data", "technical", "metrics"],
|
|
7303
7922
|
triggers: ["deck", "presentation", "graph", "dark", "data story"],
|
|
7304
7923
|
bestFor: ["data presentations", "technical executive briefings"],
|
|
7305
|
-
compatibleWith: [
|
|
7306
|
-
"od:skill:data-report",
|
|
7307
|
-
"od:design-system:trading-terminal"
|
|
7308
|
-
],
|
|
7924
|
+
compatibleWith: ["od:design-system:trading-terminal"],
|
|
7309
7925
|
status: "curated",
|
|
7310
7926
|
priority: 32
|
|
7311
7927
|
},
|
|
@@ -7313,7 +7929,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7313
7929
|
id: "od:template:html-ppt-zhangzara-retro-zine",
|
|
7314
7930
|
kind: "template",
|
|
7315
7931
|
name: "Zhangzara Retro Zine",
|
|
7316
|
-
description: "
|
|
7932
|
+
description: "Retro editorial zine presentation template with expressive composition, tactile paper energy, and bold magazine-like rhythm.",
|
|
7317
7933
|
source: source("design-templates/html-ppt-zhangzara-retro-zine"),
|
|
7318
7934
|
targets: ["presentation", "poster", "report"],
|
|
7319
7935
|
tags: ["presentation", "retro", "zine", "editorial", "expressive"],
|
|
@@ -7334,13 +7950,13 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7334
7950
|
id: "od:template:weekly-update",
|
|
7335
7951
|
kind: "template",
|
|
7336
7952
|
name: "Weekly Update",
|
|
7337
|
-
description: "
|
|
7953
|
+
description: "Single-file horizontal-swipe weekly team update deck for shipped work, in-flight work, blockers, metrics, and asks.",
|
|
7338
7954
|
source: source("design-templates/weekly-update"),
|
|
7339
7955
|
targets: ["presentation", "report", "docs-design"],
|
|
7340
7956
|
tags: ["update", "status", "briefing", "report", "metrics"],
|
|
7341
7957
|
triggers: ["weekly", "status", "update", "briefing"],
|
|
7342
7958
|
bestFor: ["team updates", "status reports", "progress summaries"],
|
|
7343
|
-
compatibleWith: ["od:
|
|
7959
|
+
compatibleWith: ["od:design-system:dashboard"],
|
|
7344
7960
|
status: "curated",
|
|
7345
7961
|
priority: 24
|
|
7346
7962
|
},
|
|
@@ -7348,7 +7964,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7348
7964
|
id: "od:template:web-prototype-taste-editorial",
|
|
7349
7965
|
kind: "template",
|
|
7350
7966
|
name: "Taste Editorial Web Prototype",
|
|
7351
|
-
description: "Editorial
|
|
7967
|
+
description: "Editorial-minimalist web prototype with warm monochrome canvas, serif display type, hairline borders, pastel chips, and ambient micro-motion.",
|
|
7352
7968
|
source: source("design-templates/web-prototype-taste-editorial"),
|
|
7353
7969
|
targets: ["website", "poster"],
|
|
7354
7970
|
tags: ["website", "editorial", "brand", "visual", "prototype"],
|
|
@@ -7358,11 +7974,16 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7358
7974
|
status: "curated",
|
|
7359
7975
|
priority: 30
|
|
7360
7976
|
},
|
|
7977
|
+
...Object.entries(ADDITIONAL_OPEN_DESIGN_TEMPLATE_DESCRIPTIONS).map(
|
|
7978
|
+
([slug, description]) => {
|
|
7979
|
+
return createOpenDesignTemplateEntry(slug, description);
|
|
7980
|
+
}
|
|
7981
|
+
),
|
|
7361
7982
|
{
|
|
7362
7983
|
id: "od:design-system:dashboard",
|
|
7363
7984
|
kind: "design-system",
|
|
7364
7985
|
name: "Dashboard",
|
|
7365
|
-
description: "
|
|
7986
|
+
description: "Dark cloud-platform aesthetic with modular grids, glass-like panels, and strong data hierarchy for productivity dashboards.",
|
|
7366
7987
|
source: source("design-systems/dashboard"),
|
|
7367
7988
|
targets: ["website", "dashboard-design", "report"],
|
|
7368
7989
|
tags: ["dashboard", "neutral", "dense", "table", "operations", "charts"],
|
|
@@ -7375,7 +7996,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7375
7996
|
id: "od:design-system:trading-terminal",
|
|
7376
7997
|
kind: "design-system",
|
|
7377
7998
|
name: "Trading Terminal",
|
|
7378
|
-
description: "
|
|
7999
|
+
description: "Bloomberg-style financial trading terminal: dark-only, data-dense, with cyan and coral buy/sell signals readable at a glance.",
|
|
7379
8000
|
source: source("design-systems/trading-terminal"),
|
|
7380
8001
|
targets: ["presentation", "website", "dashboard-design", "report"],
|
|
7381
8002
|
tags: ["dark", "terminal", "finance", "data", "charts", "dense"],
|
|
@@ -7388,7 +8009,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7388
8009
|
id: "od:design-system:warm-editorial",
|
|
7389
8010
|
kind: "design-system",
|
|
7390
8011
|
name: "Warm Editorial",
|
|
7391
|
-
description: "
|
|
8012
|
+
description: "Serif-led magazine aesthetic with terracotta accents on warm off-white paper for readable narrative pages, zines, and reports.",
|
|
7392
8013
|
source: source("design-systems/warm-editorial"),
|
|
7393
8014
|
targets: ["presentation", "website", "poster", "report", "docs-design"],
|
|
7394
8015
|
tags: ["warm", "editorial", "magazine", "narrative", "readable"],
|
|
@@ -7401,7 +8022,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7401
8022
|
id: "od:design-system:editorial",
|
|
7402
8023
|
kind: "design-system",
|
|
7403
8024
|
name: "Editorial",
|
|
7404
|
-
description: "
|
|
8025
|
+
description: "Magazine-inspired editorial layout with refined serif typography, structured grids, and elegant reading experiences.",
|
|
7405
8026
|
source: source("design-systems/editorial"),
|
|
7406
8027
|
targets: ["presentation", "website", "poster", "report", "docs-design"],
|
|
7407
8028
|
tags: ["editorial", "typography", "media", "brand", "article"],
|
|
@@ -7414,7 +8035,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7414
8035
|
id: "od:design-system:mono",
|
|
7415
8036
|
kind: "design-system",
|
|
7416
8037
|
name: "Mono",
|
|
7417
|
-
description: "
|
|
8038
|
+
description: "Monospace-driven, matrix-inspired design with high-contrast elements, compact density, and a hacker-chic aesthetic.",
|
|
7418
8039
|
source: source("design-systems/mono"),
|
|
7419
8040
|
targets: ["website", "docs-design", "report"],
|
|
7420
8041
|
tags: ["mono", "docs", "technical", "minimal", "structured"],
|
|
@@ -7427,7 +8048,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7427
8048
|
id: "od:design-system:apple",
|
|
7428
8049
|
kind: "design-system",
|
|
7429
8050
|
name: "Apple",
|
|
7430
|
-
description: "
|
|
8051
|
+
description: "Consumer electronics design system with premium white space, SF Pro-style typography, and cinematic imagery.",
|
|
7431
8052
|
source: source("design-systems/apple"),
|
|
7432
8053
|
targets: ["mobile-app-design", "website"],
|
|
7433
8054
|
tags: ["apple", "mobile", "ios", "clean", "product"],
|
|
@@ -7436,11 +8057,17 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7436
8057
|
status: "curated",
|
|
7437
8058
|
priority: 34
|
|
7438
8059
|
},
|
|
8060
|
+
...Object.entries(ADDITIONAL_OPEN_DESIGN_DESIGN_SYSTEM_DESCRIPTIONS).map(
|
|
8061
|
+
([slug, description]) => {
|
|
8062
|
+
return createOpenDesignDesignSystemEntry(slug, description);
|
|
8063
|
+
}
|
|
8064
|
+
),
|
|
7439
8065
|
{
|
|
7440
8066
|
id: "vm0:image-style:notion-illustration",
|
|
7441
8067
|
kind: "image-style",
|
|
7442
8068
|
name: "Notion Illustration",
|
|
7443
8069
|
description: "Zero-native illustration style for hand-drawn product spot illustrations with simple ink contours and soft backgrounds.",
|
|
8070
|
+
desc: 'Notion-editorial-style hand-drawn spot illustration. Black brush-pen ink on white, tapered confident strokes, solid-black curly hair, solid-black pants/shoes, 3/4 face turned toward viewer with closed-eye smile and soft nose hint, open breathing body outlines, and 1-3 supporting scene props + ambient marks that frame the moment. Trigger when user says /notion-illustration, asks for a "Notion-style illustration", "Notion spot illustration", or a new piece in this hand-drawn brush-pen Notion editorial style.',
|
|
7444
8071
|
source: sourceRef(
|
|
7445
8072
|
VM0_SKILLS_REPO,
|
|
7446
8073
|
VM0_SKILLS_REF,
|
|
@@ -7473,6 +8100,7 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7473
8100
|
kind: "image-style",
|
|
7474
8101
|
name: "vm0 Illustration",
|
|
7475
8102
|
description: "vm0 in-app spot illustration style with bold hand-drawn ink line art, white-filled interiors, and a soft rounded color backdrop.",
|
|
8103
|
+
desc: "Generate vm0-style vm0 in-app spot illustrations: bold hand-drawn ink line art with white-filled interiors, a soft rounded color backdrop, transparent output, and simple iconic metaphors for product states.",
|
|
7476
8104
|
source: sourceRef(
|
|
7477
8105
|
VM0_SKILLS_REPO,
|
|
7478
8106
|
VM0_SKILLS_REF,
|
|
@@ -7509,6 +8137,16 @@ var OPEN_DESIGN_REGISTRY = [
|
|
|
7509
8137
|
priority: 19
|
|
7510
8138
|
}
|
|
7511
8139
|
];
|
|
8140
|
+
function listImageStyles() {
|
|
8141
|
+
return OPEN_DESIGN_REGISTRY.filter((entry) => {
|
|
8142
|
+
return entry.kind === "image-style";
|
|
8143
|
+
});
|
|
8144
|
+
}
|
|
8145
|
+
function findImageStyle(id) {
|
|
8146
|
+
return listImageStyles().find((entry) => {
|
|
8147
|
+
return entry.id === id;
|
|
8148
|
+
});
|
|
8149
|
+
}
|
|
7512
8150
|
function toOpenDesignTarget(value) {
|
|
7513
8151
|
if (value === "dashboard") {
|
|
7514
8152
|
return "dashboard-design";
|
|
@@ -7552,12 +8190,11 @@ function scoreEntry(entry, target, prompt) {
|
|
|
7552
8190
|
const normalizedPrompt = normalizeText(prompt);
|
|
7553
8191
|
const promptTokens = new Set(tokenize(prompt));
|
|
7554
8192
|
const targetScore = entry.targets.includes(target) ? 100 : 0;
|
|
7555
|
-
|
|
7556
|
-
return targetScore + curationScore + (entry.priority ?? 0) + phraseScore(entry.triggers, normalizedPrompt, 40) + phraseScore(entry.bestFor, normalizedPrompt, 15) + tokenScore(entry.tags, promptTokens, 10) + tokenScore(entry.description.split(" "), promptTokens, 2);
|
|
8193
|
+
return targetScore + (entry.priority ?? 0) + phraseScore(entry.triggers, normalizedPrompt, 40) + phraseScore(entry.bestFor, normalizedPrompt, 15) + tokenScore(entry.tags, promptTokens, 10) + tokenScore(entry.description.split(" "), promptTokens, 2);
|
|
7557
8194
|
}
|
|
7558
8195
|
function selectByKind(kind, target, prompt, limit) {
|
|
7559
8196
|
return OPEN_DESIGN_REGISTRY.filter((entry) => {
|
|
7560
|
-
return entry.kind === kind
|
|
8197
|
+
return entry.kind === kind;
|
|
7561
8198
|
}).map((entry) => {
|
|
7562
8199
|
return { entry, score: scoreEntry(entry, target, prompt) };
|
|
7563
8200
|
}).filter(({ score }) => {
|
|
@@ -7639,16 +8276,22 @@ function selectOpenDesignCandidates(options) {
|
|
|
7639
8276
|
// src/commands/zero/shared/image-style-authoring.ts
|
|
7640
8277
|
var outputDir = "./opendesign/images";
|
|
7641
8278
|
var artifactRules = [
|
|
7642
|
-
"Select the image style that best matches the prompt before generation.",
|
|
7643
8279
|
"Resolve the selected style source before generating the image.",
|
|
7644
8280
|
"Use the style skill's referenced assets and generation path when it provides one.",
|
|
7645
8281
|
"Produce a single final image file and keep any temporary metadata under the output directory."
|
|
7646
8282
|
];
|
|
7647
8283
|
function createStyledImageAuthoringPacket(options) {
|
|
7648
|
-
const
|
|
8284
|
+
const baseSlice = selectOpenDesignCandidates({
|
|
7649
8285
|
target: "image",
|
|
7650
8286
|
prompt: [options.prompt, ...options.details, ...artifactRules].join("\n")
|
|
7651
8287
|
});
|
|
8288
|
+
const candidateSlice = {
|
|
8289
|
+
...baseSlice,
|
|
8290
|
+
candidates: {
|
|
8291
|
+
...baseSlice.candidates,
|
|
8292
|
+
imageStyles: [options.style]
|
|
8293
|
+
}
|
|
8294
|
+
};
|
|
7652
8295
|
const selectionSchema = {
|
|
7653
8296
|
imageStyle: "string",
|
|
7654
8297
|
skills: "string[]",
|
|
@@ -7671,18 +8314,20 @@ function createStyledImageAuthoringPacket(options) {
|
|
|
7671
8314
|
outputDir
|
|
7672
8315
|
};
|
|
7673
8316
|
const instructions = [
|
|
7674
|
-
|
|
8317
|
+
`# Zero built-in generate image --style ${options.style.id}`,
|
|
7675
8318
|
"",
|
|
7676
8319
|
"This is a federated generation resource-selection packet for the current agent.",
|
|
7677
|
-
"Zero is not generating this image on the server yet.
|
|
8320
|
+
"Zero is not generating this image on the server yet. The image style has already been selected by the caller \u2014 resolve it and generate the styled image.",
|
|
7678
8321
|
"",
|
|
7679
8322
|
"## User Prompt",
|
|
7680
8323
|
options.prompt,
|
|
7681
8324
|
"",
|
|
7682
|
-
"##
|
|
7683
|
-
|
|
8325
|
+
"## Selected Image Style",
|
|
8326
|
+
`- \`${options.style.id}\` \u2014 ${options.style.name}`,
|
|
8327
|
+
"",
|
|
8328
|
+
"## Stage 1: Supporting Resource Selection",
|
|
8329
|
+
"- The image style is locked. Optionally pick supporting skills/templates from the candidate slice below.",
|
|
7684
8330
|
"- Choose only IDs present in this packet; do not invent registry IDs.",
|
|
7685
|
-
"- Prefer image-style resources with matching triggers, but the user prompt is the highest-priority signal.",
|
|
7686
8331
|
"- Treat the selection JSON as internal working state, then continue to generation.",
|
|
7687
8332
|
"",
|
|
7688
8333
|
"## Selection Output Schema",
|
|
@@ -7748,6 +8393,43 @@ function createStyledImageAuthoringPacket(options) {
|
|
|
7748
8393
|
}
|
|
7749
8394
|
|
|
7750
8395
|
// src/commands/zero/shared/image-generate.ts
|
|
8396
|
+
function formatStyleListing(styles) {
|
|
8397
|
+
if (styles.length === 0) {
|
|
8398
|
+
return " (no image styles registered)";
|
|
8399
|
+
}
|
|
8400
|
+
return styles.map((style) => {
|
|
8401
|
+
const desc = style.desc ?? style.description;
|
|
8402
|
+
return ` ${style.id}
|
|
8403
|
+
${desc}`;
|
|
8404
|
+
}).join("\n\n");
|
|
8405
|
+
}
|
|
8406
|
+
function requireStyleError(usageCommand) {
|
|
8407
|
+
const styles = listImageStyles();
|
|
8408
|
+
const message = [
|
|
8409
|
+
"--style <id> or --skip-style is required",
|
|
8410
|
+
"",
|
|
8411
|
+
"Available styles:",
|
|
8412
|
+
formatStyleListing(styles),
|
|
8413
|
+
"",
|
|
8414
|
+
`Examples:`,
|
|
8415
|
+
` ${usageCommand} --style ${styles[0]?.id ?? "<style-id>"} --prompt "..."`,
|
|
8416
|
+
` ${usageCommand} --skip-style --prompt "..."`
|
|
8417
|
+
].join("\n");
|
|
8418
|
+
return new Error(message);
|
|
8419
|
+
}
|
|
8420
|
+
function unknownStyleError(id, usageCommand) {
|
|
8421
|
+
const styles = listImageStyles();
|
|
8422
|
+
const message = [
|
|
8423
|
+
`Unknown image style: ${id}`,
|
|
8424
|
+
"",
|
|
8425
|
+
"Available styles:",
|
|
8426
|
+
formatStyleListing(styles),
|
|
8427
|
+
"",
|
|
8428
|
+
`Example:`,
|
|
8429
|
+
` ${usageCommand} --style ${styles[0]?.id ?? "<style-id>"} --prompt "..."`
|
|
8430
|
+
].join("\n");
|
|
8431
|
+
return new Error(message);
|
|
8432
|
+
}
|
|
7751
8433
|
function readPrompt(options, usageCommand) {
|
|
7752
8434
|
if (options.prompt?.trim()) {
|
|
7753
8435
|
return options.prompt.trim();
|
|
@@ -7837,17 +8519,21 @@ function createImageGenerateCommand(config) {
|
|
|
7837
8519
|
"--image-prompt-strength <0-1>",
|
|
7838
8520
|
"Reference strength override for Flux Redux"
|
|
7839
8521
|
).option(
|
|
7840
|
-
"--
|
|
7841
|
-
"
|
|
7842
|
-
).option(
|
|
7843
|
-
"
|
|
7844
|
-
|
|
8522
|
+
"--style <id>",
|
|
8523
|
+
"Image style id from the registry (see Image Styles below)"
|
|
8524
|
+
).option(
|
|
8525
|
+
"--skip-style",
|
|
8526
|
+
"Opt out of styled image generation for this invocation"
|
|
8527
|
+
).option("--json", "Print metadata as JSON").addHelpText("after", () => {
|
|
8528
|
+
const styles = listImageStyles();
|
|
8529
|
+
return `
|
|
7845
8530
|
Examples:
|
|
7846
8531
|
${config.examples}
|
|
7847
8532
|
|
|
7848
8533
|
Output:
|
|
7849
|
-
Prints the generated /f/ image file URL and metadata. With --
|
|
7850
|
-
an Open Design resource-selection packet for the current agent
|
|
8534
|
+
Prints the generated /f/ image file URL and metadata. With --style <id>,
|
|
8535
|
+
prints an Open Design resource-selection packet for the current agent
|
|
8536
|
+
with the selected style locked in.
|
|
7851
8537
|
|
|
7852
8538
|
Notes:
|
|
7853
8539
|
- Authenticates via ZERO_TOKEN (requires file:write capability)
|
|
@@ -7864,6 +8550,8 @@ Models:
|
|
|
7864
8550
|
|
|
7865
8551
|
Options:
|
|
7866
8552
|
- Prompt: required, up to 32,000 characters; stdin is supported.
|
|
8553
|
+
- Style: required. Pass --style <id> to generate in a registered style
|
|
8554
|
+
or --skip-style to bypass styled generation entirely.
|
|
7867
8555
|
- Size: gpt-image-2 accepts auto or WIDTHxHEIGHT. Popular sizes include
|
|
7868
8556
|
1024x1024,
|
|
7869
8557
|
1536x1024, 1024x1536, 2048x2048, 2048x1152, 3840x2160,
|
|
@@ -7883,14 +8571,26 @@ Options:
|
|
|
7883
8571
|
Flux Redux accepts --image-prompt-strength to override the provider
|
|
7884
8572
|
default; GPT edit models accept --input-fidelity and supported models
|
|
7885
8573
|
accept --mask-image-url.
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
8574
|
+
|
|
8575
|
+
Image Styles:
|
|
8576
|
+
${formatStyleListing(styles)}`;
|
|
8577
|
+
}).action(
|
|
7889
8578
|
withErrorHandler(async (options, command) => {
|
|
8579
|
+
if (options.style && options.skipStyle) {
|
|
8580
|
+
throw new Error("--style and --skip-style cannot be combined");
|
|
8581
|
+
}
|
|
8582
|
+
if (!options.style && !options.skipStyle) {
|
|
8583
|
+
throw requireStyleError(config.usageCommand);
|
|
8584
|
+
}
|
|
7890
8585
|
const prompt = readPrompt(options, config.usageCommand);
|
|
7891
|
-
if (options.
|
|
8586
|
+
if (options.style) {
|
|
8587
|
+
const style = findImageStyle(options.style);
|
|
8588
|
+
if (!style) {
|
|
8589
|
+
throw unknownStyleError(options.style, config.usageCommand);
|
|
8590
|
+
}
|
|
7892
8591
|
const packet = createStyledImageAuthoringPacket({
|
|
7893
8592
|
prompt,
|
|
8593
|
+
style,
|
|
7894
8594
|
details: [
|
|
7895
8595
|
`Model preference if direct image generation is used: ${options.model}`,
|
|
7896
8596
|
`Requested size: ${options.size}`,
|
|
@@ -7966,12 +8666,12 @@ Options:
|
|
|
7966
8666
|
var imageCommand = createImageGenerateCommand({
|
|
7967
8667
|
name: "image",
|
|
7968
8668
|
usageCommand: "zero built-in generate image",
|
|
7969
|
-
examples: `
|
|
7970
|
-
|
|
7971
|
-
|
|
7972
|
-
GPT Image model: zero built-in generate image --model gpt-image-1.5 --prompt "A poster" --size 1024x1536 --quality high
|
|
7973
|
-
Flux model: zero built-in generate image --model flux-pro-1.1 --prompt "A product hero shot" --seed 42
|
|
7974
|
-
Image-to-image: zero built-in generate image --model flux-pro-1.1 --image-url https://example.com/mockup.png --prompt "Turn this mockup into a polished product shot"`
|
|
8669
|
+
examples: ` Styled image: zero built-in generate image --style vm0:image-style:notion-illustration --prompt "A product manager mapping a launch plan"
|
|
8670
|
+
Skip style: zero built-in generate image --skip-style --prompt "A watercolor fox"
|
|
8671
|
+
Pipe prompt: cat prompt.txt | zero built-in generate image --skip-style
|
|
8672
|
+
GPT Image model: zero built-in generate image --skip-style --model gpt-image-1.5 --prompt "A poster" --size 1024x1536 --quality high
|
|
8673
|
+
Flux model: zero built-in generate image --skip-style --model flux-pro-1.1 --prompt "A product hero shot" --seed 42
|
|
8674
|
+
Image-to-image: zero built-in generate image --skip-style --model flux-pro-1.1 --image-url https://example.com/mockup.png --prompt "Turn this mockup into a polished product shot"`
|
|
7975
8675
|
});
|
|
7976
8676
|
|
|
7977
8677
|
// src/commands/zero/built-in/generate/open-design-artifacts.ts
|
|
@@ -10083,7 +10783,7 @@ function registerZeroCommands(prog, commands) {
|
|
|
10083
10783
|
var program = new Command();
|
|
10084
10784
|
program.name("zero").description(
|
|
10085
10785
|
"Zero CLI \u2014 interact with the zero platform from inside the sandbox"
|
|
10086
|
-
).version("9.
|
|
10786
|
+
).version("9.167.0").addHelpText("after", () => {
|
|
10087
10787
|
return buildZeroHelpText();
|
|
10088
10788
|
});
|
|
10089
10789
|
if (process.argv[1]?.endsWith("zero.js") || process.argv[1]?.endsWith("zero.ts") || process.argv[1]?.endsWith("zero")) {
|