Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Hand-drawn / sketchy UI component system built on Rough.js + Wired Elements + Rough Notation. Use when user mentions: hand-drawn style, sketchy, doodle style, wired elements, rough.js, hand-drawn icons, sketch style, wireframe style, 手绘风格, 素描风格, 手绘图标, 涂鸦风格. --- name: sketchy-ui-skill description: "Hand-drawn / sketchy UI component system built on Rough.js + Wired Elements + Rough Notation. Use when user mentions: hand-drawn style, sketchy, doodle style, wired elements, rough.js, hand-drawn icons, sketch style, wireframe style, 手绘风格, 素描风格, 手绘图标, 涂鸦风格." --- Sketchy UI Skill A complete hand-drawn / sketchy style UI component system for React + TypeScript projects. Provides Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
sketchy-ui-skill is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Hand-drawn / sketchy UI component system built on Rough.js + Wired Elements + Rough Notation. Use when user mentions: hand-drawn style, sketchy, doodle style, wired elements, rough.js, hand-drawn icons, sketch style, wireframe style, 手绘风格, 素描风格, 手绘图标, 涂鸦风格. --- name: sketchy-ui-skill description: "Hand-drawn / sketchy UI component system built on Rough.js + Wired Elements + Rough Notation. Use when user mentions: hand-drawn style, sketchy, doodle style, wired elements, rough.js, hand-drawn icons, sketch style, wireframe style, 手绘风格, 素描风格, 手绘图标, 涂鸦风格." --- Sketchy UI Skill A complete hand-drawn / sketchy style UI component system for React + TypeScript projects. Provides
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Taoweiy431 Boop
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/taoweiy431-boop/sketchy-ui-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Taoweiy431 Boop
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
npm install roughjs rough-notation wired-elements # Optional: for 1500+ icon conversion npm install lucide-react
tsx
import { SketchyIcon, SketchyCard, LucideToSketchy } from './components/sketchy';tsx
import { SketchyIcon } from './components/sketchy';
// Use built-in icon by name
<SketchyIcon name="rocket" size={48} stroke="#D4735E" fill="#D4735E" />
// Use custom SVG path
<SketchyIcon path="M12 2l3.09 6.26L22 9.27..." size={48} stroke="#333" />tsx
import { SketchyShape } from './components/sketchy';
<SketchyShape shape="circle" width={100} height={100} fill="#D4735E" fillStyle="solid" />
<SketchyShape shape="rectangle" width={120} height={80} fill="#6366f1" />tsx
import { SketchyCard } from './components/sketchy';
<SketchyCard width={240} height={200} stroke="#333" roughness={1.5}>
<SketchyIcon name="star" size={40} fill="#eab308" />
<h3>Card Title</h3>
<p>Card description</p>
</SketchyCard>tsx
<SketchyDivider width={600} stroke="#ddd" roughness={1.5} />Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Hand-drawn / sketchy UI component system built on Rough.js + Wired Elements + Rough Notation. Use when user mentions: hand-drawn style, sketchy, doodle style, wired elements, rough.js, hand-drawn icons, sketch style, wireframe style, 手绘风格, 素描风格, 手绘图标, 涂鸦风格. --- name: sketchy-ui-skill description: "Hand-drawn / sketchy UI component system built on Rough.js + Wired Elements + Rough Notation. Use when user mentions: hand-drawn style, sketchy, doodle style, wired elements, rough.js, hand-drawn icons, sketch style, wireframe style, 手绘风格, 素描风格, 手绘图标, 涂鸦风格." --- Sketchy UI Skill A complete hand-drawn / sketchy style UI component system for React + TypeScript projects. Provides
A complete hand-drawn / sketchy style UI component system for React + TypeScript projects. Provides 7 ready-to-use components, 30+ built-in icons, and 3 methods to create custom icons -- all without any drawing ability.
Activate this skill when the user:
npm install roughjs rough-notation wired-elements
# Optional: for 1500+ icon conversion
npm install lucide-react
Copy all files from the templates/ directory in this skill into the user's project:
templates/components/*.tsx -> src/components/sketchy/templates/icons/paths.ts -> src/components/sketchy/icons/import { SketchyIcon, SketchyCard, LucideToSketchy } from './components/sketchy';
Renders any SVG path data as a hand-drawn icon using Rough.js.
import { SketchyIcon } from './components/sketchy';
// Use built-in icon by name
<SketchyIcon name="rocket" size={48} stroke="#D4735E" fill="#D4735E" />
// Use custom SVG path
<SketchyIcon path="M12 2l3.09 6.26L22 9.27..." size={48} stroke="#333" />
Props: | Prop | Type | Default | Description | |------|------|---------|-------------| | name | IconName | - | Built-in icon name (see icon list below) | | path | string | - | Custom SVG path data (overrides name) | | size | number | 48 | Icon size in px | | stroke | string | '#333333' | Line color | | strokeWidth | number | 1.5 | Line thickness | | fill | string | 'none' | Fill color | | fillStyle | string | 'solid' | Fill pattern: hachure, solid, zigzag, cross-hatch, dots, sunburst, dashed | | roughness | number | 1 | Hand-drawn intensity (0=smooth, 3=very rough) | | bowing | number | 1 | Line curvature | | viewBox | number | 24 | SVG viewBox size |
import { SketchyShape } from './components/sketchy';
<SketchyShape shape="circle" width={100} height={100} fill="#D4735E" fillStyle="solid" />
<SketchyShape shape="rectangle" width={120} height={80} fill="#6366f1" />
Props: | Prop | Type | Default | Description | |------|------|---------|-------------| | shape | 'circle' | 'rectangle' | 'ellipse' | 'line' | - | Shape type | | width | number | 100 | Canvas width | | height | number | 100 | Canvas height | | stroke | string | '#333333' | Line color | | fill | string | - | Fill color | | fillStyle | string | 'hachure' | Fill pattern (7 options) | | roughness | number | 1.5 | Hand-drawn intensity |
import { SketchyCard } from './components/sketchy';
<SketchyCard width={240} height={200} stroke="#333" roughness={1.5}>
<SketchyIcon name="star" size={40} fill="#eab308" />
<h3>Card Title</h3>
<p>Card description</p>
</SketchyCard>
Props: | Prop | Type | Default | Description | |------|------|---------|-------------| | children | ReactNode | - | Card content | | width | number | 280 | Card width | | height | number | 200 | Card height | | stroke | string | '#333' | Border color | | fill | string | '#fff' | Background fill | | roughness | number | 1.2 | Hand-drawn intensity | | padding | number | 24 | Content padding |
<SketchyDivider width={600} stroke="#ddd" roughness={1.5} />
7 annotation types powered by Rough Notation.
import { SketchyAnnotation } from './components/sketchy';
<SketchyAnnotation type="highlight" color="#fde68a">Highlighted text</SketchyAnnotation>
<SketchyAnnotation type="underline" color="#D4735E">Underlined text</SketchyAnnotation>
<SketchyAnnotation type="circle" color="#10b981">Circled text</SketchyAnnotation>
<SketchyAnnotation type="box" color="#6366f1">Boxed text</SketchyAnnotation>
<SketchyAnnotation type="strike-through" color="#ef4444">Struck text</SketchyAnnotation>
<SketchyAnnotation type="crossed-off" color="#ef4444">Crossed text</SketchyAnnotation>
<SketchyAnnotation type="bracket" color="#D4735E">Bracketed text</SketchyAnnotation>
Converts any of 1500+ Lucide React icons to hand-drawn style. Requires lucide-react.
import { Rocket, Heart, Globe } from 'lucide-react';
import { LucideToSketchy } from './components/sketchy';
<LucideToSketchy icon={Rocket} size={48} stroke="#D4735E" />
<LucideToSketchy icon={Heart} size={48} stroke="#ef4444" fill="#fecaca" roughness={1.5} />
How it works: Renders the Lucide icon in a hidden container, extracts all SVG elements (path, circle, rect, line, polyline, polygon, ellipse), and re-draws them with Rough.js.
Compose icons from drawing commands like building blocks.
import { SketchyCompose } from './components/sketchy';
<SketchyCompose
width={80}
height={80}
commands={[
{ type: 'circle', cx: 40, cy: 40, diameter: 60, options: { stroke: '#333' } },
{ type: 'circle', cx: 40, cy: 40, diameter: 18, options: { fill: '#D4735E', fillStyle: 'solid' } },
]}
/>
Available command types:
circle: { cx, cy, diameter }rectangle: { x, y, w, h }ellipse: { cx, cy, w, h }line: { x1, y1, x2, y2 }arc: { x, y, w, h, start, stop, closed? }polygon: { points: [number, number][] }path: { d: string } (SVG path data)linearPath: { points: [number, number][] }Each command accepts an options object to override stroke, fill, roughness, etc.
7 preset composed icons available: wifi, target, battery, chatBubble, mapPin, sun, trophy.
import { SketchyCompose, presetIcons } from './components/sketchy';
<SketchyCompose commands={presetIcons.wifi} width={80} height={80} />
Available icon names for <SketchyIcon name="...">:
Common: search, settings, lightbulb, document Actions: home, user, heart, star, mail, phone Media: image, camera, music Tools: code, terminal, database, cloud, lock, rocket Arrows: arrowRight, arrowLeft, arrowUp, arrowDown Status: check, x, alertCircle, info, bell Business: shoppingCart, dollarSign, barChart, trendingUp, zap, gift
import { Wifi } from 'lucide-react';
<LucideToSketchy icon={Wifi} size={48} stroke="#333" />
Just import any icon from lucide-react and pass it in. All 1500+ Lucide icons work.
Combine basic shapes with code:
const myIcon = [
{ type: 'circle', cx: 40, cy: 40, diameter: 50, options: { stroke: '#333' } },
{ type: 'line', x1: 25, y1: 40, x2: 55, y2: 40, options: { stroke: '#D4735E', strokeWidth: 3 } },
{ type: 'line', x1: 40, y1: 25, x2: 40, y2: 55, options: { stroke: '#D4735E', strokeWidth: 3 } },
];
<SketchyCompose commands={myIcon} width={80} height={80} />
Copy the d attribute from any SVG icon (Heroicons, Tabler, Feather, etc.) and pass it to SketchyIcon:
// From https://heroicons.com or https://lucide.dev, copy the path's d attribute
<SketchyIcon
path="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"
size={48}
stroke="#D4735E"
fill="#D4735E"
/>
#D4735E (warm coral / terracotta)#333333#6366f1 (indigo), #10b981 (emerald), #f59e0b (amber), #ec4899 (pink)| Value | Effect | Use Case | |-------|--------|----------| | 0 | Perfectly smooth | Subtle hand-drawn hint | | 0.5-1 | Slight wobble | Clean hand-drawn look | | 1-1.5 | Noticeably hand-drawn | Default recommended | | 2-3 | Very rough/sketchy | Bold doodle aesthetic |
7 fill styles available: hachure (default diagonal lines), solid, zigzag, cross-hatch, dots, sunburst, dashed.
For hand-drawn form controls, use Wired Elements directly:
npm install wired-elements
import 'wired-elements';
<wired-button>Click me</wired-button>
<wired-input placeholder="Type here..." />
<wired-card elevation={2}>Content</wired-card>
<wired-checkbox>Option</wired-checkbox>
<wired-toggle />
<wired-slider value={50} />
Available: wired-button, wired-input, wired-textarea, wired-checkbox, wired-radio, wired-slider, wired-toggle, wired-card, wired-divider, wired-search-input, wired-link, wired-dialog, wired-calendar, wired-image, wired-video.
Required:
roughjs -- Core hand-drawn rendering enginerough-notation -- Text annotation effectsOptional:
wired-elements -- Hand-drawn form controls (buttons, inputs, etc.)lucide-react -- 1500+ icons for LucideToSketchy conversionMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:48:02.881Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Taoweiy431 Boop",
"href": "https://github.com/taoweiy431-boop/sketchy-ui-skill",
"sourceUrl": "https://github.com/taoweiy431-boop/sketchy-ui-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:28:42.458Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:28:42.458Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/taoweiy431-boop-sketchy-ui-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to sketchy-ui-skill and adjacent AI workflows.