Crawler Summary

binance-enhanced answer-first brief

Binance Enhanced Skill Binance Enhanced Skill **Enhanced Binance trading skill for OpenClaw** *Version 2.0 β€” created by parallel agents in 20 minutes* πŸš€ Features πŸ”§ Core Improvements 1. **Complete test infrastructure** β€” mock files, integration tests, connection verification 2. **Security** β€” rate limiting system, API key encryption, detailed logging 3. **UX/UI** β€” natural language command parser, interactive dialog, Telegram bot 4. **Mon Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/14/2026.

Freshness

Last checked 4/14/2026

Best For

binance-enhanced 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

Claim this agent
Agent DossierGitHubSafety: 94/100

binance-enhanced

Binance Enhanced Skill Binance Enhanced Skill **Enhanced Binance trading skill for OpenClaw** *Version 2.0 β€” created by parallel agents in 20 minutes* πŸš€ Features πŸ”§ Core Improvements 1. **Complete test infrastructure** β€” mock files, integration tests, connection verification 2. **Security** β€” rate limiting system, API key encryption, detailed logging 3. **UX/UI** β€” natural language command parser, interactive dialog, Telegram bot 4. **Mon

OpenClawself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Apr 14, 2026

Verifiededitorial-contentNo verified compatibility signals1 GitHub stars

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/14/2026.

1 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 14, 2026

Vendor

S7cret

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 4/14/2026.

Setup snapshot

git clone https://github.com/s7cret/binance-enhanced.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

S7cret

profilemedium
Observed Apr 14, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 14, 2026Source linkProvenance
Adoption (1)

Adoption signal

1 GitHub stars

profilemedium
Observed Apr 14, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

text

binance-enhanced/
β”œβ”€β”€ SKILL.md                    # This file (Russian)
β”œβ”€β”€ SKILL_EN.md                 # English version
β”œβ”€β”€ README.md                   # Russian documentation
β”œβ”€β”€ README_EN.md                # English documentation
β”œβ”€β”€ FAQ.md                      # Frequently asked questions
β”œβ”€β”€ TROUBLESHOOTING.md         # Troubleshooting guide
β”œβ”€β”€ BEST_PRACTICES.md          # Security best practices
β”œβ”€β”€ PROGRESS_REPORT.md         # Creation report
β”‚
β”œβ”€β”€ templates/                  # Configuration templates
β”‚   β”œβ”€β”€ .env.example           # Environment variables
β”‚   └── config.yaml.example    # Risk profiles
β”‚
β”œβ”€β”€ security/                   # Security system
β”‚   β”œβ”€β”€ limits/                # Operation limits
β”‚   β”œβ”€β”€ encryption/            # Key encryption (AES-GCM)
β”‚   β”œβ”€β”€ logging/               # Structured logging (NDJSON)
β”‚   └── checklist.md           # Security checklist
β”‚
β”œβ”€β”€ ux/                         # User experience
β”‚   β”œβ”€β”€ parser.py              # Natural language parser (RU/EN)
β”‚   β”œβ”€β”€ interactive_dialog.py  # Missing parameter dialog
β”‚   └── autocomplete/          # Symbol/command suggestions
β”‚
β”œβ”€β”€ telegram-bot/               # Telegram integration
β”‚   β”œβ”€β”€ bot.py                 # Main bot with inline keyboard
β”‚   β”œβ”€β”€ handlers/              # Command handlers
β”‚   └── webhook/               # Webhook support
β”‚
β”œβ”€β”€ monitoring/                 # Monitoring system
β”‚   β”œβ”€β”€ notifications/         # Telegram/email/webhook
β”‚   β”œβ”€β”€ dashboard/             # Web interface
β”‚   └── reports/               # Automatic reports
β”‚
β”œβ”€β”€ performance/                # Performance optimization
β”‚   β”œβ”€β”€ cache/                 # Price caching (Redis/Memory)
β”‚   β”œβ”€β”€ async_requests.py      # Non-blocking API calls
β”‚   └── json_optimization.py   # Fast JSON parsing
β”‚
β”œβ”€β”€ strategies/                 # Trading algorithms
β”‚   β”œβ”€β”€ dca/                   # Dollar-cost averaging
β”‚   β”œβ”€β”€ grid/                  # Grid trading
β”‚   β”œβ”€β”€ arbitrage/             # Cross-exchange arbitrage
β”‚  

bash

# Clone repository
git clone https://github.com/s7cret/binance-enhanced.git
cd binance-enhanced

# Run installation
chmod +x install.sh
./install.sh

bash

# Copy environment template
cp templates/.env.example .env

# Edit with your credentials
nano .env

# Required variables:
BINANCE_API_KEY=your_api_key_here
BINANCE_API_SECRET=your_api_secret_here

bash

# Using Docker (recommended)
docker-compose up -d

# Or manually
python3 -m uvicorn main:app --host 0.0.0.0 --port 8000

bash

buy 0.1 BTC at market
sell 2 ETH at 1800 limit
show BTC balance
get BTCUSDT price
portfolio summary

bash

ΠΊΡƒΠΏΠΈ 0.1 Π±ΠΈΡ‚ΠΊΠΎΠΈΠ½ ΠΏΠΎ Ρ€Ρ‹Π½ΠΊΡƒ
ΠΏΡ€ΠΎΠ΄Π°ΠΉ 2 эфира ΠΏΠΎ 1800 Π»ΠΈΠΌΠΈΡ‚
ΠΏΠΎΠΊΠ°ΠΆΠΈ баланс Π±ΠΈΡ‚ΠΊΠΎΠΈΠ½
Ρ†Π΅Π½Π° BTCUSDT
сводка портфСля

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Binance Enhanced Skill Binance Enhanced Skill **Enhanced Binance trading skill for OpenClaw** *Version 2.0 β€” created by parallel agents in 20 minutes* πŸš€ Features πŸ”§ Core Improvements 1. **Complete test infrastructure** β€” mock files, integration tests, connection verification 2. **Security** β€” rate limiting system, API key encryption, detailed logging 3. **UX/UI** β€” natural language command parser, interactive dialog, Telegram bot 4. **Mon

Full README

Binance Enhanced Skill

Enhanced Binance trading skill for OpenClaw
Version 2.0 β€” created by parallel agents in 20 minutes

πŸš€ Features

πŸ”§ Core Improvements

  1. Complete test infrastructure β€” mock files, integration tests, connection verification
  2. Security β€” rate limiting system, API key encryption, detailed logging
  3. UX/UI β€” natural language command parser, interactive dialog, Telegram bot
  4. Monitoring β€” Telegram/email/webhook notifications, web dashboard
  5. Performance β€” caching, async requests, optimization
  6. Trading strategies β€” DCA, grid trading, arbitrage, backtesting
  7. Documentation β€” configuration templates, FAQ, guides, best practices

πŸ“ Package Structure

binance-enhanced/
β”œβ”€β”€ SKILL.md                    # This file (Russian)
β”œβ”€β”€ SKILL_EN.md                 # English version
β”œβ”€β”€ README.md                   # Russian documentation
β”œβ”€β”€ README_EN.md                # English documentation
β”œβ”€β”€ FAQ.md                      # Frequently asked questions
β”œβ”€β”€ TROUBLESHOOTING.md         # Troubleshooting guide
β”œβ”€β”€ BEST_PRACTICES.md          # Security best practices
β”œβ”€β”€ PROGRESS_REPORT.md         # Creation report
β”‚
β”œβ”€β”€ templates/                  # Configuration templates
β”‚   β”œβ”€β”€ .env.example           # Environment variables
β”‚   └── config.yaml.example    # Risk profiles
β”‚
β”œβ”€β”€ security/                   # Security system
β”‚   β”œβ”€β”€ limits/                # Operation limits
β”‚   β”œβ”€β”€ encryption/            # Key encryption (AES-GCM)
β”‚   β”œβ”€β”€ logging/               # Structured logging (NDJSON)
β”‚   └── checklist.md           # Security checklist
β”‚
β”œβ”€β”€ ux/                         # User experience
β”‚   β”œβ”€β”€ parser.py              # Natural language parser (RU/EN)
β”‚   β”œβ”€β”€ interactive_dialog.py  # Missing parameter dialog
β”‚   └── autocomplete/          # Symbol/command suggestions
β”‚
β”œβ”€β”€ telegram-bot/               # Telegram integration
β”‚   β”œβ”€β”€ bot.py                 # Main bot with inline keyboard
β”‚   β”œβ”€β”€ handlers/              # Command handlers
β”‚   └── webhook/               # Webhook support
β”‚
β”œβ”€β”€ monitoring/                 # Monitoring system
β”‚   β”œβ”€β”€ notifications/         # Telegram/email/webhook
β”‚   β”œβ”€β”€ dashboard/             # Web interface
β”‚   └── reports/               # Automatic reports
β”‚
β”œβ”€β”€ performance/                # Performance optimization
β”‚   β”œβ”€β”€ cache/                 # Price caching (Redis/Memory)
β”‚   β”œβ”€β”€ async_requests.py      # Non-blocking API calls
β”‚   └── json_optimization.py   # Fast JSON parsing
β”‚
β”œβ”€β”€ strategies/                 # Trading algorithms
β”‚   β”œβ”€β”€ dca/                   # Dollar-cost averaging
β”‚   β”œβ”€β”€ grid/                  # Grid trading
β”‚   β”œβ”€β”€ arbitrage/             # Cross-exchange arbitrage
β”‚   └── backtesting/           # Historical analysis
β”‚
β”œβ”€β”€ test/                       # Test infrastructure
β”‚   β”œβ”€β”€ unit/                  # Unit tests
β”‚   β”œβ”€β”€ integration/           # Integration tests
β”‚   β”œβ”€β”€ security/              # Security tests
β”‚   └── performance/           # Performance tests
β”‚
└── docs/                       # Documentation
    β”œβ”€β”€ api/                   # API documentation
    β”œβ”€β”€ tutorials/             # Step-by-step guides
    └── diagrams/              # Architecture diagrams

🎯 Quick Start

1. Installation

# Clone repository
git clone https://github.com/s7cret/binance-enhanced.git
cd binance-enhanced

# Run installation
chmod +x install.sh
./install.sh

2. Configuration

# Copy environment template
cp templates/.env.example .env

# Edit with your credentials
nano .env

# Required variables:
BINANCE_API_KEY=your_api_key_here
BINANCE_API_SECRET=your_api_secret_here

3. Start Services

# Using Docker (recommended)
docker-compose up -d

# Or manually
python3 -m uvicorn main:app --host 0.0.0.0 --port 8000

πŸ” Security System

Rate Limiting

  • Daily limits: Maximum operations per day
  • Hourly limits: Burst protection
  • User limits: Per-user restrictions
  • Strategy limits: Per-strategy controls

Key Encryption

  • Algorithm: AES-GCM with PBKDF2
  • Storage: Encrypted files with salt+nonce
  • Rotation: Automatic key rotation support
  • Backup: Secure backup procedures

Audit Logging

  • Format: NDJSON for structured logs
  • Rotation: Automatic log rotation
  • Compression: Gzip compression
  • Monitoring: Security event alerts

πŸ€– Natural Language Interface

Supported Commands (English):

buy 0.1 BTC at market
sell 2 ETH at 1800 limit
show BTC balance
get BTCUSDT price
portfolio summary

Supported Commands (Russian):

ΠΊΡƒΠΏΠΈ 0.1 Π±ΠΈΡ‚ΠΊΠΎΠΈΠ½ ΠΏΠΎ Ρ€Ρ‹Π½ΠΊΡƒ
ΠΏΡ€ΠΎΠ΄Π°ΠΉ 2 эфира ΠΏΠΎ 1800 Π»ΠΈΠΌΠΈΡ‚
ΠΏΠΎΠΊΠ°ΠΆΠΈ баланс Π±ΠΈΡ‚ΠΊΠΎΠΈΠ½
Ρ†Π΅Π½Π° BTCUSDT
сводка портфСля

Features:

  • Bilingual parsing: English and Russian support
  • Interactive dialog: Asks for missing parameters
  • Auto-completion: Symbol and command suggestions
  • Context awareness: Remembers previous commands

πŸ“Š Monitoring & Alerts

Notification Channels:

  • Telegram: Real-time trade confirmations
  • Email: Daily reports and summaries
  • Webhook: Custom integrations (Slack, Discord)
  • Dashboard: Web interface for monitoring

Dashboard Features:

  • Real-time price charts
  • Portfolio overview
  • Trade history
  • Performance metrics
  • Risk analysis

⚑ Performance Optimization

Caching System:

  • Redis/Memory cache: Price data caching
  • TTL configuration: Different TTLs per data type
  • Cache invalidation: Smart invalidation strategies
  • Statistics: Cache hit/miss metrics

Async Operations:

  • Non-blocking requests: Parallel API calls
  • Background tasks: Data synchronization
  • Connection pooling: Reusable connections
  • Timeout handling: Configurable timeouts

JSON Optimization:

  • orjson: Fast JSON parsing
  • Selective parsing: Parse only needed fields
  • Compression: Gzip compression for large responses
  • Schema validation: JSON schema validation

πŸ“ˆ Trading Strategies

Dollar-Cost Averaging (DCA):

  • Automated purchases: Scheduled buying
  • Risk management: Stop-loss and take-profit
  • Portfolio rebalancing: Automatic rebalancing
  • Performance tracking: ROI calculation

Grid Trading:

  • Automated grids: Buy/sell at grid levels
  • Dynamic adjustment: Adaptive grid sizing
  • Profit tracking: Real-time P&L
  • Risk controls: Maximum drawdown limits

Arbitrage:

  • Cross-exchange: Multiple exchange support
  • Real-time monitoring: Price difference detection
  • Automated execution: Fast order placement
  • Risk management: Slippage protection

Backtesting:

  • Historical data: OHLCV data import
  • Strategy testing: Multiple strategy testing
  • Performance metrics: Sharpe ratio, max drawdown
  • Visualization: Charts and graphs

πŸ”§ Configuration

Environment Variables:

# Required
BINANCE_API_KEY=your_api_key
BINANCE_API_SECRET=your_api_secret

# Optional
TELEGRAM_BOT_TOKEN=your_bot_token
REDIS_URL=redis://localhost:6379
LOG_LEVEL=INFO
TRADE_MODE=paper  # paper, live, dry-run

Configuration Files:

  • .env: Environment variables
  • config.yaml: Main configuration
  • security/config.yaml: Security settings
  • strategies/config.yaml: Strategy parameters

πŸ§ͺ Testing

Test Suite:

# Run all tests
pytest tests/

# Run specific test categories
pytest tests/unit/
pytest tests/integration/
pytest tests/security/
pytest tests/performance/

# Run with coverage
pytest --cov=. tests/

Test Types:

  • Unit tests: Core functionality
  • Integration tests: API interactions
  • Security tests: Encryption and validation
  • Performance tests: Load and stress testing
  • End-to-end tests: Complete workflow testing

πŸ“š Documentation

Quick Links:

API Documentation:

  • OpenAPI: http://localhost:8000/docs
  • ReDoc: http://localhost:8000/redoc
  • Postman: docs/postman_collection.json

πŸš€ Deployment

Docker Deployment:

# Build and run
docker-compose up -d

# View logs
docker-compose logs -f

# Stop services
docker-compose down

# Update services
docker-compose pull
docker-compose up -d

Manual Deployment:

# Install dependencies
pip install -r requirements.txt

# Set environment
export BINANCE_API_KEY=your_key
export BINANCE_API_SECRET=your_secret

# Start service
python3 -m uvicorn main:app --host 0.0.0.0 --port 8000

Kubernetes Deployment:

# Apply manifests
kubectl apply -f k8s/namespace.yaml
kubectl apply -f k8s/configmap.yaml
kubectl apply -f k8s/deployment.yaml
kubectl apply -f k8s/service.yaml
kubectl apply -f k8s/ingress.yaml

πŸ“ž Support

Community Support:

  • GitHub Issues: Report bugs
  • Discord: Join OpenClaw community
  • Telegram: @s7cret for direct support

Resources:

πŸ“„ License

MIT License - see LICENSE file for details.

πŸ™ Acknowledgments

  • OpenClaw Team for the amazing platform
  • Binance for their comprehensive API
  • Community contributors for feedback and testing

⭐ Star this repository if you find it useful!

πŸ“’ Share your feedback and feature requests in Issues!

πŸš€ Happy trading with Binance Enhanced!

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/snapshot"
curl -s "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/contract"
curl -s "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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/s7cret-binance-enhanced/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/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:51:44.575Z"
    }
  },
  "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": "S7cret",
    "href": "https://github.com/s7cret/binance-enhanced",
    "sourceUrl": "https://github.com/s7cret/binance-enhanced",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:21.867Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:21.867Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1 GitHub stars",
    "href": "https://github.com/s7cret/binance-enhanced",
    "sourceUrl": "https://github.com/s7cret/binance-enhanced",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:21.867Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/s7cret-binance-enhanced/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 binance-enhanced and adjacent AI workflows.