ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/frontend-design/SKILL.md
AI-guided UI/UX design patterns with Gay.jl deterministic colors
npx skillsauth add plurigrid/asi frontend-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Frontend design skill for all AI coding assistants. Provides consistent design principles, component patterns, and accessibility guidelines across Claude, Codex, Cursor, and Copilot.
# Via ai-agent-skills (Codex)
npx ai-agent-skills install frontend-design --agent codex
# Via ruler (all agents)
ruler sync --skill frontend-design
All colors are deterministic via SplitMix64:
// seed 0x42D (1069) for consistent palette
const seed = 0x42D;
const colors = gaySPI.palette(seed, 5);
// Example palette:
// #E67F86 - Primary (warm coral)
// #D06546 - Secondary (rust orange)
// #1316BB - Accent (deep blue)
// #3CB371 - Success (medium sea green)
// #FFD700 - Warning (gold)
// Balanced Ternary State Component
interface TAPState {
mode: 'BACKFILL' | 'VERIFY' | 'LIVE';
color: string;
}
function StateIndicator({ state }: { state: TAPState }) {
const colorMap = {
BACKFILL: '#0000FF', // Blue (-1)
VERIFY: '#00FF00', // Green (0)
LIVE: '#FF0000' // Red (+1)
};
return (
<div
className="state-indicator"
style={{ backgroundColor: colorMap[state.mode] }}
/>
);
}
.container {
display: grid;
grid-template-columns: 1fr 1.618fr; /* φ = 1.618... */
gap: var(--spacing-golden);
}
:root {
--spacing-golden: 1.618rem;
--spacing-inverse: 0.618rem;
}
:root {
--space-1: 0.25rem; /* 1 */
--space-2: 0.5rem; /* 2 */
--space-3: 0.75rem; /* 3 */
--space-5: 1.25rem; /* 5 */
--space-8: 2rem; /* 8 */
--space-13: 3.25rem; /* 13 */
--space-21: 5.25rem; /* 21 */
}
:root {
--duration-fast: 100ms; /* Instant feedback */
--duration-normal: 250ms; /* Standard transitions */
--duration-slow: 400ms; /* Complex animations */
--easing-spectral: cubic-bezier(0.25, 0.1, 0.25, 1);
}
/* 1/4 probability for verification animations */
.verify-transition {
animation: verify-pulse 1s infinite;
animation-timing-function: steps(4); /* 4 discrete steps */
}
The skill integrates with MCP servers for live design tokens:
{
"mcpServers": {
"gay": {
"command": "julia",
"args": ["--project=@gay", "-e", "using Gay; Gay.serve_mcp()"],
"env": { "GAY_SEED": "1069" }
}
}
}
// Use Gay MCP to get deterministic colors
const response = await mcp.call('gay/color_at', {
seed: 1069,
index: componentIndex
});
const { L, C, H } = response; // OKLCH color space
src/
├── components/
│ ├── Button.tsx
│ ├── Card.tsx
│ └── StateIndicator.tsx
├── styles/
│ ├── tokens.css # Design tokens
│ ├── components.css # Component styles
│ └── utilities.css # Utility classes
└── hooks/
└── useGayColor.ts # SPI color hook
type Theme = {
mode: 'light' | 'dark';
tapState: 'BACKFILL' | 'VERIFY' | 'LIVE';
seed: number;
};
function getThemeColors(theme: Theme) {
const baseColors = gaySPI.palette(theme.seed, 10);
return {
primary: baseColors[0],
secondary: baseColors[1],
accent: baseColors[2],
tapIndicator: TAP_COLORS[theme.tapState],
background: theme.mode === 'dark' ? '#1a1a2e' : '#ffffff',
text: theme.mode === 'dark' ? '#e0e0e0' : '#1a1a2e'
};
}
gay-mcp/SKILL.md - Core color generationcodex-self-rewriting/SKILL.md - Self-modificationglass-bead-game/SKILL.md - Interdisciplinary connectionsdevelopment
BDD-Driven Mathematical Content Verification Skill Combines Behavior-Driven Development with mathematical formula extraction, verification, and transformation using: - Cucumber/Gherkin for specification - RSpec for implementation verification - mathpix-gem for LaTeX/mathematical content extraction - Pattern matching on syntax trees for formula validation Enables iterative discovery and verification of mathematical properties through executable specifications.
tools
Meta-skill that generates domain-specific AI skills from tool documentation
development
Code Query with AI-enhanced deterministic analysis via SplitMix ternary classification
development
Directed Yoneda lemma as directed path induction. Riehl-Shulman's key insight for synthetic ∞-categories.