Crawler Summary

crayon-ui answer-first brief

Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text. --- name: crayon-ui description: Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text. --- Crayon UI This skill enables you to render responses as interactive UI components using the Crayon UI library. Instead of outputting plain text, you generate structured JSON that gets rende Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

crayon-ui 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

Claim this agent
Agent DossierGitHubSafety: 94/100

crayon-ui

Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text. --- name: crayon-ui description: Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text. --- Crayon UI This skill enables you to render responses as interactive UI components using the Crayon UI library. Instead of outputting plain text, you generate structured JSON that gets rende

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Sumitpore

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/sumitpore/crayon-ui-agent-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Sumitpore

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

curl -s -o /dev/null -w "%{http_code}" http://localhost:5500 2>/dev/null || echo "000"

bash

curl -s -o /dev/null -w "%{http_code}" http://localhost:5500 2>/dev/null || echo "000"

bash

<skill-directory>/scripts/start.sh

bash

<skill-directory>/scripts/validate.sh

text

VALIDATION FAILED

ERROR at components.0.props (MarkDownRenderer): must NOT have additional properties
  FIX: Use "textMarkdown" instead of "markdownString"

ERROR at components.2.props.children.0.props (ListItem): must have required property 'title'
  FIX: Add required prop "title"

text

VALIDATION PASSED
Validated X components successfully.

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text. --- name: crayon-ui description: Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text. --- Crayon UI This skill enables you to render responses as interactive UI components using the Crayon UI library. Instead of outputting plain text, you generate structured JSON that gets rende

Full README

name: crayon-ui description: Render LLM responses as interactive UI using Crayon components. Use when the user wants rich visual output like cards, charts, tables, forms, or any interactive interface instead of plain text.

Crayon UI

This skill enables you to render responses as interactive UI components using the Crayon UI library. Instead of outputting plain text, you generate structured JSON that gets rendered in a live Crayon app.

Before Using This Skill

IMPORTANT: Before writing to the response file, ensure the Crayon server is running.

Step 1: Check if Server is Running

curl -s -o /dev/null -w "%{http_code}" http://localhost:5500 2>/dev/null || echo "000"

If this returns 200, the server is running. If it returns 000 or any other code, start the server.

Step 2: Start Server if Not Running

Run the start script (this will run in the background):

<skill-directory>/scripts/start.sh

Wait a few seconds for the server to initialize, then verify it's running with the curl check above.

Step 3: Remind User to Open Browser

Tell the user to open http://localhost:5500 in their browser if they haven't already.

How It Works

  1. Ensure the Crayon server is running (see above)
  2. Generate a JSON structure describing the UI components
  3. Write the JSON to ~/.crayon/response.json
  4. Validate the JSON by running: <skill-directory>/scripts/validate.sh
  5. If validation fails, fix the errors and repeat from step 3
  6. Only consider complete when validation passes
  7. The Crayon app auto-updates to display the UI

Validation Step (MANDATORY)

After writing to response.json, always validate your output:

<skill-directory>/scripts/validate.sh

If validation fails, you will see specific errors like:

VALIDATION FAILED

ERROR at components.0.props (MarkDownRenderer): must NOT have additional properties
  FIX: Use "textMarkdown" instead of "markdownString"

ERROR at components.2.props.children.0.props (ListItem): must have required property 'title'
  FIX: Add required prop "title"

Fix each error and re-validate until you see:

VALIDATION PASSED
Validated X components successfully.

Quick Start

To render UI, write JSON to the response file:

cat > ~/.crayon/response.json << 'EOF'
{
  "components": [
    {
      "component": "Card",
      "props": {
        "children": [
          {
            "component": "CardHeader",
            "props": { "title": "Hello World" }
          },
          {
            "component": "TextContent",
            "props": { "children": "This is rendered in Crayon!" }
          }
        ]
      }
    }
  ]
}
EOF

JSON Structure

{
  "components": [
    {
      "component": "ComponentName",
      "props": { ... }
    }
  ]
}
  • components: Array of component definitions to render
  • component: Name of the Crayon component (e.g., "Card", "Table", "Charts")
  • props: Props to pass to the component (matches Crayon's API)

Nested Components

Use children prop for composition:

{
  "component": "Card",
  "props": {
    "children": [
      { "component": "CardHeader", "props": { "title": "Title" } },
      { "component": "TextContent", "props": { "children": "Body text" } }
    ]
  }
}

Available Components

The complete JSON Schema for validation is at references/schema.json.

All Components by Category

| Category | Components | |----------|------------| | Layout | Card, CardHeader, Accordion, AccordionItem, AccordionTrigger, AccordionContent, Tabs, TabsList, TabsTrigger, TabsContent, Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext | | Content | TextContent, MarkDownRenderer, CodeBlock, Image | | Data Display | Table, ListBlock, ListItem, Steps | | Charts | BarChart, LineChart, AreaChart, PieChart | | Feedback | Callout, TextCallout, Tag, TagBlock, FollowUpBlock, FollowUpItem, MessageLoading | | Forms | Button, Buttons, Input, TextArea, Select, CheckBoxGroup, CheckBoxItem, RadioGroup, RadioItem, SwitchGroup, SwitchItem, Slider, DatePicker, Label | | Utility | Separator |

Component Props Reference

Layout Components

Card - Container for grouped content

{ "component": "Card", "props": { "children": [ /* nested components */ ] } }

CardHeader - Header with title and optional subtitle

{ "component": "CardHeader", "props": { "title": "Title", "subtitle": "Optional subtitle" } }

Accordion - Collapsible sections

{
  "component": "Accordion",
  "props": {
    "type": "single",
    "collapsible": true,
    "children": [
      {
        "component": "AccordionItem",
        "props": {
          "value": "item-1",
          "children": [
            { "component": "AccordionTrigger", "props": { "text": "Section Title" } },
            { "component": "AccordionContent", "props": { "children": "Content here" } }
          ]
        }
      }
    ]
  }
}

Tabs - Tabbed navigation

{
  "component": "Tabs",
  "props": {
    "defaultValue": "tab1",
    "children": [
      {
        "component": "TabsList",
        "props": {
          "children": [
            { "component": "TabsTrigger", "props": { "value": "tab1", "text": "Tab 1" } },
            { "component": "TabsTrigger", "props": { "value": "tab2", "text": "Tab 2" } }
          ]
        }
      },
      { "component": "TabsContent", "props": { "value": "tab1", "children": "Content 1" } },
      { "component": "TabsContent", "props": { "value": "tab2", "children": "Content 2" } }
    ]
  }
}

Carousel - Scrollable slides

{
  "component": "Carousel",
  "props": {
    "showButtons": true,
    "children": [
      {
        "component": "CarouselContent",
        "props": {
          "children": [
            { "component": "CarouselItem", "props": { "children": "Slide 1" } },
            { "component": "CarouselItem", "props": { "children": "Slide 2" } }
          ]
        }
      },
      { "component": "CarouselPrevious", "props": {} },
      { "component": "CarouselNext", "props": {} }
    ]
  }
}

Content Components

TextContent - Plain text

{ "component": "TextContent", "props": { "children": "Plain text here" } }

MarkDownRenderer - Markdown text (NOTE: use textMarkdown, NOT markdownString)

{ "component": "MarkDownRenderer", "props": { "textMarkdown": "# Heading\n\n**Bold** and *italic*" } }

CodeBlock - Syntax-highlighted code

{ "component": "CodeBlock", "props": { "codeString": "const x = 1;", "language": "javascript", "showLineNumbers": true } }

Image - Display image

{ "component": "Image", "props": { "src": "https://example.com/img.png", "alt": "Description" } }

Data Display Components

Table - Tabular data (NOTE: use accessorKey, NOT key)

{
  "component": "Table",
  "props": {
    "columns": [
      { "header": "Name", "accessorKey": "name" },
      { "header": "Value", "accessorKey": "value" }
    ],
    "data": [
      { "name": "Item 1", "value": 100 },
      { "name": "Item 2", "value": 200 }
    ]
  }
}

ListBlock / ListItem - Lists (NOTE: ListItem uses title, NOT children)

{
  "component": "ListBlock",
  "props": {
    "children": [
      { "component": "ListItem", "props": { "title": "First item", "description": "Optional description" } },
      { "component": "ListItem", "props": { "title": "Second item" } }
    ]
  }
}

Steps - Step-by-step progress

{
  "component": "Steps",
  "props": {
    "steps": [
      { "title": "Step 1", "description": "Do this first" },
      { "title": "Step 2", "description": "Then this" }
    ]
  }
}

Charts

BarChart / LineChart / AreaChart

{
  "component": "BarChart",
  "props": {
    "data": [
      { "name": "A", "value": 10 },
      { "name": "B", "value": 20 }
    ],
    "xKey": "name",
    "yKeys": ["value"]
  }
}

PieChart

{
  "component": "PieChart",
  "props": {
    "data": [
      { "category": "A", "value": 40 },
      { "category": "B", "value": 60 }
    ],
    "categoryKey": "category",
    "dataKey": "value"
  }
}

Feedback Components

Callout - Important notices (variants: neutral, info, warning, error, success)

{ "component": "Callout", "props": { "variant": "info", "title": "Note", "description": "Important info" } }

TextCallout - Highlighted text block

{ "component": "TextCallout", "props": { "title": "Note", "description": "Highlighted info" } }

Tag / TagBlock - Labels

{
  "component": "TagBlock",
  "props": {
    "children": [
      { "component": "Tag", "props": { "text": "Tag 1" } },
      { "component": "Tag", "props": { "text": "Tag 2" } }
    ]
  }
}

FollowUpBlock / FollowUpItem - Suggestions

{
  "component": "FollowUpBlock",
  "props": {
    "children": [
      { "component": "FollowUpItem", "props": { "text": "Tell me more" } },
      { "component": "FollowUpItem", "props": { "text": "Show examples" } }
    ]
  }
}

MessageLoading - Loading indicator

{ "component": "MessageLoading", "props": {} }

Form Components

Button - Clickable button (variants: primary, secondary, outline, ghost)

{ "component": "Button", "props": { "children": "Click Me", "variant": "primary" } }

Buttons - Button group

{
  "component": "Buttons",
  "props": {
    "children": [
      { "component": "Button", "props": { "children": "Save" } },
      { "component": "Button", "props": { "children": "Cancel", "variant": "secondary" } }
    ]
  }
}

Input - Text input

{ "component": "Input", "props": { "placeholder": "Enter text...", "label": "Name" } }

TextArea - Multi-line input

{ "component": "TextArea", "props": { "placeholder": "Enter description...", "rows": 4 } }

Select - Dropdown

{
  "component": "Select",
  "props": {
    "placeholder": "Choose...",
    "options": [
      { "label": "Option 1", "value": "opt1" },
      { "label": "Option 2", "value": "opt2" }
    ]
  }
}

CheckBoxGroup / CheckBoxItem

{
  "component": "CheckBoxGroup",
  "props": {
    "children": [
      { "component": "CheckBoxItem", "props": { "label": "Option A", "value": "a", "description": "Description" } },
      { "component": "CheckBoxItem", "props": { "label": "Option B", "value": "b" } }
    ]
  }
}

RadioGroup / RadioItem

{
  "component": "RadioGroup",
  "props": {
    "children": [
      { "component": "RadioItem", "props": { "label": "Choice 1", "value": "1" } },
      { "component": "RadioItem", "props": { "label": "Choice 2", "value": "2" } }
    ]
  }
}

SwitchGroup / SwitchItem

{
  "component": "SwitchGroup",
  "props": {
    "children": [
      { "component": "SwitchItem", "props": { "label": "Enable feature", "value": "feature" } }
    ]
  }
}

Slider - Range slider

{ "component": "Slider", "props": { "min": 0, "max": 100, "defaultValue": [50] } }

DatePicker - Date selection

{ "component": "DatePicker", "props": { "placeholder": "Select date" } }

Label - Form label

{ "component": "Label", "props": { "children": "Field Label" } }

Utility Components

Separator - Visual divider

{ "component": "Separator", "props": {} }

Examples

Display a Card with Info

cat > ~/.crayon/response.json << 'EOF'
{
  "components": [
    {
      "component": "Card",
      "props": {
        "children": [
          {
            "component": "CardHeader",
            "props": { 
              "title": "Weather Report",
              "subtitle": "San Francisco, CA"
            }
          },
          {
            "component": "TextContent",
            "props": { "children": "Sunny, 72°F with light winds." }
          },
          {
            "component": "TagBlock",
            "props": {
              "children": [
                { "component": "Tag", "props": { "text": "sunny" } },
                { "component": "Tag", "props": { "text": "72°F" } }
              ]
            }
          }
        ]
      }
    }
  ]
}
EOF

Display a Data Table

cat > ~/.crayon/response.json << 'EOF'
{
  "components": [
    {
      "component": "Table",
      "props": {
        "columns": [
          { "header": "Name", "accessorKey": "name" },
          { "header": "Role", "accessorKey": "role" },
          { "header": "Status", "accessorKey": "status" }
        ],
        "data": [
          { "name": "Alice", "role": "Engineer", "status": "Active" },
          { "name": "Bob", "role": "Designer", "status": "Away" }
        ]
      }
    }
  ]
}
EOF

Display a Chart

cat > ~/.crayon/response.json << 'EOF'
{
  "components": [
    {
      "component": "BarChart",
      "props": {
        "data": [
          { "name": "Mon", "value": 12 },
          { "name": "Tue", "value": 19 },
          { "name": "Wed", "value": 8 },
          { "name": "Thu", "value": 15 },
          { "name": "Fri", "value": 22 }
        ],
        "xKey": "name",
        "yKeys": ["value"]
      }
    }
  ]
}
EOF

Available chart types: BarChart, LineChart, AreaChart, PieChart

Display Code

cat > ~/.crayon/response.json << 'EOF'
{
  "components": [
    {
      "component": "CodeBlock",
      "props": {
        "codeString": "function hello() {\n  console.log('Hello, World!');\n}",
        "language": "javascript"
      }
    }
  ]
}
EOF

Multiple Components

cat > ~/.crayon/response.json << 'EOF'
{
  "components": [
    {
      "component": "Callout",
      "props": {
        "variant": "info",
        "title": "Analysis Complete",
        "description": "Found 3 issues in your code."
      }
    },
    {
      "component": "Table",
      "props": {
        "columns": [
          { "header": "File", "accessorKey": "file" },
          { "header": "Issue", "accessorKey": "issue" },
          { "header": "Line", "accessorKey": "line" }
        ],
        "data": [
          { "file": "app.js", "issue": "Unused variable", "line": 42 },
          { "file": "utils.js", "issue": "Missing semicolon", "line": 15 },
          { "file": "index.js", "issue": "Deprecated API", "line": 8 }
        ]
      }
    }
  ]
}
EOF

Best Practices

  1. Always check if the server is running first - Use curl -s -o /dev/null -w "%{http_code}" http://localhost:5500 to check. If not running, execute <skill-directory>/scripts/start.sh
  2. Wait for server to be ready - After starting, wait a few seconds and verify with curl before writing to response.json
  3. Always validate after writing - Run <skill-directory>/scripts/validate.sh to catch schema errors before considering the task complete
  4. Use appropriate components for the data type (Table for tabular, Charts for trends, Cards for entities)
  5. Compose with children to build complex layouts
  6. Refer to the props reference above for exact prop names - the validator will catch mistakes

Common Schema Mistakes to Avoid

| Component | Wrong | Correct | |-----------|-------|---------| | MarkDownRenderer | markdownString, markdown, content | textMarkdown | | ListItem | children: "text" | title: "text" (+ optional description) | | ListBlock | ordered: true | Remove ordered (not supported) | | CodeBlock | code, lang | codeString, language | | Table columns | key | accessorKey | | Callout | message, type | description, variant |

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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/sumitpore-crayon-ui-agent-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-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-17T03:28:58.413Z"
    }
  },
  "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": "Sumitpore",
    "href": "https://github.com/sumitpore/crayon-ui-agent-skill",
    "sourceUrl": "https://github.com/sumitpore/crayon-ui-agent-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:16:27.196Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T02:16:27.196Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/sumitpore-crayon-ui-agent-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 crayon-ui and adjacent AI workflows.