Crawler Summary

formant answer-first brief

Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- **Role:** Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes: Published capability contract available. No trust telemetry is available yet. Last updated 4/14/2026.

Freshness

Last checked 4/14/2026

Best For

Contract is available with explicit auth and schema references.

Not Ideal For

formant is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.

Evidence Sources Checked

editorial-content, capability-contract, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

formant

Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- **Role:** Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes:

OpenClawself-declared

Public facts

6

Change events

1

Artifacts

0

Freshness

Apr 14, 2026

Verifiededitorial-contentNo verified compatibility signals

Published capability contract available. No trust telemetry is available yet. Last updated 4/14/2026.

Schema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 14, 2026

Vendor

Chriscooning

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

Published capability contract available. No trust telemetry is available yet. Last updated 4/14/2026.

Setup snapshot

git clone https://github.com/chriscooning/formant.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

Chriscooning

profilemedium
Observed Apr 14, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

OpenClaw

contractmedium
Observed Feb 24, 2026Source linkProvenance

Auth modes

api_key, oauth

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 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

3

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

pnpm formant build forms/<name>.json -o forms/<name>.html

json

{
  "id": "form-id",
  "title": "Form Title",
  "fields": [
    { "id": "welcome", "type": "welcome", "title": "Hello!", "buttonText": "Start" },
    { "id": "name", "type": "text", "title": "Your name?", "required": true },
    { "id": "end", "type": "ending", "title": "Thanks!" }
  ],
  "submit": { "destinations": [{ "type": "excel" }] },
  "theme": { "accent": "#6c5ce7", "defaultMode": "auto" }
}

bash

# Build
pnpm formant build <schema.json> [-o output.html] [--no-minify] [--inline]
pnpm formant build forms/<name>.json --local  # form + admin, requires FORMANT_ADMIN_PASSWORD
pnpm formant preview <schema.json>   # build + open in browser

# Deploy (interactive menu)
pnpm formant deploy <form.html>

# Deploy (skip menu)
pnpm formant deploy <form.html> --target offline      # open in browser
pnpm formant deploy <form.html> --target cloudflare   # deploy to Cloudflare (recommended, one command)
pnpm formant deploy <form.html> --target vercel       # deploy to Vercel
pnpm formant deploy <form.html> --target vercel --with-sheets  # Worker + form + admin, Connect Google Sheet

# Local/kiosk: build produces form.html + form-admin.html
export FORMANT_ADMIN_PASSWORD=your-secret
pnpm formant build forms/<name>.json --local

# Google Sheets setup (standalone)
bash scripts/setup-sheets.sh

Docs & README

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

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building. --- **Role:** Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes:

Full README

name: formant description: Generate interactive HTML forms from natural language. Use when the user wants to create a form, survey, questionnaire, registration page, or feedback form. Also use when mentioning Formant, form schemas, or form building.

Role: Claude skill for form generation. Focus: deploy workflow, decision trees, quick reference. When deploy options change, update this file. Schema changes: also update skill/SKILL.md.

Formant — Build Forms from Natural Language

Generate beautiful, one-question-at-a-time HTML forms. Forms are self-contained single HTML files with keyboard navigation, dark/light mode, smooth transitions, and multiple submit destinations.

End-to-End Workflow

  1. Ask what the user wants to collect before generating the schema:
    • Questions and branching logic — what to ask, in what order, any conditional flows
    • Branding / theme"Do you have a website URL I should match for colors and fonts?" If they provide a URL, fetch it, extract the primary/accent color and font family, and add a theme block to the schema. Use theme: { accent, accentHover?, defaultMode: "auto" }.
    • Response collection — where should responses go?
    • Excel download (default, client-side) — works everywhere, no setup
    • Connect Google Sheet (one-click OAuth) — requires Worker + admin; use --with-sheets for Vercel
    • Google Sheets (Apps Script) — requires scripts/setup-sheets.sh
    • Webhook — POST to a URL (Zapier, Slack, custom API)
    • Cloudflare D1 — requires Cloudflare deploy for server-side storage
    • Vercel Postgres — requires Vercel deploy with service-vercel; server-side storage + API key
    • Local (IndexedDB) — form + admin; use pnpm formant build --local for kiosk
    • Always include Excel as a fallback unless the user explicitly opts out.
  2. Generate a valid FormSchema JSON
  3. Save to forms/<name>.json
  4. Build by running:
    pnpm formant build forms/<name>.json -o forms/<name>.html
    
    This produces both forms/<name>.html and forms/<name>.json (schema copy).
  5. Ask the user: "How would you like to host this form?"
    • Share with others — Cloudflare (recommended — one command, database included). Vercel requires manual Postgres setup.
    • Preview / test — Offline or preview
    • Special needs — Vercel + Sheets (Google Sheets), Local (kiosk)
    • Hosting is separate from response collection: Excel and Sheets work on all targets.

Deploy Options

Recommended

Share with others: pnpm formant deploy <form.html> --target cloudflare — one command, database included, no setup. Vercel + Postgres also supported but requires adding a database first (see docs/setup-vercel-postgres.md).

