AgentStack
SKILL verified MIT Self-run

Webull Events

skill-nutdnuy-webull-openapi-ai-plugin-webull-events · by nutdnuy

Explain and plan Webull Thailand real-time market-data MQTT subscriptions and gRPC trade-event subscriptions. Use for streaming architecture, topics, lifecycle, or event handling; do not pretend the shared HTTP CLI maintains persistent sessions.

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-nutdnuy-webull-openapi-ai-plugin-webull-events

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-nutdnuy-webull-openapi-ai-plugin-webull-events)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
16d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Webull Events? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Webull events and streaming

Read references/endpoints.json, follow each HTTP control entry's schema_ref into references/openapi.json, and read references/authentication.md for request shapes and credentials. Consult the official Webull Open API reference, Market Data API FAQ, and Trading API Getting Started.

First-use onboarding

Before explaining or starting a streaming workflow, check for WEBULL_APP_KEY and WEBULL_APP_SECRET in the secure environment. If the API Key is missing, ask the user to configure it securely and stop. Never request or echo secrets in chat.

Supported streaming interfaces

  • POST /openapi/market-data/streaming/subscribe — MQTT market-data subscription operation; official reference index.
  • POST /openapi/market-data/streaming/unsubscribe — MQTT market-data unsubscribe operation; official docs.
  • subscribeTradeEvents — conceptual gRPC trade-event subscription (the catalog entry has transport: grpc and no HTTP method/path); official getting-started docs.

Workflow

  1. Read the catalog entry for the MQTT subscribe/unsubscribe request shape and the auth reference for connection prerequisites. Treat subscribe/unsubscribe as streaming lifecycle operations, not ordinary one-shot data reads.
  2. Explain connection identity, topic/session lifecycle, heartbeat/reconnect behavior, permissions, and documented limits from the official docs. Do not promise delivery or silently restore subscriptions after disconnect unless the client explicitly implements that behavior.
  3. The shared CLI is an HTTP request client. It does not open or hold persistent MQTT or gRPC sessions. You may use it only for a documented one-shot control request, with catalog-shaped placeholders:

``bash python scripts/webull_api.py request --method POST --path /openapi/market-data/streaming/subscribe --body-file ./subscribe.json --allow-write --write-confirmation STREAMING python scripts/webull_api.py request --method POST --path /openapi/market-data/streaming/unsubscribe --body-file ./unsubscribe.json --allow-write --write-confirmation STREAMING ``

  1. Do not claim that the CLI received live binary protobuf/MQTT messages or gRPC order events. Recommend an official Webull SDK or a purpose-built persistent client for those sessions, with secrets kept outside logs and source control. Do not invent an HTTP path for subscribeTradeEvents.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.