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
Xpersona Agent
Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Skill: Prediction Trade Journal Owner: adlai88 Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Tags: latest:1.1.10 Version history: v1.1.10 | 2026-02-27T10:22:47.697Z | auto - Added a "difficulty: beginner" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only. v1.1.9 | 2026-02-27T03:59:32.149Z | user Sync v1.
clawhub skill install kn7axnp7bzqsf5fkx0z8px7han7zyq1x:prediction-trade-journalOverall rank
#62
Adoption
682 downloads
Trust
Unknown
Freshness
Mar 1, 2026
Freshness
Last checked Mar 1, 2026
Best For
Prediction Trade Journal 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, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Skill: Prediction Trade Journal Owner: adlai88 Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Tags: latest:1.1.10 Version history: v1.1.10 | 2026-02-27T10:22:47.697Z | auto - Added a "difficulty: beginner" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only. v1.1.9 | 2026-02-27T03:59:32.149Z | user Sync v1. Capability contract not published. No trust telemetry is available yet. 682 downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.1.10
Install & run
clawhub skill install kn7axnp7bzqsf5fkx0z8px7han7zyq1x:prediction-trade-journalSetup complexity is classified as HIGH. You must provision dedicated cloud infrastructure or an isolated VM. Do not run this directly on your local workstation.
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.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.1.10
Adoption signal
682 downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
6
Snippets
0
Languages
Unknown
bash
# Sync trades from API python tradejournal.py --sync # Show recent trades python tradejournal.py --history 10 # Generate weekly report python tradejournal.py --report weekly # Export to CSV python tradejournal.py --export trades.csv
json
{
"trades": [{
"id": "uuid",
"market_question": "Will X happen?",
"side": "yes",
"shares": 10.5,
"cost": 6.83,
"outcome": {
"resolved": false,
"winning_side": null,
"pnl_usd": null
}
}],
"metadata": {
"last_sync": "2025-01-29T...",
"total_trades": 50
}
}python
from tradejournal import log_trade
# After executing a trade
log_trade(
trade_id=result['trade_id'],
source="copytrading",
thesis="Mirroring whale 0x123...",
confidence=0.70
)text
๐ Weekly Report ======================================== Period: Last 7 days Trades: 15 Total cost: $125.50 Resolved: 8 / 15 Win rate: 62.5% P&L: +$18.30 By side: 10 YES, 5 NO
bash
# Sync trades from API python tradejournal.py --sync # Show recent trades python tradejournal.py --history 10 # Generate weekly report python tradejournal.py --report weekly # Export to CSV python tradejournal.py --export trades.csv
json
{
"trades": [{
"id": "uuid",
"market_question": "Will X happen?",
"side": "yes",
"shares": 10.5,
"cost": 6.83,
"outcome": {
"resolved": false,
"winning_side": null,
"pnl_usd": null
}
}],
"metadata": {
"last_sync": "2025-01-29T...",
"total_trades": 50
}
}SKILL.md
---
name: prediction-trade-journal
displayName: Prediction Trade Journal
description: Auto-log trades with context, track outcomes, generate calibration reports to improve trading.
metadata: {"clawdbot":{"emoji":"๐","requires":{"env":["SIMMER_API_KEY"],"pip":["simmer-sdk"]},"cron":null,"autostart":false}}
authors:
- Simmer (@simmer_markets)
version: "1.1.8"
difficulty: beginner
published: true
---
# Prediction Trade Journal
Track every trade, learn from outcomes, improve your edge.
## When to Use This Skill
Use this skill when the user wants to:
- See their trade history
- Track win rate and P&L
- Generate trading reports
- Analyze which strategies work best
## Quick Commands
```bash
# Sync trades from API
python tradejournal.py --sync
# Show recent trades
python tradejournal.py --history 10
# Generate weekly report
python tradejournal.py --report weekly
# Export to CSV
python tradejournal.py --export trades.csv
```
**API Reference:**
- Base URL: `https://api.simmer.markets`
- Auth: `Authorization: Bearer $SIMMER_API_KEY`
- Trades: `GET /api/sdk/trades`
## How It Works
1. **Sync** - Polls `/api/sdk/trades` to fetch trade history
2. **Store** - Saves trades locally with outcome tracking
3. **Track** - Updates outcomes when markets resolve
4. **Report** - Generates win rate, P&L, and calibration analysis
## CLI Reference
| Command | Description |
|---------|-------------|
| `--sync` | Fetch new trades from API |
| `--history N` | Show last N trades (default: 10) |
| `--sync-outcomes` | Update resolved markets |
| `--report daily/weekly/monthly` | Generate summary report |
| `--config` | Show configuration |
| `--export FILE.csv` | Export to CSV |
| `--dry-run` | Preview without making changes |
## Configuration
| Setting | Environment Variable | Default |
|---------|---------------------|---------|
| API Key | `SIMMER_API_KEY` | (required) |
## Storage
Trades are stored locally in `data/trades.json`:
```json
{
"trades": [{
"id": "uuid",
"market_question": "Will X happen?",
"side": "yes",
"shares": 10.5,
"cost": 6.83,
"outcome": {
"resolved": false,
"winning_side": null,
"pnl_usd": null
}
}],
"metadata": {
"last_sync": "2025-01-29T...",
"total_trades": 50
}
}
```
## Skill Integration
Other skills can enrich trades with context:
```python
from tradejournal import log_trade
# After executing a trade
log_trade(
trade_id=result['trade_id'],
source="copytrading",
thesis="Mirroring whale 0x123...",
confidence=0.70
)
```
This adds thesis, confidence, and source to the trade record for better analysis.
## Example Report
```
๐ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30
By side: 10 YES, 5 NO
```
## Troubleshooting
**"SIMMER_API_KEY environment variable not set"**
- Set your API key: `export SIMMER_API_KEY=sk_live_...`
**"No trades recorded ye_meta.json
{
"ownerId": "kn7axnp7bzqsf5fkx0z8px7han7zyq1x",
"slug": "prediction-trade-journal",
"version": "1.1.10",
"publishedAt": 1772187767697
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Skill: Prediction Trade Journal Owner: adlai88 Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. Tags: latest:1.1.10 Version history: v1.1.10 | 2026-02-27T10:22:47.697Z | auto - Added a "difficulty: beginner" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only. v1.1.9 | 2026-02-27T03:59:32.149Z | user Sync v1.
Skill: Prediction Trade Journal
Owner: adlai88
Summary: Auto-log trades with context, track outcomes, generate calibration reports to improve trading.
Tags: latest:1.1.10
Version history:
v1.1.10 | 2026-02-27T10:22:47.697Z | auto
v1.1.9 | 2026-02-27T03:59:32.149Z | user
Sync
v1.1.8 | 2026-02-25T13:56:12.834Z | auto
No changes detected in this version.
v1.1.7 | 2026-02-25T13:49:32.127Z | auto
v1.1.6 | 2026-02-24T13:44:13.596Z | auto
v1.1.5 | 2026-02-17T07:53:44.380Z | auto
v1.1.4 | 2026-02-17T07:00:27.516Z | auto
v1.1.3 | 2026-02-17T06:36:19.188Z | auto
v1.1.2 | 2026-02-14T14:59:29.296Z | auto
Archive index:
Archive v1.1.10: 4 files, 8763 bytes
Files: scripts/status.py (477b), SKILL.md (3179b), tradejournal.py (21822b), _meta.json (144b)
File v1.1.10:SKILL.md
name: prediction-trade-journal displayName: Prediction Trade Journal description: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. metadata: {"clawdbot":{"emoji":"๐","requires":{"env":["SIMMER_API_KEY"],"pip":["simmer-sdk"]},"cron":null,"autostart":false}} authors:
Track every trade, learn from outcomes, improve your edge.
Use this skill when the user wants to:
# Sync trades from API
python tradejournal.py --sync
# Show recent trades
python tradejournal.py --history 10
# Generate weekly report
python tradejournal.py --report weekly
# Export to CSV
python tradejournal.py --export trades.csv
API Reference:
https://api.simmer.marketsAuthorization: Bearer $SIMMER_API_KEYGET /api/sdk/trades/api/sdk/trades to fetch trade history| Command | Description |
|---------|-------------|
| --sync | Fetch new trades from API |
| --history N | Show last N trades (default: 10) |
| --sync-outcomes | Update resolved markets |
| --report daily/weekly/monthly | Generate summary report |
| --config | Show configuration |
| --export FILE.csv | Export to CSV |
| --dry-run | Preview without making changes |
| Setting | Environment Variable | Default |
|---------|---------------------|---------|
| API Key | SIMMER_API_KEY | (required) |
Trades are stored locally in data/trades.json:
{
"trades": [{
"id": "uuid",
"market_question": "Will X happen?",
"side": "yes",
"shares": 10.5,
"cost": 6.83,
"outcome": {
"resolved": false,
"winning_side": null,
"pnl_usd": null
}
}],
"metadata": {
"last_sync": "2025-01-29T...",
"total_trades": 50
}
}
Other skills can enrich trades with context:
from tradejournal import log_trade
# After executing a trade
log_trade(
trade_id=result['trade_id'],
source="copytrading",
thesis="Mirroring whale 0x123...",
confidence=0.70
)
This adds thesis, confidence, and source to the trade record for better analysis.
๐ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30
By side: 10 YES, 5 NO
"SIMMER_API_KEY environment variable not set"
export SIMMER_API_KEY=sk_live_..."No trades recorded yet"
python tradejournal.py --sync to fetch trades from APITrades not showing outcomes
python tradejournal.py --sync-outcomes to update resolved marketsFile v1.1.10:_meta.json
{ "ownerId": "kn7axnp7bzqsf5fkx0z8px7han7zyq1x", "slug": "prediction-trade-journal", "version": "1.1.10", "publishedAt": 1772187767697 }
Archive v1.1.9: 4 files, 8749 bytes
Files: scripts/status.py (477b), SKILL.md (3158b), tradejournal.py (21822b), _meta.json (143b)
File v1.1.9:SKILL.md
name: prediction-trade-journal displayName: Prediction Trade Journal description: Auto-log trades with context, track outcomes, generate calibration reports to improve trading. metadata: {"clawdbot":{"emoji":"๐","requires":{"env":["SIMMER_API_KEY"],"pip":["simmer-sdk"]},"cron":null,"autostart":false}} authors:
Track every trade, learn from outcomes, improve your edge.
Use this skill when the user wants to:
# Sync trades from API
python tradejournal.py --sync
# Show recent trades
python tradejournal.py --history 10
# Generate weekly report
python tradejournal.py --report weekly
# Export to CSV
python tradejournal.py --export trades.csv
API Reference:
https://api.simmer.marketsAuthorization: Bearer $SIMMER_API_KEYGET /api/sdk/trades/api/sdk/trades to fetch trade history| Command | Description |
|---------|-------------|
| --sync | Fetch new trades from API |
| --history N | Show last N trades (default: 10) |
| --sync-outcomes | Update resolved markets |
| --report daily/weekly/monthly | Generate summary report |
| --config | Show configuration |
| --export FILE.csv | Export to CSV |
| --dry-run | Preview without making changes |
| Setting | Environment Variable | Default |
|---------|---------------------|---------|
| API Key | SIMMER_API_KEY | (required) |
Trades are stored locally in data/trades.json:
{
"trades": [{
"id": "uuid",
"market_question": "Will X happen?",
"side": "yes",
"shares": 10.5,
"cost": 6.83,
"outcome": {
"resolved": false,
"winning_side": null,
"pnl_usd": null
}
}],
"metadata": {
"last_sync": "2025-01-29T...",
"total_trades": 50
}
}
Other skills can enrich trades with context:
from tradejournal import log_trade
# After executing a trade
log_trade(
trade_id=result['trade_id'],
source="copytrading",
thesis="Mirroring whale 0x123...",
confidence=0.70
)
This adds thesis, confidence, and source to the trade record for better analysis.
๐ Weekly Report
========================================
Period: Last 7 days
Trades: 15
Total cost: $125.50
Resolved: 8 / 15
Win rate: 62.5%
P&L: +$18.30
By side: 10 YES, 5 NO
"SIMMER_API_KEY environment variable not set"
export SIMMER_API_KEY=sk_live_..."No trades recorded yet"
python tradejournal.py --sync to fetch trades from APITrades not showing outcomes
python tradejournal.py --sync-outcomes to update resolved marketsFile v1.1.9:_meta.json
{ "ownerId": "kn7axnp7bzqsf5fkx0z8px7han7zyq1x", "slug": "prediction-trade-journal", "version": "1.1.9", "publishedAt": 1772164772149 }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
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/clawhub-adlai88-prediction-trade-journal/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust"
Operational fit
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
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
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/clawhub-adlai88-prediction-trade-journal/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T02:49:42.140Z"
}
},
"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": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "682 downloads",
"href": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.1.10",
"href": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-27T10:22:47.697Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-adlai88-prediction-trade-journal/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.1.10",
"description": "- Added a \"difficulty: beginner\" field to SKILL.md for clearer guidance. - No functional or command changes; documentation improvement only.",
"href": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceUrl": "https://clawhub.ai/adlai88/prediction-trade-journal",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-27T10:22:47.697Z",
"isPublic": true
}
]Sponsored
Ads related to Prediction Trade Journal and adjacent AI workflows.