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
Manage Notes, Tasks, Calendar, Files, and Contacts in your Nextcloud instance via CalDAV, WebDAV, and Notes API. Use for creating notes, managing todos and calendar events, uploading/downloading files, and managing contacts. --- name: openclaw-nextcloud description: Manage Notes, Tasks, Calendar, Files, and Contacts in your Nextcloud instance via CalDAV, WebDAV, and Notes API. Use for creating notes, managing todos and calendar events, uploading/downloading files, and managing contacts. license: MIT compatibility: Requires Node.js 20+. Needs network access to Nextcloud instance. allowed-tools: Bash Read --- OpenClaw Nextcloud Skill This Capability contract not published. No trust telemetry is available yet. 6 GitHub stars reported by the source. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
openclaw-nextcloud is best for always, access 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
Manage Notes, Tasks, Calendar, Files, and Contacts in your Nextcloud instance via CalDAV, WebDAV, and Notes API. Use for creating notes, managing todos and calendar events, uploading/downloading files, and managing contacts. --- name: openclaw-nextcloud description: Manage Notes, Tasks, Calendar, Files, and Contacts in your Nextcloud instance via CalDAV, WebDAV, and Notes API. Use for creating notes, managing todos and calendar events, uploading/downloading files, and managing contacts. license: MIT compatibility: Requires Node.js 20+. Needs network access to Nextcloud instance. allowed-tools: Bash Read --- OpenClaw Nextcloud Skill This
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. 6 GitHub stars reported by the source. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Keithvassallomt
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. 6 GitHub stars reported by the source. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/keithvassallomt/openclaw-nextcloud.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
Keithvassallomt
Protocol compatibility
OpenClaw
Adoption signal
6 GitHub stars
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
node scripts/nextcloud.js <command> <subcommand> [options]
json
{
"status": "success",
"data": [
{
"uid": "unique-task-id",
"calendar": "Calendar Name",
"summary": "Task title",
"status": "NEEDS-ACTION",
"due": "20260201T153000Z",
"priority": 0
}
]
}json
{
"status": "success",
"data": [
{
"uid": "unique-event-id",
"calendar": "Calendar Name",
"summary": "Event title",
"start": "20260205T100000Z",
"end": "20260205T110000Z"
}
]
}json
{
"status": "success",
"data": [
{
"uid": "unique-contact-id",
"addressBook": "Address Book Name",
"fullName": "John Doe",
"name": "Doe;John;;;",
"phones": ["+1234567890"],
"emails": ["john@example.com"],
"organization": "ACME Inc",
"title": "Developer",
"note": "Met at conference"
}
]
}json
{
"status": "success",
"data": [ ... ]
}json
{
"status": "error",
"message": "Error description"
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Manage Notes, Tasks, Calendar, Files, and Contacts in your Nextcloud instance via CalDAV, WebDAV, and Notes API. Use for creating notes, managing todos and calendar events, uploading/downloading files, and managing contacts. --- name: openclaw-nextcloud description: Manage Notes, Tasks, Calendar, Files, and Contacts in your Nextcloud instance via CalDAV, WebDAV, and Notes API. Use for creating notes, managing todos and calendar events, uploading/downloading files, and managing contacts. license: MIT compatibility: Requires Node.js 20+. Needs network access to Nextcloud instance. allowed-tools: Bash Read --- OpenClaw Nextcloud Skill This
This skill provides integration with a Nextcloud instance. It supports access to Notes, Tasks (Todos), Calendars, Files, and Contacts.
The skill requires the following environment variables:
NEXTCLOUD_URL: The base URL of your Nextcloud instance (e.g., https://cloud.example.com).NEXTCLOUD_USER: Your Nextcloud username.NEXTCLOUD_TOKEN: An App Password (recommended) or your login password.index.php/apps/notes/api/v1/notesRun the skill via the bundled script.
node scripts/nextcloud.js <command> <subcommand> [options]
notes listnotes get --id <id>notes create --title <t> --content <c> [--category <cat>]notes edit --id <id> [--title <t>] [--content <c>] [--category <cat>]notes delete --id <id>tasks list [--calendar <c>]tasks create --title <t> [--calendar <c>] [--due <d>] [--priority <p>] [--description <d>]tasks edit --uid <u> [--calendar <c>] [--title <t>] [--due <d>] [--priority <p>] [--description <d>]tasks delete --uid <u> [--calendar <c>]tasks complete --uid <u> [--calendar <c>]calendar list [--from <iso>] [--to <iso>] (Defaults to next 7 days)calendar create --summary <s> --start <iso> --end <iso> [--calendar <c>] [--description <d>]calendar edit --uid <u> [--calendar <c>] [--summary <s>] [--start <iso>] [--end <iso>] [--description <d>]calendar delete --uid <u> [--calendar <c>]calendars list [--type <tasks|events>]files list [--path <path>]files search --query <q>files get --path <path> (download file content)files upload --path <path> --content <content>files delete --path <path>contacts list [--addressbook <ab>]contacts get --uid <u> [--addressbook <ab>]contacts search --query <q> [--addressbook <ab>]contacts create --name <n> [--addressbook <ab>] [--email <e>] [--phone <p>] [--organization <o>] [--title <t>] [--note <n>]contacts edit --uid <u> [--addressbook <ab>] [--name <n>] [--email <e>] [--phone <p>] [--organization <o>] [--title <t>] [--note <n>]contacts delete --uid <u> [--addressbook <ab>]addressbooks listAll outputs are JSON formatted.
{
"status": "success",
"data": [
{
"uid": "unique-task-id",
"calendar": "Calendar Name",
"summary": "Task title",
"status": "NEEDS-ACTION",
"due": "20260201T153000Z",
"priority": 0
}
]
}
due: CalDAV format date (YYYYMMDDTHHmmssZ) or nullpriority: 0-9 (0 = undefined, 1 = highest, 9 = lowest) or null{
"status": "success",
"data": [
{
"uid": "unique-event-id",
"calendar": "Calendar Name",
"summary": "Event title",
"start": "20260205T100000Z",
"end": "20260205T110000Z"
}
]
}
{
"status": "success",
"data": [
{
"uid": "unique-contact-id",
"addressBook": "Address Book Name",
"fullName": "John Doe",
"name": "Doe;John;;;",
"phones": ["+1234567890"],
"emails": ["john@example.com"],
"organization": "ACME Inc",
"title": "Developer",
"note": "Met at conference"
}
]
}
phones: Array of phone numbers or nullemails: Array of email addresses or nullname: Structured name in vCard format (Last;First;Middle;Prefix;Suffix){
"status": "success",
"data": [ ... ]
}
or
{
"status": "error",
"message": "Error description"
}
When creating tasks or calendar events, if the user does not specify a calendar:
First time (no default set):
calendars list --type tasks (for tasks) or calendars list --type events (for events)If user sets a default:
default_task_calendar and/or default_event_calendarIf user declines to set a default:
User can always override:
--calendar always takes precedence over the defaultdefault_task_calendar: Default calendar name for tasks (VTODO)default_event_calendar: Default calendar name for events (VEVENT)When creating contacts, if the user does not specify an address book:
First time (no default set):
addressbooks listIf user sets a default:
default_addressbookIf user declines to set a default:
User can always override:
--addressbook always takes precedence over the defaultdefault_addressbook: Default address book name for contactsWhen displaying data to the user, format it in a readable way. Output may be sent to messaging platforms (Telegram, WhatsApp, etc.) where markdown does not render, so avoid markdown formatting.
code, tables, or lists with - or *)Tasks: โ (completed), โฌ (pending), ๐ด (high priority), ๐ก (medium), ๐ข (low) Calendar: ๐ (event), โฐ (time), ๐ (location) Notes: ๐ (note), ๐ (category) Files: ๐ (file), ๐ (folder), ๐พ (size) Contacts: ๐ค (person), ๐ง (email), ๐ฑ (phone), ๐ข (organization) Status: โจ (created), โ๏ธ (updated), ๐๏ธ (deleted), โ (error)
Tasks:
๐ Your Tasks
โฌ ๐ด Buy groceries โ Due: Tomorrow 3:30 PM
โฌ ๐ก Review PR #42 โ Due: Feb 5
โ
Send email to client
Calendar Events:
๐
Upcoming Events
๐๏ธ Team Standup
โฐ Mon, Feb 3 โข 10:00 AM - 10:30 AM
๐ Zoom
๐๏ธ Project Review
โฐ Wed, Feb 5 โข 2:00 PM - 3:00 PM
Contacts:
๐ค John Doe
๐ง john@example.com
๐ฑ +1 234 567 890
๐ข ACME Inc โ Developer
Files:
๐ Documents/
๐ report.pdf (2.3 MB)
๐ notes.txt (4 KB)
๐ Archive/
Convert CalDAV format 20260205T100000Z to readable format like Wed, Feb 5 โข 10:00 AM Show relative dates when helpful: "Tomorrow", "Next Monday", "In 3 days" Use the user's local timezone when possible
Machine 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/keithvassallomt-openclaw-nextcloud/snapshot"
curl -s "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/contract"
curl -s "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/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 5d 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/keithvassallomt-openclaw-nextcloud/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/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-17T00:49:04.809Z"
}
},
"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": "always",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "access",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:always|supported|profile capability:access|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": "Keithvassallomt",
"href": "https://github.com/keithvassallomt/openclaw-nextcloud",
"sourceUrl": "https://github.com/keithvassallomt/openclaw-nextcloud",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:25:18.887Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:25:18.887Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "6 GitHub stars",
"href": "https://github.com/keithvassallomt/openclaw-nextcloud",
"sourceUrl": "https://github.com/keithvassallomt/openclaw-nextcloud",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:25:18.887Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/keithvassallomt-openclaw-nextcloud/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 openclaw-nextcloud and adjacent AI workflows.