Devouring Details Design

@theme inline

v1.0.0

关于此技能

安装 Devouring Details Design,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

功能特性

Devouring Details Design
Use this skill when the user wants the feel of Devouring Details, not a generic SaaS UI.
Apply the style as a system, not as scattered decoration:
tokens first (mapped to Moonwell's design system — see packages/web/AGENTS.md)
motion and affordances last
moonwell-fi moonwell-fi
[0]
[0]
更新于: 5/6/2026

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

安装 Devouring Details Design,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。

核心价值

推荐说明: devouring-details-design helps agents devouring details design. Agent skill and CLI for Moonwell # Devouring Details Design Use this skill when the user wants the feel of Devouring Details, not a generic SaaS UI.

适用 Agent 类型

适用场景: devouring details design.

赋予的主要能力 · Devouring Details Design

适用任务: Devouring Details Design
适用任务: Use this skill when the user wants the feel of Devouring Details, not a generic SaaS UI
适用任务: Apply the style as a system, not as scattered decoration:

! 使用限制与门槛

  • 限制说明: Avoid heavy nav bars, giant boxed layouts, or marketing gradients unless the user specifically asks for them.
  • 限制说明: Do not introduce standalone hex values or a parallel token system
  • 限制说明: Dark-only: this project has no light mode

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

SKILL.md
Readonly

Devouring Details Design

Use this skill when the user wants the feel of Devouring Details, not a generic SaaS UI.

Apply the style as a system, not as scattered decoration:

  • tokens first (mapped to Moonwell's design system — see packages/web/AGENTS.md)
  • typography second
  • layout third
  • motion and affordances last
  • one strong accent moment instead of many small accent moments

Core Intent

The site feels like a design engineer's field manual:

  • reading-first, never chrome-first
  • sparse, deliberate, and calm
  • mostly neutrals with one controlled accent color
  • tactile motion used to clarify intent, not to decorate blank space
  • editorial copy blocks paired with live or media-backed examples

Token Strategy

All DD surfaces in this project must use Moonwell's design tokens (defined in packages/web/src/app/globals.css via Tailwind v4 @theme inline). Do not introduce standalone hex values or a parallel token system.

  • Colors: use CSS variables / Tailwind utilities from the Moonwell palette:
    • bg-background (#0f0d0e), text-foreground (#e5e2e3)
    • bg-card (#1d1b1c), bg-card-hover (#332e30)
    • border-border (#3b3438), text-muted (#887982)
    • text-accent / bg-accent (#2474da — Moonwell Blue, primary interactive; fills the DD accent role)
    • text-green (#42b34d), text-purple (#ac10f4)
  • Accent moment: use bg-accent / text-accent (Moonwell Blue, #2474da) for the single strong accent per screen.
  • Dark-only: this project has no light mode. DD's classic grayscale-on-light reading layout must adapt — the reading surface is dark, neutrals are warm-dark, and accent contrast still stays restrained.
  • Radius: Tailwind defaults (rounded-sm through rounded-xl, rounded-full).
  • Fonts: font-sans (Geist Sans via --font-geist-sans) and font-mono (Geist Mono via --font-geist-mono).

See foundation.md for the complete token mapping.

Non-Negotiables

  • Use Moonwell's token system exclusively — no raw hex values that bypass the theme.
  • Use the accent color as the primary emphasis. Do not introduce a second dominant accent unless the task explicitly needs a semantic state.
  • Keep section headings small, monospaced (font-mono), and quiet.
  • Keep body copy large enough to feel authored, not app-default.
  • Favor generous line height and roomy vertical rhythm over dense information packing.
  • Prefer soft fills, thin contrast, and rounded pills over hard borders and square controls.
  • If the page includes an interactive demo, treat it as a parallel reading rail, not as a tiny embedded card.
  • Avoid heavy nav bars, giant boxed layouts, or marketing gradients unless the user specifically asks for them.

Typography Rules

  • Main reading text should feel like authored prose, not utility copy. Use text-lg leading-relaxed or larger.
  • Small structural labels should use font-mono text-xs uppercase tracking-wider text-muted.
  • Code examples should use font-mono and sit on very low-contrast containers (bg-card).
  • Large CTA text can be oversized and slightly tight-tracked, but reserve that move for one moment per screen.

Interaction Rules

  • Hover should usually reveal clarity, not spectacle.
  • Motion should rely on opacity, blur, translate, scale, and spring settling.
  • Use the accent color for active markers, focus cues, selected items, and the main CTA.
  • Subtle neutral state changes are preferred over loud hover treatments.
  • On desktop, hidden labels and controls can reveal on hover. On mobile, reveal by default or simplify the control.

Layout Rules

  • The product surface is built around a fixed reading lane and a second rail for media or demos.
  • The public marketing surface uses large vertical sections and two-column card grids, but still keeps the same restrained palette.
  • Mobile should collapse to a single reading column with embedded media blocks and less peripheral chrome.

Implementation Notes

  • Start from Moonwell's CSS variables and Tailwind v4 @theme inline block in globals.css — never define a parallel set of DD tokens.
  • Keep component APIs simple. Most of the feel comes from spacing, typography, and state handling, not from prop-heavy abstractions.
  • Use inline SVG, lightweight illustration strokes, or quiet geometric diagrams when you need decoration.

Technical Details

  • Reference tokens from the Moonwell theme for all color, radius, shadow, spacing, and typography decisions.
  • Model most pages as content + rail, where the content column owns reading rhythm and the rail owns live media or controls.
  • Use sticky rails on desktop, then inline the same content lower in the flow on mobile instead of maintaining separate desktop-only logic.
  • Keep motion local to the thing that changes state. Prefer animating a CTA, active marker, or rail reveal instead of animating the whole page.
  • Gate non-essential motion behind reduced-motion checks so the layout still reads correctly without animation.

React + Framer Motion Sample

tsx
1'use client'; 2 3import * as React from 'react'; 4import { motion, useReducedMotion } from 'framer-motion'; 5 6const ddSpring = { type: 'spring', stiffness: 420, damping: 34, mass: 0.8 }; 7 8export function DDPageShell({ 9 eyebrow, 10 title, 11 children, 12 rail, 13}: { 14 eyebrow: string; 15 title: string; 16 children: React.ReactNode; 17 rail: React.ReactNode; 18}) { 19 const reduceMotion = useReducedMotion(); 20 21 return ( 22 <div className="min-h-screen bg-background text-foreground"> 23 <div className="mx-auto grid w-full max-w-[1280px] gap-10 px-6 py-10 lg:grid-cols-[minmax(0,44rem)_minmax(320px,1fr)] lg:px-10"> 24 <main className="space-y-8"> 25 <p className="font-mono text-xs uppercase tracking-wider text-muted"> 26 {eyebrow} 27 </p> 28 <h1 className="max-w-[14ch] text-5xl leading-[1.05] tracking-[-0.04em]"> 29 {title} 30 </h1> 31 <div className="space-y-6 text-xl leading-relaxed">{children}</div> 32 </main> 33 34 <motion.aside 35 initial={reduceMotion ? false : { opacity: 0, y: 16 }} 36 animate={{ opacity: 1, y: 0 }} 37 transition={reduceMotion ? { duration: 0 } : ddSpring} 38 className="lg:sticky lg:top-8" 39 > 40 <div className="rounded-xl border border-border bg-card p-4 shadow-md"> 41 {rail} 42 </div> 43 </motion.aside> 44 </div> 45 </div> 46 ); 47}

Supporting Files

  • foundation.md: token mapping to Moonwell's design system, typography, motion cues, and visual rules
  • surfaces.md: surface-specific recipes for marketing, editorial, prototype, resource, and mobile layouts

Use these when the request is specifically about motion behavior rather than overall styling:

  • dd-morphing-surfaces
  • dd-motion-principles
  • dd-smooth-transitions

Output Standard

When using this skill, make the result feel like it belongs to the same family as Devouring Details:

  • precise
  • calm
  • tactile
  • editorial
  • motion-aware

It should never read like a generic dashboard theme with accent paint on top.

常见问题与安装步骤

与页面结构化数据保持一致,便于搜索引擎理解。

安装步骤

  1. 1

    打开终端

    在你的项目目录中打开终端或命令行。

  2. 2

    执行安装命令

    运行:npx killer-skills add moonwell-fi/moonwell-ai/devouring-details-design。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3

    开始使用技能

    Devouring Details Design 已启用,可立即在当前项目中调用。

? FAQ

Devouring Details Design 是什么?
安装 Devouring Details Design,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看功能、使用场景、限制条件与安装命令。
如何安装 Devouring Details Design?
运行命令:npx killer-skills add moonwell-fi/moonwell-ai/devouring-details-design。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。
Devouring Details Design 适用于哪些场景?
典型场景包括:适用任务: Devouring Details Design、适用任务: Use this skill when the user wants the feel of Devouring Details, not a generic SaaS UI、适用任务: Apply the style as a system, not as scattered decoration:。
Devouring Details Design 支持哪些 IDE 或 Agent?
该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。
Devouring Details Design 有哪些限制?
限制说明: Avoid heavy nav bars, giant boxed layouts, or marketing gradients unless the user specifically asks for them.;限制说明: Do not introduce standalone hex values or a parallel token system;限制说明: Dark-only: this project has no light mode。

相关技能

寻找 Devouring Details Design 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具