workstation-layout-designer
Workstation and workspace layout design skill with ergonomic optimization.
What this skill does
# workstation-layout-designer
You are **workstation-layout-designer** - a specialized skill for designing ergonomic workstations and workspace layouts.
## Overview
This skill enables AI-powered workstation design including:
- Work zone layout (primary, secondary, tertiary)
- Tool and material placement optimization
- Visual field considerations
- Lighting and visibility analysis
- Work surface height recommendations
- Seated vs standing workstation design
- Adjustable workstation specification
- Layout drawing generation
## Capabilities
### 1. Work Zone Layout Design
```python
from dataclasses import dataclass
from typing import List, Dict
import math
@dataclass
class WorkItem:
name: str
frequency: str # "continuous", "frequent", "occasional", "rare"
size: tuple # (width, depth, height) in inches
weight: float # lbs
requires_precision: bool = False
def design_work_zones(forward_reach: float, shoulder_width: float):
"""
Design work zone layout based on anthropometric data
"""
zones = {
"primary": {
"description": "Most frequent use - within easy reach",
"radius": forward_reach * 0.4,
"arc": 30, # degrees from centerline
"height_optimal": "elbow height +/- 4 inches",
"items": "Continuous and frequent use items"
},
"secondary": {
"description": "Occasional use - within normal reach",
"radius": forward_reach * 0.65,
"arc": 60,
"height_optimal": "shoulder to elbow height",
"items": "Occasional use items"
},
"tertiary": {
"description": "Infrequent use - maximum reach",
"radius": forward_reach * 0.9,
"arc": 90,
"height_optimal": "any comfortable height",
"items": "Rarely used items"
},
"storage": {
"description": "Storage only - outside normal work",
"radius": forward_reach * 1.2,
"arc": 180,
"height_optimal": "not critical",
"items": "Storage, rarely accessed"
}
}
return zones
def assign_items_to_zones(items: List[WorkItem], zones: dict):
"""
Assign work items to appropriate zones
"""
assignments = {zone: [] for zone in zones}
for item in items:
if item.frequency == "continuous":
assignments["primary"].append(item)
elif item.frequency == "frequent":
assignments["primary"].append(item) if item.requires_precision else \
assignments["secondary"].append(item)
elif item.frequency == "occasional":
assignments["secondary"].append(item)
else:
assignments["tertiary"].append(item)
return assignments
```
### 2. Tool and Material Placement
```python
def optimize_tool_placement(tools: List[WorkItem], work_area_width: float,
work_area_depth: float, dominant_hand: str = "right"):
"""
Optimize placement of tools in work area
"""
placements = []
# Sort by frequency
sorted_tools = sorted(tools,
key=lambda t: ["continuous", "frequent", "occasional", "rare"].index(t.frequency))
# Primary zone dimensions
primary_width = work_area_width * 0.4
primary_depth = work_area_depth * 0.3
x_position = 0 if dominant_hand == "right" else work_area_width
direction = 1 if dominant_hand == "right" else -1
current_x = work_area_width / 2
current_y = work_area_depth * 0.2 # Near front edge
for tool in sorted_tools:
if tool.frequency in ["continuous", "frequent"]:
# Place in primary zone
zone = "primary"
y = current_y
x = current_x
current_x += (tool.size[0] + 2) * direction # Add spacing
elif tool.frequency == "occasional":
# Place in secondary zone
zone = "secondary"
y = work_area_depth * 0.5
x = current_x
else:
# Place in tertiary zone
zone = "tertiary"
y = work_area_depth * 0.8
x = current_x
placements.append({
"item": tool.name,
"x": round(x, 1),
"y": round(y, 1),
"zone": zone,
"orientation": "handle toward user" if tool.weight > 2 else "any"
})
return placements
```
### 3. Visual Field Design
```python
def design_visual_layout(viewing_distance: float, task_type: str):
"""
Design layout considering visual requirements
task_type: "precision", "inspection", "monitoring", "general"
"""
visual_specs = {
"precision": {
"viewing_distance_inches": (10, 16),
"viewing_angle_down": (15, 35),
"illumination_lux": (500, 1000),
"display_tilt": "15-20 degrees toward user",
"notes": "May require task lighting and magnification"
},
"inspection": {
"viewing_distance_inches": (14, 20),
"viewing_angle_down": (15, 30),
"illumination_lux": (750, 1500),
"display_tilt": "Perpendicular to line of sight",
"notes": "Avoid glare on inspected surfaces"
},
"monitoring": {
"viewing_distance_inches": (20, 28),
"viewing_angle_down": (0, 20),
"illumination_lux": (300, 500),
"display_tilt": "Top tilted slightly away",
"notes": "Displays within 30 degrees of center"
},
"general": {
"viewing_distance_inches": (16, 24),
"viewing_angle_down": (0, 30),
"illumination_lux": (300, 500),
"display_tilt": "Adjustable",
"notes": "Standard office requirements"
}
}
specs = visual_specs.get(task_type, visual_specs["general"])
# Visual cone calculations
visual_cone = {
"optimal_cone": 15, # degrees - best visual acuity
"comfortable_cone": 30, # degrees - comfortable viewing
"maximum_cone": 60 # degrees - peripheral detection only
}
return {
"specifications": specs,
"visual_cone": visual_cone,
"layout_guidance": generate_visual_layout_guidance(specs, visual_cone)
}
def generate_visual_layout_guidance(specs, cone):
"""Generate specific layout guidance"""
return [
f"Primary displays within {cone['optimal_cone']}° of centerline",
f"Secondary displays within {cone['comfortable_cone']}° of centerline",
f"Viewing distance: {specs['viewing_distance_inches'][0]}-{specs['viewing_distance_inches'][1]} inches",
f"Display tilt: {specs['display_tilt']}",
f"Illumination: {specs['illumination_lux'][0]}-{specs['illumination_lux'][1]} lux"
]
```
### 4. Seated vs Standing Workstation
```python
def design_workstation(task_characteristics: dict, duration_hours: float):
"""
Design workstation based on task and duration
task_characteristics:
- precision_required: bool
- force_required: bool
- mobility_required: bool
- visual_demands: str ("high", "medium", "low")
"""
recommendations = {
"posture": None,
"work_surface_height": None,
"chair_specifications": None,
"standing_mat": False,
"sit_stand_option": False
}
# Determine posture
if task_characteristics.get('precision_required') and duration_hours > 2:
recommendations["posture"] = "seated"
recommendations["reason"] = "Precision work benefits from stable seated posture"
elif task_characteristics.get('force_required'):
recommendations["posture"] = "standing"
recommendations["reason"] = "Force tasks benefit from standing to use body weight"
elif task_characteristics.get('mobility_required'):
recommendations["posture"] = "standing"
recommendations["reason"] = "MobiliRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.