Install
openclaw skills install proto-cogAI UI prototyping powered by CellCog. Interactive HTML prototypes, wireframes, app mockups, landing pages, mobile screens, SaaS dashboards, design systems, user flows. From description to clickable prototype in one prompt.
openclaw skills install proto-cogBuild prototypes you can click. UI/UX wireframes, app mockups, and fully interactive HTML prototypes — from napkin sketch to clickable experience in one prompt.
Every other AI design tool gives you static images. CellCog builds working prototypes — real HTML, real interactions, real user flows you can click through and share with stakeholders. Landing pages, mobile app screens, SaaS dashboards, design systems — prototyped and playable, not just pretty.
For your first CellCog task in a session, read the cellcog skill for the full SDK reference — file handling, chat modes, timeouts, and more.
OpenClaw (fire-and-forget):
result = client.create_chat(
prompt="[your task prompt]",
notify_session_key="agent:main:main",
task_label="my-task",
chat_mode="agent",
)
All agents except OpenClaw (blocks until done):
from cellcog import CellCogClient
client = CellCogClient(agent_provider="openclaw|cursor|claude-code|codex|...")
result = client.create_chat(
prompt="[your task prompt]",
task_label="my-task",
chat_mode="agent",
)
print(result["message"])
Static mockups create a fundamental gap: stakeholders see pictures, not experiences. The difference matters:
| Static Mockup | Interactive Prototype |
|---|---|
| "Imagine clicking this button" | Click the button, see what happens |
| "This would scroll to..." | Scroll and see the content load |
| "The hover state looks like..." | Hover and watch the animation |
| "Trust me, the flow makes sense" | Walk through the flow yourself |
CellCog generates real HTML/CSS/JS prototypes hosted on live URLs. Share a link, get feedback on the actual experience — not on someone's imagination of the experience.
Validate your messaging and design:
Example prompt:
"Create an interactive landing page prototype for 'FlowState' — a productivity app for developers:
Sections:
- Hero: 'Code in the zone. Stay in the zone.' with app screenshot and CTA
- Problem: Distractions kill developer flow (statistics)
- Solution: How FlowState blocks distractions intelligently
- Features: 3-4 key features with icons
- Pricing: Free, Pro ($12/mo), Team ($8/user/mo)
- Testimonials: 3 developer quotes
- Final CTA
Style: Dark theme, developer-friendly, monospace accents Make all buttons and navigation interactive."
Design full app experiences:
Example prompt:
"Prototype a mobile food delivery app (phone-sized viewport):
Screens:
- Home — restaurant grid with search and category filters
- Restaurant — menu with items, ratings, delivery time
- Item detail — customization options, add to cart
- Cart — order summary, delivery address, payment
- Order tracking — live status with map placeholder
Make navigation between screens work with smooth transitions. Style: Clean, modern, Uber Eats / DoorDash inspired."
Prototype complex business tools:
Example prompt:
"Prototype a SaaS project management dashboard:
Left sidebar: Navigation (Projects, Tasks, Team, Reports, Settings) Main area:
- Overview: KPI cards (tasks completed, overdue, in progress)
- Kanban board: Columns for To Do, In Progress, Review, Done
- Task cards with assignee avatars, priority tags, due dates
Interactions:
- Sidebar navigation switches views
- Clicking a task card opens a detail modal
- Filter dropdown for project/team member
Style: Clean, professional, Notion/Linear inspired."
Build reusable design foundations:
Quick structural explorations:
CellCog prototypes can include:
| Feature | Description |
|---|---|
| Navigation | Working links, page transitions, tab switching |
| Interactions | Hover states, click actions, toggles, accordions |
| Forms | Input fields, validation states, dropdowns, checkboxes |
| Modals & Overlays | Popup dialogs, slide-out panels, tooltips |
| Responsive Design | Adapts to desktop, tablet, and mobile viewports |
| Animations | Smooth transitions, loading states, micro-interactions |
| Data Display | Charts, tables, cards with realistic sample data |
| Dark/Light Themes | Theme switching support |
| Format | Best For |
|---|---|
| Interactive HTML (Default) | Clickable prototypes hosted on live URL — share with anyone |
| Static Images | Screenshots for documentation or comparison |
| Wireframe documentation for handoff |
Interactive HTML is the default. That's the whole point — prototypes you can click.
| Scenario | Recommended Mode |
|---|---|
| Individual pages, single components, wireframes | "agent" |
| Full app prototypes with multiple interconnected screens, design systems | "agent team" |
Use "agent" for most prototypes. Landing pages, individual app screens, and component designs execute well in agent mode.
Use "agent team" for full application prototypes — multi-screen apps where navigation, state, and user flows need to work together cohesively.
SaaS landing page:
"Create a landing page for 'CodeReview.ai' — an AI code review tool:
Hero: 'Ship better code. Ship it faster.' with demo video placeholder Social proof: 'Trusted by 500+ engineering teams' Features: AI-powered reviews, integration with GitHub/GitLab, security scanning Pricing: Starter (free), Pro ($29/mo), Enterprise (custom)
Dark theme, developer-focused, green accent color. All navigation and CTAs should be interactive."
Mobile app prototype:
"Prototype a habit tracking app (mobile viewport):
Tab bar: Today, Habits, Stats, Profile
Today screen: List of today's habits with checkboxes, streak counts, and progress ring Habits screen: All habits with edit/delete, add new habit button Stats screen: Charts showing completion rates, longest streaks, weekly/monthly view Profile screen: Settings, notification preferences, export data
Tab navigation should work. Checking habits should animate. Style: Minimal, calming, inspired by Streaks app."
Design system:
"Build an interactive design system for a fintech startup:
Colors: Primary (deep blue), secondary (teal), accent (amber), semantic (success/warning/error) Typography: Scale from h1 to body to caption with clear hierarchy Components:
- Buttons (primary, secondary, ghost, destructive — each with hover/active/disabled states)
- Input fields (default, focused, error, disabled)
- Cards (simple, interactive, stat card)
- Table with sortable headers
- Modal dialog
- Toast notifications
Show each component with interactive states. Professional, banking-grade aesthetic."
Wireframe exploration:
"Create 3 different layout approaches for an AI chatbot interface:
Option A: Full-page chat (like ChatGPT) Option B: Side panel chat with main content area Option C: Floating chat widget
Each should include: message input, conversation history, suggested prompts, and settings access. Grayscale wireframes, focused on layout and information hierarchy."
Describe the interactions: "Button opens a modal" or "Tabs switch content" — tell CellCog what should happen, not just what should appear.
Reference existing products: "Like Notion's sidebar" or "Stripe's pricing page" communicates more than paragraphs of description.
Specify viewport: "Mobile phone viewport" vs "Full desktop" changes the entire design approach.
Include realistic content: Real text, real numbers, real labels — not "Lorem ipsum". Prototypes with real content get better feedback.
State the purpose: "For user testing", "For investor demo", "For developer handoff" — context shapes fidelity level.
Think in flows, not pages: "Signup → Onboarding → Dashboard" is more useful than 3 disconnected page requests.
Run /cellcog-setup (or /cellcog:cellcog-setup depending on your tool) to install and authenticate.
OpenClaw users: Run clawhub install cellcog instead.
Manual setup: pip install -U cellcog and set CELLCOG_API_KEY. See the cellcog skill for SDK reference.