Preview / test locally: pnpm formant deploy <form.html> --target offline or pnpm formant preview <schema.json>.

Full reference

| Target | Best For | Response Collection | Command | |--------|----------|---------------------|---------| | Offline | Testing, internal use, email the file | Excel download on submit | pnpm formant deploy <form.html> --target offline | | Local | Kiosk mode, iPad, no network | IndexedDB (form + admin panel) | pnpm formant build forms/<name>.json --local | | Cloudflare | Production: one command, no setup | D1 + dashboard | pnpm formant deploy <form.html> --target cloudflare | | Vercel | Shareable public URL, no server-side storage | Excel download (or add Google Sheets) | pnpm formant deploy <form.html> --target vercel | | Vercel + Sheets | Connect Google Sheet (one-click OAuth) | Worker + form + admin | pnpm formant deploy <form.html> --target vercel --with-sheets | | Vercel + Postgres | Production: Vercel + server-side storage | Postgres + dashboard | pnpm formant deploy <form.html> --target vercel --with-backend |

Deploy decision tree: Share with others → Cloudflare (recommended). "Deploy to Vercel" → Recommend Cloudflare first; if they insist, use --target vercel --with-backend and point to docs/setup-vercel-postgres.md. Test locally → Offline or preview. Google Sheets → --with-sheets. Kiosk/offline → --local.

When user says "deploy to Vercel": Recommend Cloudflare first: "For the smoothest experience, I recommend Cloudflare — one command, database included. Shall I use that?" If they agree → --target cloudflare. If they insist → --target vercel --with-backend, and tell them: "Vercel requires adding a database first. See docs/setup-vercel-postgres.md for the 3 steps. Run deploy again after completing them."

When Cloudflare deploy fails (D1 creation): The script shows wrangler output and next steps. Suggest: run cd packages/service && pnpm exec wrangler login if needed; enable Workers at the Cloudflare dashboard; or create the D1 database manually and add database_id to packages/service/wrangler.toml. See docs/setup-cloudflare-d1.md.

Use pnpm formant deploy (not pnpm deploy — that's pnpm's built-in). Run without --target for an interactive menu. See docs/deploy-options.md for full details.

Field Type Cheat Sheet

| Type | Purpose | Key Properties | |------|---------|----------------| | welcome | Opening screen | buttonText | | text | Single-line text | placeholder, minLength, maxLength, pattern | | email | Email input | placeholder (auto-validates format) | | number | Numeric input | placeholder, min, max, step | | phone | Phone number | placeholder (loose validation) | | url | URL input | placeholder | | textarea | Multi-line text | placeholder, minLength, maxLength, rows | | choice | Single select cards | options[], allowOther (auto-advances, A-Z keys) | | multi_choice | Multi select cards | options[], minSelections, maxSelections | | rating | Star rating | max (1-10), labels | | scale | Numeric scale (NPS) | min, max (required), minLabel, maxLabel | | yes_no | Binary choice | yesLabel, noLabel (Y/N keys, auto-advances) | | date | Date picker | minDate, maxDate (ISO format) | | dropdown | Dropdown select | options[], searchable (use for 8+ options) | | statement | Info screen, no input | buttonText | | ending | Final screen | showSummary, redirectUrl, redirectLabel |

Schema Structure (Minimal)

{
  "id": "form-id",
  "title": "Form Title",
  "fields": [
    { "id": "welcome", "type": "welcome", "title": "Hello!", "buttonText": "Start" },
    { "id": "name", "type": "text", "title": "Your name?", "required": true },
    { "id": "end", "type": "ending", "title": "Thanks!" }
  ],
  "submit": { "destinations": [{ "type": "excel" }] },
  "theme": { "accent": "#6c5ce7", "defaultMode": "auto" }
}

Response Collection

Ask before generating the schema. Do not default to Excel without asking. Explicitly ask: "Where should responses go?"

| Option | Schema mapping | Notes | |--------|----------------|-------| | Excel download | { "type": "excel" } | Client-side XLSX. Works on all hosting targets. | | CSV download | { "type": "csv" } | Client-side CSV. Lighter than Excel, good for dev. | | Local (IndexedDB) | { "type": "local" } | Kiosk mode. Use pnpm formant build --local for form + admin. | | Connect Google Sheet | { "type": "local" } + Worker + admin | One-click OAuth. Use pnpm formant deploy --target vercel --with-sheets. | | Google Sheets (Apps Script) | { "type": "sheets", "url": "..." } | Requires scripts/setup-sheets.sh | | Webhook | { "type": "webhook", "url": "..." } | POST JSON to any URL | | Cloudflare D1 | { "type": "service", "formId": "...", "endpoint": "..." } | Requires Cloudflare deploy | | Vercel Postgres | { "type": "service", "formId": "...", "endpoint": "https://your-api.vercel.app" } | Deploy service-vercel; POSTGRES_URL required |

