Install
$ agentstack add skill-nutdnuy-webull-openapi-ai-plugin-webull-events ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
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 →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 hastransport: grpcand no HTTP method/path); official getting-started docs.
Workflow
- 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.
- 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.
- 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 ``
- 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.
- Author: nutdnuy
- Source: nutdnuy/webull-openapi-AI-Plugin
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.