Back to list
multicam

design-implementation

by multicam

File system based context manager

2🍴 0📅 Jan 21, 2026

SKILL.md


name: design-implementation context: fork description: | Streamlined UI development workflow with single-command feature implementation. Automates: dev server, browser, verification, error fixing, iteration loop.

Core Command: "implement next feature" or "implement [feature description]"

What It Does:

  1. Starts dev server (auto-detects port from package.json)
  2. Launches browser (visible by default, --headless available)
  3. Implements feature via frontend-design skill
  4. Verifies: console errors, TS errors, network failures, visual match
  5. Fixes iteratively (max 5 iterations)
  6. Reports completion or escalates with detailed report

Triggers:

  • "implement next feature", "implement the hero section"
  • "verify this implementation", "check the UI"
  • "fix the errors", "iterate on this"
  • "start dev server", "manage server"

Workflow Routing

IntentWorkflow
"implement feature", "build the X"workflows/implement-feature.md
"verify", "check", "screenshot"workflows/verify-visual.md
"fix errors", "fix the issues"workflows/fix-errors.md
"start server", "stop server"workflows/manage-server.md
"test interactions", "click test"workflows/test-interactions.md

Quick Start

# Basic usage
"implement the login form based on the Figma design"

# With specific file
"implement the feature described in thoughts/features/hero-section.md"

# Headless mode (CI/testing)
"implement next feature --headless"

# Just verify current state
"verify the current implementation"

Configuration

Edit config.json in this skill directory:

{
  "browser": {
    "headless": false,
    "viewport": { "width": 1280, "height": 720 }
  },
  "server": {
    "port": "auto",
    "startCommand": "auto",
    "hmrDelay": 2000
  },
  "iteration": {
    "maxIterations": 5,
    "layoutTolerance": 0.95
  },
  "figma": {
    "enabled": true
  }
}

Tools

ToolPurpose
tools/playwright-runner.tsBrowser automation (screenshot, console, network)
tools/server-manager.tsDev server lifecycle (start, stop, detect port)

State Tracking

state.json tracks current feature progress:

{
  "currentFeature": "hero-section",
  "iteration": 2,
  "status": "fixing",
  "errors": ["console: Failed to load image"],
  "lastScreenshot": "history/hero-section/iteration-2.png"
}

Integration

Skill/AgentWhen Used
frontend-designInitial implementation
engineer agentEscalate complex bugs
design-iterator agentMultiple visual refinements

History

Each feature creates artifacts in history/{feature-id}/:

  • spec.md - Original feature specification
  • iteration-{n}.png - Screenshots per iteration
  • figma-reference.png - Design reference (if Figma link provided)
  • errors.log - Captured errors
  • report.md - Final completion report

Note: history/ is gitignored.

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon