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
Nextcloud file and folder management via WebDAV + OCS API. Use when: (1) creating, reading, writing, renaming, moving, copying, or deleting files/folders, (2) listing or searching directory contents, (3) toggling favorites or managing system tags, (4) checking storage quota. NOT for: Nextcloud Talk, Calendar/Contacts (use CalDAV), app management (requires admin), large binary transfers, or creating share links (share capability not included by default - see README). --- name: nextcloud description: "Nextcloud file and folder management via WebDAV + OCS API. Use when: (1) creating, reading, writing, renaming, moving, copying, or deleting files/folders, (2) listing or searching directory contents, (3) toggling favorites or managing system tags, (4) checking storage quota. NOT for: Nextcloud Talk, Calendar/Contacts (use CalDAV), app management (requires admin), large binary transfe Capability contract not published. No trust telemetry is available yet. Last updated 3/1/2026.
Freshness
Last checked 3/1/2026
Best For
nextcloud 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
Nextcloud file and folder management via WebDAV + OCS API. Use when: (1) creating, reading, writing, renaming, moving, copying, or deleting files/folders, (2) listing or searching directory contents, (3) toggling favorites or managing system tags, (4) checking storage quota. NOT for: Nextcloud Talk, Calendar/Contacts (use CalDAV), app management (requires admin), large binary transfers, or creating share links (share capability not included by default - see README). --- name: nextcloud description: "Nextcloud file and folder management via WebDAV + OCS API. Use when: (1) creating, reading, writing, renaming, moving, copying, or deleting files/folders, (2) listing or searching directory contents, (3) toggling favorites or managing system tags, (4) checking storage quota. NOT for: Nextcloud Talk, Calendar/Contacts (use CalDAV), app management (requires admin), large binary transfe
Public facts
4
Change events
1
Artifacts
0
Freshness
Mar 1, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 3/1/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Rwx G
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 3/1/2026.
Setup snapshot
git clone https://github.com/Rwx-G/openclaw-skill-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
Rwx G
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
python3 scripts/nextcloud.py config # verify credentials + active config python3 scripts/nextcloud.py quota # test connection + show storage python3 scripts/nextcloud.py ls / # list root directory
bash
python3 scripts/setup.py # interactive: credentials + permissions + connection test python3 scripts/init.py # validate all configured permissions against live instance
text
NC_URL=https://cloud.example.com NC_USER=username NC_APP_KEY=app-password
bash
python3 scripts/setup.py --cleanup
python
from scripts.nextcloud import NextcloudClient
nc = NextcloudClient()
nc.write_file("/Jarvis/notes.md", "# Notes\n...")
nc.mkdir("/Jarvis/Articles")
items = nc.list_dir("/Jarvis")bash
# Files & folders python3 scripts/nextcloud.py mkdir /path/folder python3 scripts/nextcloud.py write /path/file.md --content "# Title" python3 scripts/nextcloud.py write /path/file.md --file local.md python3 scripts/nextcloud.py write /path/file.md --content "new entry" --append python3 scripts/nextcloud.py read /path/file.md python3 scripts/nextcloud.py rename /old /new python3 scripts/nextcloud.py copy /src /dst python3 scripts/nextcloud.py delete /path python3 scripts/nextcloud.py exists /path # exit 0/1 # Listing & search python3 scripts/nextcloud.py ls /path --depth 2 --json python3 scripts/nextcloud.py search "keyword" --path /folder --limit 20 # Favorites & tags python3 scripts/nextcloud.py favorite /path/file.md python3 scripts/nextcloud.py tags python3 scripts/nextcloud.py tag-create "research" python3 scripts/nextcloud.py tag-assign <file_id> <tag_id> # Account python3 scripts/nextcloud.py quota python3 scripts/nextcloud.py config
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Nextcloud file and folder management via WebDAV + OCS API. Use when: (1) creating, reading, writing, renaming, moving, copying, or deleting files/folders, (2) listing or searching directory contents, (3) toggling favorites or managing system tags, (4) checking storage quota. NOT for: Nextcloud Talk, Calendar/Contacts (use CalDAV), app management (requires admin), large binary transfers, or creating share links (share capability not included by default - see README). --- name: nextcloud description: "Nextcloud file and folder management via WebDAV + OCS API. Use when: (1) creating, reading, writing, renaming, moving, copying, or deleting files/folders, (2) listing or searching directory contents, (3) toggling favorites or managing system tags, (4) checking storage quota. NOT for: Nextcloud Talk, Calendar/Contacts (use CalDAV), app management (requires admin), large binary transfe
Full Nextcloud client: WebDAV (files/folders) + OCS (tags, user info). Zero external dependencies - stdlib only (urllib).
Credentials: ~/.openclaw/secrets/nextcloud_creds · Config: ~/.openclaw/config/nextcloud/config.json
Load this skill immediately when the user says anything like:
python3 scripts/nextcloud.py config # verify credentials + active config
python3 scripts/nextcloud.py quota # test connection + show storage
python3 scripts/nextcloud.py ls / # list root directory
python3 scripts/setup.py # interactive: credentials + permissions + connection test
python3 scripts/init.py # validate all configured permissions against live instance
init.py only runs write/delete tests when both
allow_write=trueandallow_delete=true. Whenallow_delete=false, write tests are skipped - no test artifacts are created or left behind.
Manual - ~/.openclaw/secrets/nextcloud_creds (chmod 600):
NC_URL=https://cloud.example.com
NC_USER=username
NC_APP_KEY=app-password
App password: Nextcloud → Settings → Security → App passwords.
config.json - behavior restrictions:
| Key | Default | Effect |
|-----|---------|--------|
| base_path | "/" | Restrict agent to subtree (e.g. "/Jarvis") |
| allow_write | false | mkdir, write, rename, copy (enable explicitly) |
| allow_delete | false | delete files and folders (enable explicitly) |
| readonly_mode | false | override: block all writes regardless of above |
Safe defaults: both
allow_writeandallow_deletearefalseby default. Enable each explicitly only when needed. Combine with a restrictedbase_path(e.g."/Jarvis") to limit the agent's scope. Share capability is not included by default. See README for instructions on how to restore it if needed.
The skill reads and writes the following paths. All usage is intentional and documented:
| Path | Written by | Purpose |
|------|-----------|---------|
| ~/.openclaw/secrets/nextcloud_creds | setup.py | Nextcloud credentials (NC_URL, NC_USER, NC_APP_KEY). chmod 600. Never committed. |
| ~/.openclaw/config/nextcloud/config.json | setup.py | Behavior restrictions (base_path, allow_write, allow_delete, readonly_mode). No secrets. Not in skill dir - survives clawhub updates. |
Credentials can also be provided via environment variables (NC_URL, NC_USER, NC_APP_KEY) instead of the creds file. The skill checks env vars first.
Cleanup on uninstall: clawhub uninstall nextcloud-files removes the skill directory. To also remove credentials and config:
python3 scripts/setup.py --cleanup
On reinstall, any existing config at ~/.openclaw/config/nextcloud/config.json is picked up automatically.
from scripts.nextcloud import NextcloudClient
nc = NextcloudClient()
nc.write_file("/Jarvis/notes.md", "# Notes\n...")
nc.mkdir("/Jarvis/Articles")
items = nc.list_dir("/Jarvis")
# Files & folders
python3 scripts/nextcloud.py mkdir /path/folder
python3 scripts/nextcloud.py write /path/file.md --content "# Title"
python3 scripts/nextcloud.py write /path/file.md --file local.md
python3 scripts/nextcloud.py write /path/file.md --content "new entry" --append
python3 scripts/nextcloud.py read /path/file.md
python3 scripts/nextcloud.py rename /old /new
python3 scripts/nextcloud.py copy /src /dst
python3 scripts/nextcloud.py delete /path
python3 scripts/nextcloud.py exists /path # exit 0/1
# Listing & search
python3 scripts/nextcloud.py ls /path --depth 2 --json
python3 scripts/nextcloud.py search "keyword" --path /folder --limit 20
# Favorites & tags
python3 scripts/nextcloud.py favorite /path/file.md
python3 scripts/nextcloud.py tags
python3 scripts/nextcloud.py tag-create "research"
python3 scripts/nextcloud.py tag-assign <file_id> <tag_id>
# Account
python3 scripts/nextcloud.py quota
python3 scripts/nextcloud.py config
python3 scripts/nc_setup.py --root Jarvis --folders Articles,LinkedIn,Recherche,Veille
nc.append_to_file("/Jarvis/log.md", f"\n## {today}\n{entry}\n")
items = nc.read_json("/Jarvis/Veille/articles.json")
items["articles"].append(new_article)
nc.write_json("/Jarvis/Veille/articles.json", items)
ls = nc.list_dir("/Jarvis/Articles", depth=1)
file_id = next(f["file_id"] for f in ls if f["name"] == "article.md")
tags = nc.get_tags()
tag_id = next(t["id"] for t in tags if t["name"] == "published")
nc.assign_tag(file_id, tag_id)
base_path: "/Jarvis" - it can't touch anything elseappend_to_file for rolling logs or changelogswrite_json + read_json for persistent state between sessions| Skill | Workflow |
|-------|----------|
| ghost | Write a post → save Markdown draft to NC → publish to Ghost |
| summarize | Summarize a URL → save summary as .md to NC |
| gmail | Receive an attachment → save to NC for archiving |
| obsidian | Sync Obsidian vault notes to NC for remote backup |
| self-improving-agent | Log agent learnings to NC for persistent, searchable history |
See references/api.md for WebDAV/OCS endpoint details, PROPFIND properties, and error codes.
See references/troubleshooting.md for common errors and fixes.
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/rwx-g-openclaw-skill-nextcloud/snapshot"
curl -s "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/contract"
curl -s "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-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/rwx-g-openclaw-skill-nextcloud/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-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-16T23:39:26.737Z"
}
},
"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": "Rwx G",
"href": "https://github.com/rwx-g/openclaw-skill-nextcloud",
"sourceUrl": "https://github.com/rwx-g/openclaw-skill-nextcloud",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-03-01T06:05:55.397Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-03-01T06:05:55.397Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-nextcloud/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/rwx-g-openclaw-skill-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 nextcloud and adjacent AI workflows.