一键导入
oscortex-ui-design
Design systems guidelines, layout rules, and components code-base for OSCortex landing page and interfaces, derived from lightfield.app style.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Design systems guidelines, layout rules, and components code-base for OSCortex landing page and interfaces, derived from lightfield.app style.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | oscortex-ui-design |
| description | Design systems guidelines, layout rules, and components code-base for OSCortex landing page and interfaces, derived from lightfield.app style. |
This document establishes the UI design language for the OSCortex landing page and interface modules. Every component must strictly align with these parameters to maintain visual continuity.
#f5f5f5 (Creamy off-white background)#fafafargba(0, 0, 0, 0.02) (Very low opacity black overlay)rgba(0, 0, 0, 0.04)rgba(0, 0, 0, 0.08) (Ultra-thin borders)rgba(0, 0, 0, 0.15)#0d0d0d (High-contrast near-black text)rgba(0, 0, 0, 0.65) (Standard gray text)rgba(0, 0, 0, 0.4) (Light gray for tags/meta)#7c3aed (Violet) / #10b981 (Emerald green for active state)bg-black text-white hover:bg-neutral-800)border-black/[0.08] text-black hover:bg-black/[0.02])Instrument Serif, Georgia, serif (Normal/medium weight, tight tracking -0.03em)Inter, system-ui (Regular weight)JetBrains Mono (For telemetry, code snippets, tags).text-d4: 32px (leading 1.15em, tracking -0.035em).text-h1: 28px (leading 1.2em, tracking -0.03em).text-h2: 24px (leading 1.25em, tracking -0.02em).text-h3: 21px (leading 1.25em, tracking -0.015em).text-h4: 19px (leading 1.3em, tracking -0.01em).text-base: 15px.text-sm: 13px.text-xs: 12px.text-xxs: 11px.monocaps-xxs: 9px (letter-spacing 1px).monocaps-xs: 10px (letter-spacing 1px)backdrop-blur-[17px]), rounded corners (rounded-[10px]), and a hairline border.<nav class="fixed top-4 left-1/2 -translate-x-1/2 z-50 flex items-center gap-6 px-6 py-2 rounded-[10px] border border-black/[0.08] bg-white/80 backdrop-blur-md">
<br />, with the second line having a gradient:
<h1 class="text-center text-4xl font-semibold leading-[1.08] tracking-[-0.03em] text-black sm:text-6xl">
The OS that builds itself <br />
<span class="bg-gradient-to-r from-black via-zinc-700 to-black bg-clip-text text-transparent">around your hardware.</span>
</h1>
max-w-md (centered).import React from 'react'
export function WaitlistForm() {
return (
<form className="relative w-full max-w-sm mx-auto">
<input
type="email"
placeholder="Enter your work email..."
className="h-10 w-full rounded-lg border border-black/[0.08] bg-white px-4 pr-10 text-black text-xs outline-none placeholder:text-neutral-400 focus:border-black/20 focus:ring-1 focus:ring-black/10 transition-all"
/>
<button
type="submit"
aria-label="Submit"
className="absolute top-1/2 right-3 -translate-y-1/2 text-neutral-500 hover:text-black transition-colors"
>
<svg className="w-4.5 h-4.5" fill="none" stroke="currentColor" strokeWidth="2" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" d="M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3" />
</svg>
</button>
</form>
)
}
export function StatusPill({ label }: { label: string }) {
return (
<div className="inline-flex items-center gap-1.5 rounded-full border border-black/[0.06] bg-black/[0.02] px-2.5 py-0.5">
<span className="h-1 w-1 rounded-full bg-emerald-500 anim-pulse-dot" />
<span className="font-mono text-[9px] uppercase tracking-wider text-neutral-500 font-medium">
{label}
</span>
</div>
)
}
Audit and clean OSCortex for redundancy, AI slop, dead pivots, and missing reusability. Trigger on: cleanup, audit, duplicate code, technical debt, refactor, bloat, pivot, remove old code, one path, code reusability, or before large features. Excludes landing/.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
Enforce A2UI protocol compliance for all OSCortex UI components. Trigger when: adding a new Osc* widget, creating a new interactive component, modifying the oscortex_ui package, or any question about A2UI support. Ensures every new component has an A2UI renderer mapping and is exported correctly.
Canonical OSCortex OS architecture — kernel vs Flutter userspace, process isolation, shell vs apps, runtime install model. Use when designing features, refactoring boot/app launch, writing docs, or any question about how OSCortex should work (not legacy hacks).
OSCortex Git branching, CI gates, PR compliance, and production release flow. Use when committing, pushing, opening PRs, merging to develop/main, releasing ISOs, setting up GitHub Actions, or any question about which branch to work on.
OSCortex hardware and driver model — display/GPU path, device classes, syscalls, multi-arch rules, CDP WASM drivers. Use when adding or changing drivers, input, audio, storage, net, compositor backends, or any question about hardware support vs CPU porting.