Rule: Always include Excel or CSV in submit.destinations unless the user explicitly opts out. Multiple destinations fire in parallel.

Example: "I'll need a few details before building. What questions do you want to ask? Do you have a website URL I should match for branding? And where should responses go — Excel download, Google Sheets, a webhook URL, or Cloudflare D1? I'll include Excel as a fallback unless you prefer otherwise."

Submit Destinations

Multiple destinations fire in parallel. Always include excel or csv as a fallback (except for local/kiosk mode).

  • allowSubmitterDownload (optional): When false, hides the "Download Responses" button on the thank-you screen. Use for kiosk/local forms where the admin exports from the admin panel. Default: true. Set automatically to false when building with --local.

| Type | Required Fields | Notes | |------|-----------------|-------| | excel | -- | Client-side XLSX download. Optional filename. | | csv | -- | Client-side CSV download. Optional filename. Lighter, good for dev. | | local | -- | IndexedDB storage. Use with --local build for form + admin. | | sheets | url | Google Apps Script web app URL | | webhook | url | POST JSON. Optional headers. Retries once on 5xx. | | service | formId | Formant hosting service. Optional endpoint (Cloudflare Workers or Vercel Postgres API URL). |

Branching

Any field can have a next property:

  • Unconditional: "next": "field-id" -- always jump to that field
  • Conditional: "next": { "Happy": "praise", "Unhappy": "complaint", "default": "end" } -- branch on answer value

All branches must eventually reach the ending field.

Validation Checklist (verify before saving)

  1. Every id is unique
  2. At least one field exists
  3. Exactly one ending field, reachable from all paths
  4. All next targets reference valid field ids
  5. choice and dropdown have non-empty options
  6. scale has both min and max
  7. submit.destinations includes at least { "type": "excel" } or { "type": "csv" }
  8. Use descriptive IDs ("satisfaction" not "q3")
  9. Don't use required: true on welcome, statement, or ending

Prefill via URL params

Forms accept pre-filled values from URL query params. Param names match field IDs.

Example: https://example.com/form.html?name=John&email=john@example.com — the name and email fields will be pre-filled when the user reaches them. Useful for links from emails, internal tools, or CRM systems.

Design Guidelines

  • Start with welcome, end with ending
  • Write conversational titles: "What's your email?" not "Email Address:"
  • Use choice for 2-7 options, dropdown for 8+
  • Use statement to break up long forms
  • Keep forms focused: 5-12 questions ideal
  • Add subtitle for context, placeholder for text inputs

CLI Reference

# Build
pnpm formant build <schema.json> [-o output.html] [--no-minify] [--inline]
pnpm formant build forms/<name>.json --local  # form + admin, requires FORMANT_ADMIN_PASSWORD
pnpm formant preview <schema.json>   # build + open in browser

# Deploy (interactive menu)
pnpm formant deploy <form.html>

# Deploy (skip menu)
pnpm formant deploy <form.html> --target offline      # open in browser
pnpm formant deploy <form.html> --target cloudflare   # deploy to Cloudflare (recommended, one command)
pnpm formant deploy <form.html> --target vercel       # deploy to Vercel
pnpm formant deploy <form.html> --target vercel --with-sheets  # Worker + form + admin, Connect Google Sheet

# Local/kiosk: build produces form.html + form-admin.html
export FORMANT_ADMIN_PASSWORD=your-secret
pnpm formant build forms/<name>.json --local

# Google Sheets setup (standalone)
bash scripts/setup-sheets.sh

Full Schema Reference

For complete field property tables, branching rules, submit destination details, theme configuration, and worked examples, see .cursor/skills/formant/schema-reference.md.

Contract & API

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

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

api_key, oauth

Streaming

No

Data region

global

Protocol support

OpenClaw: self-declared

Requires: openclew, lang:typescript

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/chriscooning-formant/snapshot"
curl -s "https://xpersona.co/api/v1/agents/chriscooning-formant/contract"
curl -s "https://xpersona.co/api/v1/agents/chriscooning-formant/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

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 5d 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": "ready",
  "authModes": [
    "api_key",
    "oauth"
  ],
  "requires": [
    "openclew",
    "lang:typescript"
  ],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": "https://github.com/chriscooning/formant#input",
  "outputSchemaRef": "https://github.com/chriscooning/formant#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:45:23.645Z",
  "sourceUpdatedAt": "2026-02-24T19:45:23.645Z",
  "freshnessSeconds": 4428257
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/chriscooning-formant/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/chriscooning-formant/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/chriscooning-formant/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-17T01:49:41.098Z"
    }
  },
  "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"
    },
    {
      "key": "have",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:have|supported|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": "Chriscooning",
    "href": "https://github.com/chriscooning/formant",
    "sourceUrl": "https://github.com/chriscooning/formant",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:26:35.508Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-02-24T19:45:23.645Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "api_key, oauth",
    "href": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:23.645Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/chriscooning/formant#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:23.645Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/chriscooning-formant/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/chriscooning-formant/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 formant and adjacent AI workflows.