From longbridge
Read-only access to the user's Longbridge watchlist groups and the symbols inside each group. Mutations (create / rename / add / remove) belong in longbridge-watchlist-admin. Requires longbridge login. Triggers: "我的自选股", "自选股有哪些", "我关注的股票", "我的分组", "自選股", "關注的股票", "分組", "watchlist", "my watchlist", "favorited stocks", "watch groups".
npx claudepluginhub longbridge/skills --plugin longbridgeThis skill uses the workspace's default tool permissions.
Read-only listing of watchlist groups and member symbols. For mutations use `longbridge-watchlist-admin`.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Read-only listing of watchlist groups and member symbols. For mutations use longbridge-watchlist-admin.
Response language: match the user's input language — Simplified Chinese / Traditional Chinese / English.
Privacy: a watchlist reveals trading interest. Only return detailed lists in direct conversation.
The CLI returns all groups in one call; the LLM filters in-memory based on the user's intent.
After getting symbols from this skill, route to other skills for the actual data:
| User asks | Flow |
|---|---|
| "我自选股的港股涨幅" | this skill → filter .HK → longbridge-quote (batch) |
| "我自选最近一周走势" | this skill → all symbols → longbridge-kline (loop) |
| "我自选的总市值" | this skill → all symbols → longbridge-quote with --include-static |
Get symbols here, then route the data query to the appropriate skill. Do not try to compute change rates or charts inside this skill.
longbridge watchlist --format json
This lists every watchlist group plus the securities inside each group.
Array of group objects, each with {id, name, securities: [{symbol, name, ...}]}. No matching filter (after LLM-side filtering) → empty array.
If longbridge is missing, fall back to MCP. The watchlist read endpoint does not require trade scope, only login — if stderr says not logged in, tell the user to run longbridge auth login.
| CLI behaviour | MCP tool |
|---|---|
| List watchlist (with optional filter) | mcp__longbridge__watchlist (returns all groups; LLM filters) |
MCP-only extensions: mcp__longbridge__sharelist_* — community-shared watchlists (8 tools: list / detail / create / update / delete / member_add / member_remove / popular). For "hot lists", "what's trending", route to sharelist_* directly.
longbridge-watchlist-adminlongbridge-quote, longbridge-klinelongbridge-watchlist/
└── SKILL.md # prompt-only, no scripts/