@hiai-gg/hiai-opencode 0.2.0 → 0.2.2
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/.env.example +4 -0
- package/AGENTS.md +40 -44
- package/ARCHITECTURE.md +4 -3
- package/LICENSE.md +14 -0
- package/README.md +61 -30
- package/assets/cli/hiai-opencode.mjs +4 -4
- package/config/hiai-opencode.schema.json +11 -13
- package/dist/agents/{bob.d.ts → bob/claude.d.ts} +6 -2
- package/dist/agents/bob/core.d.ts +6 -0
- package/dist/agents/bob/gpt.d.ts +11 -0
- package/dist/agents/bob/index.d.ts +3 -0
- package/dist/agents/coder/core.d.ts +4 -0
- package/dist/agents/coder/gpt.d.ts +1 -4
- package/dist/agents/coder/index.d.ts +1 -0
- package/dist/agents/manager/agent.d.ts +1 -1
- package/dist/agents/manager/default-prompt-sections.d.ts +4 -4
- package/dist/agents/manager/guard-integration.d.ts +1 -0
- package/dist/agents/prompt-library/index.d.ts +0 -1
- package/dist/agents/prompt-library/shared-execution.d.ts +9 -0
- package/dist/agents/strategist/behavioral-summary.d.ts +1 -1
- package/dist/agents/strategist/identity-constraints.d.ts +1 -1
- package/dist/agents/strategist/plan-generation.d.ts +1 -1
- package/dist/agents/types.d.ts +2 -1
- package/dist/config/defaults.d.ts +1 -0
- package/dist/config/platform-schema.d.ts +26 -26
- package/dist/config/schema/agent-names.d.ts +6 -6
- package/dist/config/schema/agent-overrides.d.ts +0 -128
- package/dist/config/schema/hiai-opencode-config.d.ts +0 -128
- package/dist/config/types.d.ts +2 -2
- package/dist/features/background-agent/error-classifier.d.ts +1 -0
- package/dist/features/background-agent/manager-notifier.d.ts +46 -0
- package/dist/features/background-agent/manager-types.d.ts +40 -0
- package/dist/features/background-agent/manager.d.ts +3 -19
- package/dist/features/background-agent/polling-manager.d.ts +51 -0
- package/dist/features/boulder-state/constants.d.ts +3 -0
- package/dist/features/boulder-state/storage.d.ts +95 -0
- package/dist/features/boulder-state/types.d.ts +17 -0
- package/dist/features/builtin-commands/templates/doctor.d.ts +1 -1
- package/dist/features/builtin-commands/templates/loop.d.ts +2 -0
- package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
- package/dist/features/builtin-skills/skills/interview-me.d.ts +2 -0
- package/dist/features/builtin-skills/skills/planning-and-task-breakdown.d.ts +2 -0
- package/dist/hooks/manager/resolve-active-boulder-session.d.ts +5 -0
- package/dist/hooks/manager/system-reminder-templates.d.ts +2 -2
- package/dist/hooks/reasoning-content-cache/hook.d.ts +11 -0
- package/dist/hooks/reasoning-content-cache/index.d.ts +1 -0
- package/dist/hooks/session-recovery/checkpoint.d.ts +48 -0
- package/dist/hooks/session-recovery/enhanced-hook.d.ts +30 -0
- package/dist/hooks/session-recovery/state-backup.d.ts +76 -0
- package/dist/hooks/shared/compaction-in-progress.d.ts +4 -0
- package/dist/hooks/start-work/context-info-builder.d.ts +2 -0
- package/dist/hooks/start-work/git-operations.d.ts +47 -0
- package/dist/hooks/start-work/worktree-block.d.ts +2 -1
- package/dist/hooks/start-work/worktree-detector.d.ts +45 -0
- package/dist/hooks/strategist-md-only/agent-resolution.d.ts +1 -1
- package/dist/hooks/strategist-md-only/constants.d.ts +6 -0
- package/dist/hooks/token-budget.d.ts +30 -0
- package/dist/index.js +1275 -1132
- package/dist/mcp/rate-limiter.d.ts +68 -0
- package/dist/plugin/chat-message.d.ts +8 -0
- package/dist/plugin/command-execute-before.d.ts +1 -1
- package/dist/plugin/event-handlers/message-updated.d.ts +2 -0
- package/dist/plugin/event-handlers/session-error.d.ts +2 -0
- package/dist/plugin/event-handlers/session-status.d.ts +2 -0
- package/dist/plugin/event-handlers/types.d.ts +62 -0
- package/dist/plugin/event-handlers/utils.d.ts +11 -0
- package/dist/plugin/event.d.ts +1 -1
- package/dist/shared/data-path.d.ts +1 -1
- package/dist/shared/errors.d.ts +70 -0
- package/dist/shared/extract-session-id.d.ts +8 -0
- package/dist/shared/git-worktree/get-git-state-summary.d.ts +14 -0
- package/dist/shared/index.d.ts +67 -68
- package/dist/shared/internal-initiator-marker.d.ts +1 -1
- package/dist/shared/logger.d.ts +5 -1
- package/dist/shared/reasoning-content-cache.d.ts +68 -0
- package/dist/shared/safe-create-hook.d.ts +4 -4
- package/dist/tools/call-hiai-agent/constants.d.ts +2 -2
- package/dist/tools/delegate-task/sub-agent.d.ts +1 -1
- package/dist/tools/look-at/constants.d.ts +1 -1
- package/docs/architecture/bob-manager-architecture.md +244 -0
- package/docs/hiai-opencode/adr/ADR-001-agent-identity-section-injection.md +66 -0
- package/docs/hiai-opencode/adr/ADR-002-anti-loop-guard-priority.md +63 -0
- package/docs/hiai-opencode/adr/ADR-003-compaction-mechanism.md +71 -0
- package/docs/hiai-opencode/adr/ADR-004-session-recovery.md +76 -0
- package/docs/hiai-opencode/api.md +305 -0
- package/docs/hiai-opencode/hooks-architecture.md +225 -0
- package/docs/hiai-opencode/migration.md +209 -0
- package/docs/quickstart.md +1 -1
- package/docs/skill-discovery.md +288 -0
- package/package.json +2 -2
- package/skills/agent-browser/SKILL.md +193 -0
- package/skills/apple-hig/SKILL.md +43 -0
- package/skills/article-magazine/SKILL.md +46 -0
- package/skills/article-magazine/example.html +81 -0
- package/skills/article-magazine/example.md +38 -0
- package/skills/canvas-design/SKILL.md +45 -0
- package/skills/design-templates/audio-jingle/SKILL.md +132 -0
- package/skills/design-templates/audio-jingle/example.html +128 -0
- package/skills/design-templates/blog-post/SKILL.md +80 -0
- package/skills/design-templates/blog-post/example.html +80 -0
- package/skills/design-templates/clinical-case-report/SKILL.md +209 -0
- package/skills/design-templates/clinical-case-report/example.html +698 -0
- package/skills/design-templates/clinical-case-report/examples/example-stemi.html +698 -0
- package/skills/design-templates/clinical-case-report/references/case-formats.md +94 -0
- package/skills/design-templates/clinical-case-report/references/checklist.md +41 -0
- package/skills/design-templates/critique/SKILL.md +258 -0
- package/skills/design-templates/critique/example.html +671 -0
- package/skills/design-templates/dashboard/SKILL.md +76 -0
- package/skills/design-templates/dashboard/example.html +118 -0
- package/skills/design-templates/dating-web/SKILL.md +92 -0
- package/skills/design-templates/dating-web/example.html +265 -0
- package/skills/design-templates/dcf-valuation/SKILL.md +140 -0
- package/skills/design-templates/dcf-valuation/references/sector-wacc.md +42 -0
- package/skills/design-templates/digital-eguide/SKILL.md +94 -0
- package/skills/design-templates/digital-eguide/example.html +204 -0
- package/skills/design-templates/docs-page/SKILL.md +80 -0
- package/skills/design-templates/docs-page/example.html +122 -0
- package/skills/design-templates/email-marketing/SKILL.md +84 -0
- package/skills/design-templates/email-marketing/example.html +159 -0
- package/skills/design-templates/eng-runbook/SKILL.md +51 -0
- package/skills/design-templates/eng-runbook/example.html +250 -0
- package/skills/design-templates/finance-report/SKILL.md +61 -0
- package/skills/design-templates/finance-report/example.html +242 -0
- package/skills/design-templates/flowai-live-dashboard-template/SKILL.md +87 -0
- package/skills/design-templates/flowai-live-dashboard-template/assets/template.html +387 -0
- package/skills/design-templates/flowai-live-dashboard-template/example.html +13 -0
- package/skills/design-templates/flowai-live-dashboard-template/references/checklist.md +35 -0
- package/skills/design-templates/gamified-app/SKILL.md +108 -0
- package/skills/design-templates/gamified-app/example.html +292 -0
- package/skills/design-templates/github-dashboard/SKILL.md +130 -0
- package/skills/design-templates/github-dashboard/example.html +473 -0
- package/skills/design-templates/github-dashboard/references/README.md +10 -0
- package/skills/design-templates/github-dashboard/references/artifact-example.json +15 -0
- package/skills/design-templates/github-dashboard/references/example-data.json +138 -0
- package/skills/design-templates/github-dashboard/references/provenance-example.json +92 -0
- package/skills/design-templates/github-dashboard/references/template.html +473 -0
- package/skills/design-templates/guizang-ppt/LICENSE +21 -0
- package/skills/design-templates/guizang-ppt/README.en.md +119 -0
- package/skills/design-templates/guizang-ppt/README.md +120 -0
- package/skills/design-templates/guizang-ppt/README.pt-BR.md +121 -0
- package/skills/design-templates/guizang-ppt/SKILL.md +313 -0
- package/skills/design-templates/guizang-ppt/assets/example-slides.html +318 -0
- package/skills/design-templates/guizang-ppt/assets/template.html +647 -0
- package/skills/design-templates/guizang-ppt/references/checklist.md +265 -0
- package/skills/design-templates/guizang-ppt/references/components.md +363 -0
- package/skills/design-templates/guizang-ppt/references/layouts.md +630 -0
- package/skills/design-templates/guizang-ppt/references/styles.md +195 -0
- package/skills/design-templates/guizang-ppt/references/themes.md +122 -0
- package/skills/design-templates/hr-onboarding/SKILL.md +52 -0
- package/skills/design-templates/hr-onboarding/example.html +219 -0
- package/skills/design-templates/html-ppt/.clawscan-allow +12 -0
- package/skills/design-templates/html-ppt/LICENSE +21 -0
- package/skills/design-templates/html-ppt/README.md +234 -0
- package/skills/design-templates/html-ppt/README.pt-BR.md +239 -0
- package/skills/design-templates/html-ppt/README.zh-CN.md +238 -0
- package/skills/design-templates/html-ppt/SKILL.md +250 -0
- package/skills/design-templates/html-ppt/assets/animations/animations.css +138 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/_util.js +63 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/chain-react.js +41 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/confetti-cannon.js +49 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/constellation.js +44 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/counter-explosion.js +58 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/data-stream.js +45 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/firework.js +51 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/galaxy-swirl.js +33 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/gradient-blob.js +39 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/knowledge-graph.js +69 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/letter-explode.js +50 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/magnetic-field.js +40 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/matrix-rain.js +33 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/neural-net.js +75 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/orbit-ring.js +38 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/particle-burst.js +42 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/shockwave.js +39 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/sparkle-trail.js +62 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/starfield.js +30 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/typewriter-multi.js +51 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/word-cascade.js +47 -0
- package/skills/design-templates/html-ppt/assets/animations/fx-runtime.js +99 -0
- package/skills/design-templates/html-ppt/assets/base.css +150 -0
- package/skills/design-templates/html-ppt/assets/fonts.css +9 -0
- package/skills/design-templates/html-ppt/assets/runtime.js +960 -0
- package/skills/design-templates/html-ppt/assets/themes/academic-paper.css +23 -0
- package/skills/design-templates/html-ppt/assets/themes/arctic-cool.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/aurora.css +20 -0
- package/skills/design-templates/html-ppt/assets/themes/bauhaus.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/blueprint.css +19 -0
- package/skills/design-templates/html-ppt/assets/themes/catppuccin-latte.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/catppuccin-mocha.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/corporate-clean.css +19 -0
- package/skills/design-templates/html-ppt/assets/themes/cyberpunk-neon.css +23 -0
- package/skills/design-templates/html-ppt/assets/themes/dracula.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/editorial-serif.css +18 -0
- package/skills/design-templates/html-ppt/assets/themes/engineering-whiteprint.css +26 -0
- package/skills/design-templates/html-ppt/assets/themes/glassmorphism.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/gruvbox-dark.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/japanese-minimal.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/magazine-bold.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/memphis-pop.css +20 -0
- package/skills/design-templates/html-ppt/assets/themes/midcentury.css +19 -0
- package/skills/design-templates/html-ppt/assets/themes/minimal-white.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/neo-brutalism.css +17 -0
- package/skills/design-templates/html-ppt/assets/themes/news-broadcast.css +20 -0
- package/skills/design-templates/html-ppt/assets/themes/nord.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/pitch-deck-vc.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/rainbow-gradient.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/retro-tv.css +22 -0
- package/skills/design-templates/html-ppt/assets/themes/rose-pine.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/sharp-mono.css +17 -0
- package/skills/design-templates/html-ppt/assets/themes/soft-pastel.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/solarized-light.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/sunset-warm.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/swiss-grid.css +17 -0
- package/skills/design-templates/html-ppt/assets/themes/terminal-green.css +18 -0
- package/skills/design-templates/html-ppt/assets/themes/tokyo-night.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/vaporwave.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/xiaohongshu-white.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/y2k-chrome.css +20 -0
- package/skills/design-templates/html-ppt/docs/readme/_theme-cell.html +56 -0
- package/skills/design-templates/html-ppt/docs/readme/animations.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/hero.gif +0 -0
- package/skills/design-templates/html-ppt/docs/readme/layouts-live.gif +0 -0
- package/skills/design-templates/html-ppt/docs/readme/layouts.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-animations.html +61 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-layouts.html +72 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-templates.html +72 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-themes.html +38 -0
- package/skills/design-templates/html-ppt/docs/readme/presenter-mode.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/templates.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/themes.png +0 -0
- package/skills/design-templates/html-ppt/examples/demo-deck/index.html +161 -0
- package/skills/design-templates/html-ppt/references/animations.md +147 -0
- package/skills/design-templates/html-ppt/references/authoring-guide.md +141 -0
- package/skills/design-templates/html-ppt/references/full-decks.md +98 -0
- package/skills/design-templates/html-ppt/references/layouts.md +103 -0
- package/skills/design-templates/html-ppt/references/presenter-mode.md +240 -0
- package/skills/design-templates/html-ppt/references/themes.md +107 -0
- package/skills/design-templates/html-ppt/scripts/new-deck.sh +46 -0
- package/skills/design-templates/html-ppt/scripts/render.sh +71 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_01.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_02.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_03.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_04.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_05.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_06.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_07.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_08.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_09.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_10.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_11.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_12.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_13.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_14.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_15.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_16.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_17.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_18.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_19.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_20.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_01.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_02.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_03.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_04.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_05.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_06.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_07.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_08.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_09.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_10.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_11.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_12.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_13.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_14.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_15.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_16.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_17.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_18.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_19.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_20.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_21.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_22.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_23.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_24.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_25.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_26.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_27.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_28.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_29.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_30.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_31.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_32.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_33.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_34.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_35.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_36.png +0 -0
- package/skills/design-templates/html-ppt/templates/animation-showcase.html +172 -0
- package/skills/design-templates/html-ppt/templates/deck.html +69 -0
- package/skills/design-templates/html-ppt/templates/full-decks/course-module/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/course-module/index.html +189 -0
- package/skills/design-templates/html-ppt/templates/full-decks/course-module/style.css +46 -0
- package/skills/design-templates/html-ppt/templates/full-decks/dir-key-nav-minimal/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/dir-key-nav-minimal/index.html +138 -0
- package/skills/design-templates/html-ppt/templates/full-decks/dir-key-nav-minimal/style.css +60 -0
- package/skills/design-templates/html-ppt/templates/full-decks/graphify-dark-graph/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/graphify-dark-graph/index.html +180 -0
- package/skills/design-templates/html-ppt/templates/full-decks/graphify-dark-graph/style.css +54 -0
- package/skills/design-templates/html-ppt/templates/full-decks/hermes-cyber-terminal/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/hermes-cyber-terminal/index.html +199 -0
- package/skills/design-templates/html-ppt/templates/full-decks/hermes-cyber-terminal/style.css +55 -0
- package/skills/design-templates/html-ppt/templates/full-decks/knowledge-arch-blueprint/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/knowledge-arch-blueprint/index.html +190 -0
- package/skills/design-templates/html-ppt/templates/full-decks/knowledge-arch-blueprint/style.css +49 -0
- package/skills/design-templates/html-ppt/templates/full-decks/obsidian-claude-gradient/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/obsidian-claude-gradient/index.html +144 -0
- package/skills/design-templates/html-ppt/templates/full-decks/obsidian-claude-gradient/style.css +59 -0
- package/skills/design-templates/html-ppt/templates/full-decks/pitch-deck/README.md +9 -0
- package/skills/design-templates/html-ppt/templates/full-decks/pitch-deck/index.html +148 -0
- package/skills/design-templates/html-ppt/templates/full-decks/pitch-deck/style.css +40 -0
- package/skills/design-templates/html-ppt/templates/full-decks/presenter-mode-reveal/README.md +102 -0
- package/skills/design-templates/html-ppt/templates/full-decks/presenter-mode-reveal/index.html +187 -0
- package/skills/design-templates/html-ppt/templates/full-decks/presenter-mode-reveal/style.css +216 -0
- package/skills/design-templates/html-ppt/templates/full-decks/product-launch/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/product-launch/index.html +121 -0
- package/skills/design-templates/html-ppt/templates/full-decks/product-launch/style.css +39 -0
- package/skills/design-templates/html-ppt/templates/full-decks/tech-sharing/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/tech-sharing/index.html +156 -0
- package/skills/design-templates/html-ppt/templates/full-decks/tech-sharing/style.css +49 -0
- package/skills/design-templates/html-ppt/templates/full-decks/testing-safety-alert/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/testing-safety-alert/index.html +183 -0
- package/skills/design-templates/html-ppt/templates/full-decks/testing-safety-alert/style.css +62 -0
- package/skills/design-templates/html-ppt/templates/full-decks/weekly-report/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/weekly-report/index.html +127 -0
- package/skills/design-templates/html-ppt/templates/full-decks/weekly-report/style.css +55 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-pastel-card/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-pastel-card/index.html +147 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-pastel-card/style.css +66 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-post/README.md +9 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-post/index.html +133 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-post/style.css +47 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-white-editorial/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-white-editorial/index.html +187 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-white-editorial/style.css +63 -0
- package/skills/design-templates/html-ppt/templates/full-decks-index.html +82 -0
- package/skills/design-templates/html-ppt/templates/layout-showcase.html +47 -0
- package/skills/design-templates/html-ppt/templates/single-page/arch-diagram.html +46 -0
- package/skills/design-templates/html-ppt/templates/single-page/big-quote.html +18 -0
- package/skills/design-templates/html-ppt/templates/single-page/bullets.html +19 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-bar.html +30 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-line.html +35 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-pie.html +36 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-radar.html +31 -0
- package/skills/design-templates/html-ppt/templates/single-page/code.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/comparison.html +47 -0
- package/skills/design-templates/html-ppt/templates/single-page/cover.html +32 -0
- package/skills/design-templates/html-ppt/templates/single-page/cta.html +27 -0
- package/skills/design-templates/html-ppt/templates/single-page/diff.html +35 -0
- package/skills/design-templates/html-ppt/templates/single-page/flow-diagram.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/gantt.html +29 -0
- package/skills/design-templates/html-ppt/templates/single-page/image-grid.html +34 -0
- package/skills/design-templates/html-ppt/templates/single-page/image-hero.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/kpi-grid.html +19 -0
- package/skills/design-templates/html-ppt/templates/single-page/mindmap.html +38 -0
- package/skills/design-templates/html-ppt/templates/single-page/process-steps.html +27 -0
- package/skills/design-templates/html-ppt/templates/single-page/pros-cons.html +31 -0
- package/skills/design-templates/html-ppt/templates/single-page/roadmap.html +46 -0
- package/skills/design-templates/html-ppt/templates/single-page/section-divider.html +17 -0
- package/skills/design-templates/html-ppt/templates/single-page/stat-highlight.html +17 -0
- package/skills/design-templates/html-ppt/templates/single-page/table.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/terminal.html +35 -0
- package/skills/design-templates/html-ppt/templates/single-page/thanks.html +21 -0
- package/skills/design-templates/html-ppt/templates/single-page/three-column.html +18 -0
- package/skills/design-templates/html-ppt/templates/single-page/timeline.html +32 -0
- package/skills/design-templates/html-ppt/templates/single-page/toc.html +26 -0
- package/skills/design-templates/html-ppt/templates/single-page/todo-checklist.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/two-column.html +39 -0
- package/skills/design-templates/html-ppt/templates/theme-showcase.html +151 -0
- package/skills/design-templates/html-ppt-course-module/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-course-module/example.html +542 -0
- package/skills/design-templates/html-ppt-dir-key-nav-minimal/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-dir-key-nav-minimal/example.html +366 -0
- package/skills/design-templates/html-ppt-graphify-dark-graph/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-graphify-dark-graph/example.html +402 -0
- package/skills/design-templates/html-ppt-hermes-cyber-terminal/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-hermes-cyber-terminal/example.html +422 -0
- package/skills/design-templates/html-ppt-knowledge-arch-blueprint/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-knowledge-arch-blueprint/example.html +407 -0
- package/skills/design-templates/html-ppt-obsidian-claude-gradient/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-obsidian-claude-gradient/example.html +371 -0
- package/skills/design-templates/html-ppt-pitch-deck/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-pitch-deck/example.html +495 -0
- package/skills/design-templates/html-ppt-presenter-mode-reveal/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-presenter-mode-reveal/example.html +725 -0
- package/skills/design-templates/html-ppt-product-launch/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-product-launch/example.html +467 -0
- package/skills/design-templates/html-ppt-taste-brutalist/SKILL.md +70 -0
- package/skills/design-templates/html-ppt-taste-brutalist/example.html +774 -0
- package/skills/design-templates/html-ppt-taste-editorial/SKILL.md +62 -0
- package/skills/design-templates/html-ppt-taste-editorial/example.html +689 -0
- package/skills/design-templates/html-ppt-tech-sharing/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-tech-sharing/example.html +512 -0
- package/skills/design-templates/html-ppt-testing-safety-alert/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-testing-safety-alert/example.html +413 -0
- package/skills/design-templates/html-ppt-weekly-report/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-weekly-report/example.html +489 -0
- package/skills/design-templates/html-ppt-xhs-pastel-card/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-xhs-pastel-card/example.html +381 -0
- package/skills/design-templates/html-ppt-xhs-post/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-xhs-post/example.html +487 -0
- package/skills/design-templates/html-ppt-xhs-white-editorial/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-xhs-white-editorial/example.html +418 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/example.html +1640 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/template.json +48 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/example.html +833 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/template.json +49 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/example.html +1453 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/template.json +47 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/example.html +1423 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/template.json +44 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/example.html +876 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/template.json +45 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/example.html +2144 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/template.json +49 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/example.html +1413 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/template.json +51 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/example.html +1136 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/template.json +47 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/example.html +1205 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/template.json +49 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/example.html +1487 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/template.json +45 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/SKILL.md +99 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/assets/deck-stage.js +619 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/example.html +636 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/template.json +47 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/example.html +469 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/template.json +54 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/SKILL.md +98 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/assets/deck-stage.js +619 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/example.html +737 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/template.json +44 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/example.html +1676 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/template.json +51 -0
- package/skills/figma-code-connect-components/SKILL.md +42 -0
- package/skills/figma-create-design-system-rules/SKILL.md +42 -0
- package/skills/figma-create-new-file/SKILL.md +41 -0
- package/skills/figma-generate-design/SKILL.md +42 -0
- package/skills/figma-generate-library/SKILL.md +42 -0
- package/skills/figma-implement-design/SKILL.md +42 -0
- package/skills/figma-use/SKILL.md +42 -0
- package/skills/full-page-screenshot/SKILL.md +42 -0
- package/skills/interview-me/SKILL.md +64 -0
- package/skills/planning-and-task-breakdown/SKILL.md +52 -0
- package/skills/sora/SKILL.md +43 -0
- package/skills/theme-factory/SKILL.md +43 -0
- package/skills/web-design-guidelines/SKILL.md +42 -0
- package/dist/agents/prompt-library/orchestration.d.ts +0 -4
- package/skills/brainstorming/SKILL.md +0 -164
- package/skills/brainstorming/scripts/frame-template.html +0 -214
- package/skills/brainstorming/scripts/helper.js +0 -88
- package/skills/brainstorming/scripts/server.cjs +0 -354
- package/skills/brainstorming/scripts/start-server.sh +0 -148
- package/skills/brainstorming/scripts/stop-server.sh +0 -56
- package/skills/brainstorming/spec-document-reviewer-prompt.md +0 -49
- package/skills/brainstorming/visual-companion.md +0 -287
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "zhangzara-grove",
|
|
3
|
+
"name": "Grove",
|
|
4
|
+
"tagline": "Forest-green canvas with cream type, classical Playfair serifs, and a single rust accent.",
|
|
5
|
+
"mood": [
|
|
6
|
+
"organic",
|
|
7
|
+
"considered",
|
|
8
|
+
"warm",
|
|
9
|
+
"literary",
|
|
10
|
+
"natural"
|
|
11
|
+
],
|
|
12
|
+
"occasion": [
|
|
13
|
+
"sustainability brand",
|
|
14
|
+
"wellness brand",
|
|
15
|
+
"outdoor / nature product",
|
|
16
|
+
"winery or restaurant",
|
|
17
|
+
"literary or arts deck",
|
|
18
|
+
"advisory deliverable",
|
|
19
|
+
"bilingual EN/CN deck"
|
|
20
|
+
],
|
|
21
|
+
"tone": [
|
|
22
|
+
"classical",
|
|
23
|
+
"warm",
|
|
24
|
+
"considered",
|
|
25
|
+
"patient"
|
|
26
|
+
],
|
|
27
|
+
"formality": "medium-high",
|
|
28
|
+
"density": "medium",
|
|
29
|
+
"palette": {
|
|
30
|
+
"bg": "#192b1b",
|
|
31
|
+
"bg_alt": "#1e3221",
|
|
32
|
+
"fg": "#d4cfbf",
|
|
33
|
+
"accent": "#c8524a",
|
|
34
|
+
"bg_light": "#e8e4d6",
|
|
35
|
+
"description": "deep forest green canvas with warm bone type and a single rust-red accent; alternate cream-paper mode for breathing room"
|
|
36
|
+
},
|
|
37
|
+
"typography": {
|
|
38
|
+
"display": "Playfair Display",
|
|
39
|
+
"body": "Jost",
|
|
40
|
+
"mono": "JetBrains Mono",
|
|
41
|
+
"serif_cn": "Noto Serif SC",
|
|
42
|
+
"sans_cn": "Noto Sans SC",
|
|
43
|
+
"style": "transitional serif headlines + clean geometric sans body + technical mono; full Chinese serif/sans support"
|
|
44
|
+
},
|
|
45
|
+
"scheme": "mixed",
|
|
46
|
+
"best_for": "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. Also a calm, distinctive choice for tech, research, or business decks that want patience over urgency.",
|
|
47
|
+
"avoid_for": "Decks that need neon energy or rapid-fire pop — the forest-green canvas and Playfair serif commit to a slow, classical voice.",
|
|
48
|
+
"slide_count": 12,
|
|
49
|
+
"navigation": "inline keyboard handler",
|
|
50
|
+
"source": "https://github.com/zarazhangrui/beautiful-html-templates/tree/main/templates/grove"
|
|
51
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-code-connect-components
|
|
3
|
+
description: |
|
|
4
|
+
Connect Figma design components to code components using Code Connect so design-system updates flow into the codebase automatically.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma code connect"
|
|
7
|
+
- "design to code"
|
|
8
|
+
- "figma components"
|
|
9
|
+
- "code connect"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: figma
|
|
13
|
+
upstream: "https://github.com/figma/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# figma-code-connect-components
|
|
17
|
+
|
|
18
|
+
> Curated from Figma's MCP server guide.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Connect Figma design components to code components using Code Connect so design-system updates flow into the codebase automatically.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/figma/skills
|
|
27
|
+
- Category: `figma`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/figma/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`figma-code-connect-components`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-create-design-system-rules
|
|
3
|
+
description: |
|
|
4
|
+
Generate project-specific design system rules for Figma-to-code workflows. Useful for capturing tokens, naming, and lint rules in one source.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma rules"
|
|
7
|
+
- "design system rules"
|
|
8
|
+
- "figma to code rules"
|
|
9
|
+
- "figma tokens"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: figma
|
|
13
|
+
upstream: "https://github.com/figma/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# figma-create-design-system-rules
|
|
17
|
+
|
|
18
|
+
> Curated from Figma's MCP server guide.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Generate project-specific design system rules for Figma-to-code workflows. Useful for capturing tokens, naming, and lint rules in one source.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/figma/skills
|
|
27
|
+
- Category: `figma`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/figma/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`figma-create-design-system-rules`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-create-new-file
|
|
3
|
+
description: |
|
|
4
|
+
Create a new blank Figma Design or FigJam file. Useful as the first step in scripted design-system or workshop workflows.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma new file"
|
|
7
|
+
- "figjam new"
|
|
8
|
+
- "create figma file"
|
|
9
|
+
od:
|
|
10
|
+
mode: design-system
|
|
11
|
+
category: figma
|
|
12
|
+
upstream: "https://github.com/figma/skills"
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# figma-create-new-file
|
|
16
|
+
|
|
17
|
+
> Curated from Figma's MCP server guide.
|
|
18
|
+
|
|
19
|
+
## What it does
|
|
20
|
+
|
|
21
|
+
Create a new blank Figma Design or FigJam file. Useful as the first step in scripted design-system or workshop workflows.
|
|
22
|
+
|
|
23
|
+
## Source
|
|
24
|
+
|
|
25
|
+
- Upstream: https://github.com/figma/skills
|
|
26
|
+
- Category: `figma`
|
|
27
|
+
|
|
28
|
+
## How to use
|
|
29
|
+
|
|
30
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
31
|
+
discovers it during planning. To run the full upstream workflow with
|
|
32
|
+
its original assets, scripts, and references, install the upstream
|
|
33
|
+
bundle into your active agent's skills directory:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Inspect the upstream README for exact paths
|
|
37
|
+
open https://github.com/figma/skills
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Then ask the agent to invoke this skill by name (`figma-create-new-file`) or with
|
|
41
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-generate-design
|
|
3
|
+
description: |
|
|
4
|
+
Build or update screens in Figma from code or description using design system components. Translate app pages into Figma using design tokens.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma generate design"
|
|
7
|
+
- "code to figma"
|
|
8
|
+
- "screen generation"
|
|
9
|
+
- "figma from code"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: figma
|
|
13
|
+
upstream: "https://github.com/figma/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# figma-generate-design
|
|
17
|
+
|
|
18
|
+
> Curated from Figma's MCP server guide.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Build or update screens in Figma from code or description using design system components. Translate app pages into Figma using design tokens.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/figma/skills
|
|
27
|
+
- Category: `figma`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/figma/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`figma-generate-design`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-generate-library
|
|
3
|
+
description: |
|
|
4
|
+
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.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma library"
|
|
7
|
+
- "design system library"
|
|
8
|
+
- "figma from codebase"
|
|
9
|
+
- "sync figma"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: figma
|
|
13
|
+
upstream: "https://github.com/figma/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# figma-generate-library
|
|
17
|
+
|
|
18
|
+
> Curated from Figma's MCP server guide.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
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.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/figma/skills
|
|
27
|
+
- Category: `figma`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/figma/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`figma-generate-library`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-implement-design
|
|
3
|
+
description: |
|
|
4
|
+
Translate Figma designs into production-ready code with 1:1 visual fidelity. Useful for handing off Figma frames straight to a frontend agent.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma to code"
|
|
7
|
+
- "implement figma"
|
|
8
|
+
- "figma fidelity"
|
|
9
|
+
- "1:1 figma"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: figma
|
|
13
|
+
upstream: "https://github.com/figma/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# figma-implement-design
|
|
17
|
+
|
|
18
|
+
> Curated from Figma's MCP server guide.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Translate Figma designs into production-ready code with 1:1 visual fidelity. Useful for handing off Figma frames straight to a frontend agent.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/figma/skills
|
|
27
|
+
- Category: `figma`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/figma/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`figma-implement-design`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: figma-use
|
|
3
|
+
description: |
|
|
4
|
+
Run Figma Plugin API scripts for canvas writes, inspections, variables, and design-system work. Prerequisite for every other Figma skill in this catalogue.
|
|
5
|
+
triggers:
|
|
6
|
+
- "figma use"
|
|
7
|
+
- "figma plugin api"
|
|
8
|
+
- "figma canvas"
|
|
9
|
+
- "figma scripts"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: figma
|
|
13
|
+
upstream: "https://github.com/figma/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# figma-use
|
|
17
|
+
|
|
18
|
+
> Curated from Figma's MCP server guide.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Run Figma Plugin API scripts for canvas writes, inspections, variables, and design-system work. Prerequisite for every other Figma skill in this catalogue.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/figma/skills
|
|
27
|
+
- Category: `figma`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/figma/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`figma-use`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: full-page-screenshot
|
|
3
|
+
description: |
|
|
4
|
+
Capture full-page screenshots of web pages via Chrome DevTools Protocol with zero dependencies. Useful for portfolios, case studies, and audit reports.
|
|
5
|
+
triggers:
|
|
6
|
+
- "full page screenshot"
|
|
7
|
+
- "long screenshot"
|
|
8
|
+
- "devtools screenshot"
|
|
9
|
+
- "web capture"
|
|
10
|
+
od:
|
|
11
|
+
mode: image
|
|
12
|
+
category: screenshots
|
|
13
|
+
upstream: "https://github.com/LewisLiu007/full-page-screenshot"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# full-page-screenshot
|
|
17
|
+
|
|
18
|
+
> Curated from @LewisLiu007.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Capture full-page screenshots of web pages via Chrome DevTools Protocol with zero dependencies. Useful for portfolios, case studies, and audit reports.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/LewisLiu007/full-page-screenshot
|
|
27
|
+
- Category: `screenshots`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/LewisLiu007/full-page-screenshot
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`full-page-screenshot`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: interview-me
|
|
3
|
+
description: Use when requirements are underspecified or the user's stated goal differs from what they actually need. Extracts true intent through one-question-at-a-time dialogue. Critical for the Define phase when users have a vague idea but not a concrete spec.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Interview Me
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
Users often know what they feel without knowing what they need. This skill extracts what users actually want vs. what they think they should want. It is critical for the Define phase when requirements are underspecified or the user's stated goal differs from the real problem.
|
|
11
|
+
|
|
12
|
+
**Core principle:** One question at a time. Let the user think. Don't rush to solutions.
|
|
13
|
+
|
|
14
|
+
## When to Use
|
|
15
|
+
|
|
16
|
+
- User says "build something" without concrete details
|
|
17
|
+
- Requirements are vague, ambiguous, or contradictory
|
|
18
|
+
- The stated goal feels like a solution rather than a problem
|
|
19
|
+
- User says "just do X" when X seems unusual or risky
|
|
20
|
+
- You suspect the user wants Y but keeps asking about Z
|
|
21
|
+
- Early in Define phase before any planning or building
|
|
22
|
+
|
|
23
|
+
**Don't use when:**
|
|
24
|
+
- Requirements are already clear and specific
|
|
25
|
+
- User explicitly says "don't ask questions, just do X"
|
|
26
|
+
- This is a follow-up conversation with existing context
|
|
27
|
+
|
|
28
|
+
## The Interview Flow
|
|
29
|
+
|
|
30
|
+
### Step 1: Acknowledge and Set Expectations
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
"Understood — [restate what you heard]. Before I plan or build anything,
|
|
34
|
+
I need to understand the problem better. I'll ask a few questions.
|
|
35
|
+
If any feel off, tell me — that helps me understand the real issue."
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Step 2: Surface the Problem, Not the Solution
|
|
39
|
+
|
|
40
|
+
Ask about the problem, not the proposed solution.
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
❌ "You want me to add a dark mode toggle, right?"
|
|
44
|
+
✅ "What's the current experience that needs improving?"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Step 3: One Question Per Exchange
|
|
48
|
+
|
|
49
|
+
**One question. Wait for answer. Then next.**
|
|
50
|
+
|
|
51
|
+
### Step 4: Identify the Real Goal
|
|
52
|
+
|
|
53
|
+
The conversation is done when you can fill this template:
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
"[User] needs to [action] so that [outcome].
|
|
57
|
+
Currently they [existing workaround or pain].
|
|
58
|
+
The constraint is [resources, time, technology]."
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Related Skills
|
|
62
|
+
|
|
63
|
+
- **`brainstorming`** — After interview, when user has a clear goal to explore
|
|
64
|
+
- **`spec-driven-development`** — After interview, when user has a clear goal to formalize
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: planning-and-task-breakdown
|
|
3
|
+
description: Use when a spec or requirements exist and need to be broken into verifiable tasks with acceptance criteria. Explicit decomposition into tasks with clear definitions of done. Distinct from writing-plans which is output-focused.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Planning and Task Breakdown
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
Explicit task decomposition into verifiable units with acceptance criteria. This skill is distinct from `writing-plans` which is output-focused (produces a plan document). This skill focuses on decomposition process — turning a spec into a sequence of implementable, testable tasks.
|
|
11
|
+
|
|
12
|
+
**Core principle:** A task isn't done until it's verifiable. Every task needs a clear "done" criterion before it starts.
|
|
13
|
+
|
|
14
|
+
## When to Use
|
|
15
|
+
|
|
16
|
+
- A spec or requirements document exists
|
|
17
|
+
- Need to break work into manageable pieces
|
|
18
|
+
- Planning a multi-step implementation
|
|
19
|
+
- Before `subagent-driven-development` begins
|
|
20
|
+
- When "I have a plan" but the plan has no verifiable tasks
|
|
21
|
+
|
|
22
|
+
**Don't use when:**
|
|
23
|
+
- Requirements are still unclear → use `interview-me` first
|
|
24
|
+
- No spec exists → use `spec-driven-development` first
|
|
25
|
+
- Task is simple single-step → just do it, don't over-plan
|
|
26
|
+
|
|
27
|
+
## The Decomposition Process
|
|
28
|
+
|
|
29
|
+
### Step 1: Parse the Spec
|
|
30
|
+
|
|
31
|
+
Read the spec completely before breaking it down.
|
|
32
|
+
|
|
33
|
+
### Step 2: Identify Task Boundaries
|
|
34
|
+
|
|
35
|
+
**Rule: One task = one responsible party = one verification point**
|
|
36
|
+
|
|
37
|
+
### Step 3: Write Verifiable Tasks
|
|
38
|
+
|
|
39
|
+
Each task must answer:
|
|
40
|
+
- **What** is being built/modified
|
|
41
|
+
- **Where** it lives (file, module, component)
|
|
42
|
+
- **How to verify** it's done
|
|
43
|
+
|
|
44
|
+
### Step 4: Order by Dependency
|
|
45
|
+
|
|
46
|
+
Sequential, parallel, or conditional.
|
|
47
|
+
|
|
48
|
+
## Relationship to Other Skills
|
|
49
|
+
|
|
50
|
+
- **`interview-me`** — Used BEFORE this skill when requirements are unclear
|
|
51
|
+
- **`spec-driven-development`** — Used BEFORE this skill when no spec exists
|
|
52
|
+
- **`subagent-driven-development`** — Uses tasks from this skill for execution
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: sora
|
|
3
|
+
description: |
|
|
4
|
+
Generate, remix, and manage short video clips via OpenAI's Sora API. Useful for cinematic shots, b-roll, and rapid concept video iteration.
|
|
5
|
+
triggers:
|
|
6
|
+
- "sora"
|
|
7
|
+
- "openai video"
|
|
8
|
+
- "short video"
|
|
9
|
+
- "b roll"
|
|
10
|
+
- "cinematic clip"
|
|
11
|
+
od:
|
|
12
|
+
mode: video
|
|
13
|
+
category: video-generation
|
|
14
|
+
upstream: "https://github.com/openai/skills"
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# sora
|
|
18
|
+
|
|
19
|
+
> Curated from OpenAI's skills repository.
|
|
20
|
+
|
|
21
|
+
## What it does
|
|
22
|
+
|
|
23
|
+
Generate, remix, and manage short video clips via OpenAI's Sora API. Useful for cinematic shots, b-roll, and rapid concept video iteration.
|
|
24
|
+
|
|
25
|
+
## Source
|
|
26
|
+
|
|
27
|
+
- Upstream: https://github.com/openai/skills
|
|
28
|
+
- Category: `video-generation`
|
|
29
|
+
|
|
30
|
+
## How to use
|
|
31
|
+
|
|
32
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
33
|
+
discovers it during planning. To run the full upstream workflow with
|
|
34
|
+
its original assets, scripts, and references, install the upstream
|
|
35
|
+
bundle into your active agent's skills directory:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Inspect the upstream README for exact paths
|
|
39
|
+
open https://github.com/openai/skills
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Then ask the agent to invoke this skill by name (`sora`) or with
|
|
43
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: theme-factory
|
|
3
|
+
description: |
|
|
4
|
+
Apply professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships 10 pre-set themes.
|
|
5
|
+
triggers:
|
|
6
|
+
- "theme factory"
|
|
7
|
+
- "apply theme"
|
|
8
|
+
- "design theme"
|
|
9
|
+
- "theme generator"
|
|
10
|
+
- "preset theme"
|
|
11
|
+
od:
|
|
12
|
+
mode: design-system
|
|
13
|
+
category: design-systems
|
|
14
|
+
upstream: "https://github.com/anthropics/skills/tree/main/theme-factory"
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
# theme-factory
|
|
18
|
+
|
|
19
|
+
> Curated from Anthropic's official skills repository.
|
|
20
|
+
|
|
21
|
+
## What it does
|
|
22
|
+
|
|
23
|
+
Apply professional font and color themes to artifacts including slides, docs, reports, and HTML landing pages. Ships 10 pre-set themes.
|
|
24
|
+
|
|
25
|
+
## Source
|
|
26
|
+
|
|
27
|
+
- Upstream: https://github.com/anthropics/skills/tree/main/theme-factory
|
|
28
|
+
- Category: `design-systems`
|
|
29
|
+
|
|
30
|
+
## How to use
|
|
31
|
+
|
|
32
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
33
|
+
discovers it during planning. To run the full upstream workflow with
|
|
34
|
+
its original assets, scripts, and references, install the upstream
|
|
35
|
+
bundle into your active agent's skills directory:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Inspect the upstream README for exact paths
|
|
39
|
+
open https://github.com/anthropics/skills/tree/main/theme-factory
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Then ask the agent to invoke this skill by name (`theme-factory`) or with
|
|
43
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: web-design-guidelines
|
|
3
|
+
description: |
|
|
4
|
+
Web design guidelines and standards by the Vercel engineering team. Covers layout, typography, color, motion, and accessibility for product UI.
|
|
5
|
+
triggers:
|
|
6
|
+
- "web design guidelines"
|
|
7
|
+
- "vercel design"
|
|
8
|
+
- "product ui standards"
|
|
9
|
+
- "design checklist"
|
|
10
|
+
od:
|
|
11
|
+
mode: design-system
|
|
12
|
+
category: design-systems
|
|
13
|
+
upstream: "https://github.com/vercel-labs/skills"
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
# web-design-guidelines
|
|
17
|
+
|
|
18
|
+
> Curated from the Vercel engineering team.
|
|
19
|
+
|
|
20
|
+
## What it does
|
|
21
|
+
|
|
22
|
+
Web design guidelines and standards by the Vercel engineering team. Covers layout, typography, color, motion, and accessibility for product UI.
|
|
23
|
+
|
|
24
|
+
## Source
|
|
25
|
+
|
|
26
|
+
- Upstream: https://github.com/vercel-labs/skills
|
|
27
|
+
- Category: `design-systems`
|
|
28
|
+
|
|
29
|
+
## How to use
|
|
30
|
+
|
|
31
|
+
This catalogue entry advertises the skill in Open Design so the agent
|
|
32
|
+
discovers it during planning. To run the full upstream workflow with
|
|
33
|
+
its original assets, scripts, and references, install the upstream
|
|
34
|
+
bundle into your active agent's skills directory:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Inspect the upstream README for exact paths
|
|
38
|
+
open https://github.com/vercel-labs/skills
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Then ask the agent to invoke this skill by name (`web-design-guidelines`) or with
|
|
42
|
+
one of the trigger phrases listed in this skill's frontmatter.
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { AvailableAgent, AvailableTool } from "../dynamic-agent-prompt-types";
|
|
2
|
-
export declare function buildKeyTriggersSection(agents: AvailableAgent[]): string;
|
|
3
|
-
export declare function buildToolSelectionTable(agents: AvailableAgent[], tools?: AvailableTool[]): string;
|
|
4
|
-
export declare function buildDelegationTable(agents: AvailableAgent[]): string;
|