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
mostro-trading mostro-trading Trade Bitcoin P2P on $1 — a censorship-resistant exchange over Lightning Network and Nostr. When to Use Use this skill when the user wants to: - Buy or sell Bitcoin peer-to-peer - View available P2P orders on Mostro - Check Mostro exchange info (fees, limits, currencies) - Manage trades (create, take, cancel, confirm, dispute) - Check trade status or history Setup 1. Install dependencies: cd <skill-dir Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
mostro-skill is best for recover 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
mostro-trading mostro-trading Trade Bitcoin P2P on $1 — a censorship-resistant exchange over Lightning Network and Nostr. When to Use Use this skill when the user wants to: - Buy or sell Bitcoin peer-to-peer - View available P2P orders on Mostro - Check Mostro exchange info (fees, limits, currencies) - Manage trades (create, take, cancel, confirm, dispute) - Check trade status or history Setup 1. Install dependencies: cd <skill-dir
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Mostrop2p
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. 1 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/MostroP2P/mostro-skill.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
Mostrop2p
Protocol compatibility
OpenClaw
Adoption signal
1 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
2
Snippets
0
Languages
typescript
Parameters
json
{
"mostro_pubkey": "<hex pubkey>",
"relays": ["wss://relay.mostro.network"],
"network": "mainnet",
"limits": {
"max_trade_amount_fiat": 100,
"max_daily_volume_fiat": 500,
"max_trades_per_day": 10,
"cooldown_seconds": 300,
"require_confirmation": true
}
}bash
# Recover all active orders and disputes after losing session tsx scripts/trade-status.ts --all # Check a specific order by ID (if you still have it) tsx scripts/trade-status.ts --order-id <uuid>
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
mostro-trading mostro-trading Trade Bitcoin P2P on $1 — a censorship-resistant exchange over Lightning Network and Nostr. When to Use Use this skill when the user wants to: - Buy or sell Bitcoin peer-to-peer - View available P2P orders on Mostro - Check Mostro exchange info (fees, limits, currencies) - Manage trades (create, take, cancel, confirm, dispute) - Check trade status or history Setup 1. Install dependencies: cd <skill-dir
Trade Bitcoin P2P on Mostro — a censorship-resistant exchange over Lightning Network and Nostr.
Use this skill when the user wants to:
cd <skill-dir> && npm installconfig.example.json to config.jsonmostro_pubkey to the hex public key of the target Mostro instanceKeys are auto-generated on first use (BIP-39 mnemonic). The mnemonic is saved to ~/.mostro-skill/seed. Back it up!
All scripts are in scripts/ and run with tsx:
| Script | Description | Example |
|--------|-------------|---------|
| get-info.ts | Mostro instance info (version, fees, currencies, limits) | tsx scripts/get-info.ts |
| list-orders.ts | List order book | tsx scripts/list-orders.ts --currency USD --kind sell --status pending |
| trade-status.ts | Check own trade status (see Session Recovery) | tsx scripts/trade-status.ts --order-id <uuid> or --all |
| Script | Description | Example |
|--------|-------------|---------|
| create-order.ts | Create buy/sell order | tsx scripts/create-order.ts --kind buy --currency USD --fiat-amount 50 --payment-method "bank transfer" |
| take-order.ts | Take an existing order | tsx scripts/take-order.ts --order-id <uuid> --action take-sell --invoice <lnbc...> |
| cancel-order.ts | Cancel own order | tsx scripts/cancel-order.ts --order-id <uuid> |
| fiat-sent.ts | Buyer confirms fiat sent | tsx scripts/fiat-sent.ts --order-id <uuid> |
| release.ts | Seller releases sats | tsx scripts/release.ts --order-id <uuid> |
| rate-user.ts | Rate counterparty (1-5) | tsx scripts/rate-user.ts --order-id <uuid> --rating 5 |
| dispute.ts | Open a dispute | tsx scripts/dispute.ts --order-id <uuid> |
| Flag | Required | Description |
|------|----------|-------------|
| --kind | ✅ | buy or sell |
| --currency | ✅ | Fiat currency code (USD, EUR, ARS, VES, etc.) |
| --fiat-amount | ✅ | Amount in fiat (set 0 for range orders) |
| --payment-method | ✅ | Payment method (e.g., "bank transfer", "face to face") |
| --premium | ❌ | Premium percentage (default: 0) |
| --amount | ❌ | Fixed sats amount (default: 0 = market price) |
| --min-amount | ❌ | Min fiat for range orders |
| --max-amount | ❌ | Max fiat for range orders |
| --invoice | ❌ | Lightning address for buy orders (e.g., user@ln.tips) |
| Flag | Required | Description |
|------|----------|-------------|
| --order-id | ✅ | UUID of the order to take |
| --action | ✅ | take-sell (buyer) or take-buy (seller) |
| --invoice | ❌ | LN invoice or address (for take-sell) |
| --amount | ❌ | Fiat amount (required for range orders) |
| Script | Description | Example |
|--------|-------------|---------|
| add-invoice.ts | Send LN invoice after taking a sell order | tsx scripts/add-invoice.ts --order-id <uuid> --invoice <lnbc...> |
| dispute-chat.ts | Send messages during a dispute | tsx scripts/dispute-chat.ts --order-id <uuid> --message "proof attached" |
| restore-session.ts | Import mnemonic and restore active orders | tsx scripts/restore-session.ts --mnemonic "word1 word2 ..." |
| analytics.ts | Trade history and statistics | tsx scripts/analytics.ts or --recent 10 or --csv |
| multi-mostro.ts | Query multiple Mostro instances | tsx scripts/multi-mostro.ts --currency USD --kind sell --best |
| auto-trade.ts | Automated trading strategies | tsx scripts/auto-trade.ts --strategy strategies/dca-weekly.json [--dry-run] |
| Strategy | Config Example | Description |
|----------|---------------|-------------|
| DCA | strategies/dca-weekly.json | Buy/sell fixed amount at regular intervals |
| Limit | strategies/limit-buy.json | Take orders matching specific criteria (premium, rating) |
| Market Maker | strategies/market-maker.json | Maintain buy and sell orders with a spread |
All strategies support --dry-run for testing. Set "enabled": true in the strategy JSON to activate.
| Flag | Description | Example |
|------|-------------|---------|
| --recent N | Show last N audit entries | --recent 10 |
| --csv | Export all trades to CSV file | --csv |
| --days N | Stats for last N days only | --days 30 |
| --output | Output file for CSV export | --output trades.csv |
| Flag | Description | Example |
|------|-------------|---------|
| --currency | Filter by fiat currency | --currency USD |
| --kind | Filter by order type | --kind sell |
| --best | Show only the single best order | --best |
| --list-instances | List configured Mostro instances | --list-instances |
Configure multiple instances in config.json under mostro_instances array.
list-orders.ts --kind sell --currency USD — Find sell orderstake-order.ts --order-id <id> --action take-sell --invoice <lnbc...> — Take orderfiat-sent.ts --order-id <id> — Confirm fiat sentrate-user.ts --order-id <id> --rating 5 — Rate the sellercreate-order.ts --kind sell --currency USD --fiat-amount 50 --payment-method "bank transfer" — Create sell orderrelease.ts --order-id <id> — Release sats to buyerrate-user.ts --order-id <id> --rating 5 — Rate the buyerconfig.json (max amount, daily volume, cooldown)~/.mostro-skill/audit.log records all actionsEdit config.json:
{
"mostro_pubkey": "<hex pubkey>",
"relays": ["wss://relay.mostro.network"],
"network": "mainnet",
"limits": {
"max_trade_amount_fiat": 100,
"max_daily_volume_fiat": 500,
"max_trades_per_day": 10,
"cooldown_seconds": 300,
"require_confirmation": true
}
}
Mostro uses Nostr events for communication:
All messages are encrypted using NIP-44 and wrapped in NIP-59 gift wrap for privacy.
Mostro uses ephemeral trade keys derived from your seed (BIP-32). If you lose your session (app crash, restart, new device), you can recover your active orders using trade-status.ts --all, which sends a restore-session message to Mostro.
How it works:
~/.mostro-skill/seed)restore-session asks Mostro to return all orders and disputes associated with your trade keyUsage:
# Recover all active orders and disputes after losing session
tsx scripts/trade-status.ts --all
# Check a specific order by ID (if you still have it)
tsx scripts/trade-status.ts --order-id <uuid>
What you get back:
id per protocol docs, order_id in some server versions), status, and trade_indexdispute_id, order_id, and statusImportant notes:
keys.getTradeKeys(1)), so only orders created with that trade key are returned. This is a client-side limitation, not a Mostro server restriction.trade_index and request_id are optional fields in the protocol (see protocol overview)restore-session.ts, use --all to verify your orders were recoveredThe request_id field is optional in all Mostro protocol messages. When included in a request, Mostro may echo it back in the response to allow correlation. However:
request_id in responsesrequest_id being present in responsesrequest_id match is foundSee docs/IMPLEMENTATION.md for full protocol details.
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/mostrop2p-mostro-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/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 6d 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/mostrop2p-mostro-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mostrop2p-mostro-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-17T05:36:16.833Z"
}
},
"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": "recover",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:recover|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": "Mostrop2p",
"href": "https://github.com/MostroP2P/mostro-skill",
"sourceUrl": "https://github.com/MostroP2P/mostro-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:13:10.439Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:13:10.439Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/MostroP2P/mostro-skill",
"sourceUrl": "https://github.com/MostroP2P/mostro-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:13:10.439Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mostrop2p-mostro-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mostrop2p-mostro-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 mostro-skill and adjacent AI workflows.