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 saved content (links, places, contacts, notes) via the PostLocker CLI (`postlocker`). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organize their PostLocker saves. --- name: postlocker description: Manage saved content (links, places, contacts, notes) via the PostLocker CLI (postlocker). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organi Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
postlocker 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
Manage saved content (links, places, contacts, notes) via the PostLocker CLI (`postlocker`). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organize their PostLocker saves. --- name: postlocker description: Manage saved content (links, places, contacts, notes) via the PostLocker CLI (postlocker). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organi
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Sinewaystechnology
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 4/15/2026.
Setup snapshot
git clone https://github.com/SinewaysTechnology/PostLockerSkill.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
Sinewaystechnology
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
1
Snippets
0
Languages
typescript
Parameters
bash
pip install postlocker[cli]
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Manage saved content (links, places, contacts, notes) via the PostLocker CLI (`postlocker`). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organize their PostLocker saves. --- name: postlocker description: Manage saved content (links, places, contacts, notes) via the PostLocker CLI (postlocker). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organi
postlocker). Use for saving content, searching (including semantic search), organizing into groups, managing tags, listing/filtering by content type, exporting/importing, and piping commands. Use when the user wants to research, organize places/contacts/links, group similar content, or have the agent organize their PostLocker saves.PostLocker is a content locker: you save URLs, text, places, contacts, or any content you want to keep. The service stores saves, enriches them with AI-generated metadata (summaries, content type), and lets you search semantically, tag, and group items. The PostLocker CLI (postlocker) is the main way to operate on your saves from the command line or from an agent.
Typical use cases:
Before using this skill, install the PostLocker CLI so the postlocker command is available:
pip install postlocker[cli]
pip install postlockerpostlocker --help. If the command is not found, ensure the Python scripts directory (e.g. Scripts on Windows, bin on Unix) is on your PATH, or set POSTLOCKER_BIN to the full path of the postlocker executable.~/.postlocker/tokens.json (encrypted). Multiple hosts are supported.postlocker CLI is installed and on PATH (or POSTLOCKER_BIN points to it).~/.postlocker/).https://api.postlocker.app unless --host or POSTLOCKER_BASE_URL is set.list, search, groups list, groups get <id>, tags list).delete, clear, groups rm), confirm the target; use --raw or --pipe to inspect when possible.clear deletes ALL saves and groups in the account — use only when the user explicitly intends a full wipe.--raw (JSON) or --pipe (IDs only where supported).| User / agent goal | Approach | Example command(s) |
|-------------------|----------|--------------------|
| “What have I saved about X?” | Semantic search (default). | postlocker search "X" or postlocker search "X" --raw |
| “List my recent saves” | List with optional limit/since. | postlocker list --limit 20 or postlocker list --since 2025-02-01T00:00:00 |
| “Only links” / “Only places” | Filter by content type. | postlocker list --content-type url, postlocker search "cafes" --content-type place |
| “Put these in a group” | Use group ID with --add; feed IDs via pipe. | postlocker search "Unity" --pipe \| postlocker groups get "<GROUP_ID>" --add |
| “Create a group for Paris trips” | Create group with a name, then add saves. | postlocker groups create "Paris trips" then postlocker groups list --raw to get the new group ID; then postlocker groups get "<ID>" <save_id1> <save_id2> --add |
| “What’s in group X?” | Get group contents. | postlocker groups get "<GROUP_ID>" or --raw / --pipe |
| “Remove this save from a group” | groups get with --delete. | postlocker groups get "<GROUP_ID>" "<SAVE_ID>" --delete |
| “Tag all search results as project-X” | Pipe search IDs; for tags you need to call tags add per save (no bulk pipe). | postlocker search "API docs" --pipe → then for each ID: postlocker tags add <save_id> project-X (or use a small script). |
| “Export my saves” | Export all or a subset. | postlocker export -o backup.json or postlocker search "important" --pipe \| postlocker export -o important.json |
| “Re-analyze saves for better summaries” | AI analyse (single or piped). | postlocker list --limit 10 --pipe \| postlocker ai analyse |
| “Save this link with a note and tags” | Save with options. | postlocker save "https://..." --note "Read later" -T reading -G "<group_id>" |
postlocker save <content> [--note TEXT] [-T tag] [-G group_id] [--host URL]content is the main payload (URL, text, etc.). Optional: --note, -T (repeat for multiple tags), -G (repeat for multiple groups).postlocker save "https://example.com/article" --note "Review for project" -T research -G "550e8400-e29b-41d4-a716-446655440000"postlocker search <query> [--limit N] [--semantic/--no-semantic] [--distance FLOAT] [--group NAME] [-c CONTENT_TYPE] [--raw] [--summary] [--pipe] [--host]--raw for JSON, --pipe for IDs only (for piping to delete, export, groups get --add, ai analyse).--group "<group_name_or_id>"; by type: -c / --content-type.postlocker list [--limit N] [--offset N] [--since ISO_DATETIME] [-c CONTENT_TYPE] [--raw] [--summary] [--pipe] [--host]--since: only saves/groups updated since that date (ISO, timezone-aware or UTC). Useful for sync or “what changed”.postlocker groups list [--raw] [--host]postlocker groups search <query> [--limit N] [--offset N] [--host] [--raw]postlocker groups create <name> [--host] — requires a group name. The CLI does not print the new group ID; use groups list --raw to get IDs.postlocker groups get <GROUP_ID> [SAVE_IDS...] [--add \| --delete] [--raw] [--pipe] [--limit N] [--offset N] [--summary] [--host]
postlocker groups get "<GROUP_ID>"postlocker groups get "<GROUP_ID>" id1 id2 --add or pipe: postlocker search "X" --pipe \| postlocker groups get "<GROUP_ID>" --addpostlocker groups get "<GROUP_ID>" id1 --delete--add and --delete cannot be used together.postlocker groups rm <GROUP_ID> [--host]postlocker tags list [--raw] [--host]postlocker tags get <tag> [--raw] [--host]postlocker tags add <save_id> <tag> [--host]postlocker tags remove <save_id> <tag> [--host]postlocker export [-o FILE] [-f json|csv] [--pretty] [--limit N] [--offset N] [--host]postlocker search "X" --pipe | postlocker export -o out.jsonpostlocker import <csv_file> [--delay SEC] [--limit N] [--offset N] [--pipe] [--host]postlocker import data.csv --pipe | postlocker groups get "<GROUP_ID>" --addpostlocker ai analyse [--host] [--raw] [--summary] (reads save IDs from stdin when piping).postlocker list --limit 5 --pipe | postlocker ai analysepostlocker ai all [--delay SEC] [--limit N] [--offset N] [--host] — options use -d for delay, -l for limit, -s for offset.postlocker get <save_id> [--host] (output is JSON).postlocker related <save_id> [--limit N] [--distance FLOAT] [--host] [--raw] — semantically related saves.postlocker delete <save_id> [--host]. With pipe: postlocker search "obsolete" --pipe | postlocker deleteNotes on saves: postlocker notes get <save_id>, postlocker notes add <save_id> <note>, postlocker notes delete <save_id> <note_id> (see references/cli.md).
Commands that support --pipe (output save IDs only):
listsearchgroups get (when listing group contents)import (after importing)Commands that accept piped IDs:
deleteai analyseexportgroups get --addExamples:
postlocker search "Football" --pipe | postlocker deletepostlocker search "Unity" --pipe | postlocker groups get "1218471-1248917-12410897f34" --addpostlocker search "important" --pipe | postlocker export -o important.jsonpostlocker list --limit 10 --pipe | postlocker ai analyseOn Windows PowerShell, use | (no backslash). One-line:
postlocker search "Unity" --pipe | postlocker groups get "1218471-1248917-12410897f34" --add
list or search (with --content-type if the user cares about links vs places vs generic). Use --raw to parse programmatically.groups create, then add saves via groups get <id> ... --add or by piping search/list output.tags add for individual saves (no bulk pipe for tags; iterate over IDs if needed).search or groups get with --pipe into export -o file.json for backup or analysis.search or list to identify candidates, then delete (with confirmation) or groups get ... --delete to remove from a group.postlocker list --limit 1) or use postlocker users me --raw if available.postlocker tokens list, postlocker tokens clear--host: PostLocker base URL (default https://api.postlocker.app).--raw: Output raw JSON.--summary: Show AI-generated summaries (list, search).--limit / --offset: Paging for list, search, export, etc.python scripts/postlocker_run.py -- list --limit 5 --rawMachine 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/sinewaystechnology-postlockerskill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/contract"
curl -s "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/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/sinewaystechnology-postlockerskill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/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:19:45.024Z"
}
},
"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": "Sinewaystechnology",
"href": "https://github.com/SinewaysTechnology/PostLockerSkill",
"sourceUrl": "https://github.com/SinewaysTechnology/PostLockerSkill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:18:35.843Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:18:35.843Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/sinewaystechnology-postlockerskill/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 postlocker and adjacent AI workflows.