Checked the reference against the `QuerySignals` / `Signal` RPC definitions
and against production responses:
- `status` documents its lifecycle values (0 pending … 5 analysis submit
failed) instead of being left unexplained.
- `total` is `int32`, matching `QuerySignalsResponse`.
- `risk_level` and `display_control` are dropped from the field tables and
examples — neither is in the `Signal` message, and production returns
neither.
- `catalyst_name` says what it matches: the triggering factor's name
(`EARNINGS_RELEASED`, `macd_12_26_9`), not the prose `key_catalyst` a signal
displays. Filtering by the value shown in `key_catalyst` returns nothing, so
both fields now spell out which is which.
- `start_time` / `end_time` also accept a Unix timestamp (≥ 10¹² read as
milliseconds), per the field definitions.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
`GET /v1/facts/security_facts` served an empty `facts` array when the
reference was written, so the item shape was described as "type-specific" and
the example was an empty envelope. The endpoint now serves data, so both are
replaced with the real thing:
- Full field table: fact id / type / direction / occurrence time, the
securities it is about, the factors behind it (groups, direction, trigger
condition, anomaly test), the data sources, and `nl_info`.
- `direction` takes `long`, `short` or `neutral`; `fact_type` takes `News`,
`Fundamental` or `Technical`.
- `nl_info.summary`, `invest_anal` and `eli_explain` each carry a JSON array
of `{tag, value}` inside a string — called out so readers parse it.
Also drops the `ticker.region` phrasing from the two pre-existing grid
endpoints, matching the wording used everywhere else.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Documents the three signal endpoints across `openapi.yaml` and the
en / zh-CN / zh-HK reference pages:
- `GET /v1/signals` — query signals with symbol / strategy / catalyst /
time-range filters and limit/offset paging
- `GET /v1/signals/{signal_id}` — one signal, with the full strategy analysis
in `json_data`
- `GET /v1/facts/security_facts` — a security's fact (catalyst) events
Field tables come from the live response: `symbol` (not `counter_id`),
millisecond `created_at` / `updated_at`, and the five `outlook` values.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
## Summary
`LongbridgeAI` written as one word is the correct brand name. This
renames all occurrences in the docs content across the three locales (en
/ zh-CN / zh-HK) — 63 replacements in 15 files.
Pages touched (each in all three locales):
- `docs/cli/ai.md`
- `docs/cli/acp.md`
- `docs/cli/release-notes.md`
- `docs/changelog.md`
- `docs/cli/index.md`
## Deliberately not changed
- **`docs/{lang}/docs/legal/`** — `Longbridge AI Technologies Pte. Ltd.`
/ `Longbridge AI Technology Pte. Ltd.` / `Longbridge AI Technologies
Limited` are registered legal entity names, along with the "Longbridge
AI" short form defined from them. Renaming would break the legal text.
- **Vue components** (`Skill.vue`, `NewHomePage/index.vue`,
`NewHomePage/ProductSkill.vue`) — the string `Install Longbridge AI
toolkit following the guide...` refers to the Skill/CLI toolkit, not the
LongbridgeAI chat product. Left for a separate decision (possibly
`Longbridge Skill toolkit`).
`autocorrect --fix` was run on the zh-CN / zh-HK trees and produced no
further changes.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
## What
Documents the two new top-level CLI commands and prepares the v0.28.0
release notes. All pages exist in `en` / `zh-CN` / `zh-HK`.
### `cli/ai` — the Longbridge AI chat TUI
Screen layout (title-bar ticker, transcript, prompt, status row) and the
click-through quote card; the 12 slash commands with aliases; the full
key reference; how answers render (Markdown, terminal-drawn `vis-chart`
charts, box-drawn tables, syntax-highlighted code, live quote cards,
tool activity); the agent's own questions (options / multi-select /
authorization); conversations stored on the account; copy and export;
the five settings; agent switching. Two screenshots.
### `cli/serve` — for developers building on the CLI
Written for someone about to write a client:
- Why it exists, against the spawn-per-poll alternative
- The NDJSON JSON-RPC 2.0 wire format and four properties to design
around: concurrent (so out-of-order) responses, the 8-request upstream
cap, exit on stdin EOF, whole-line stdout
- The method surface, the layering that keeps it from drifting behind
the CLI, and why payloads are the raw OpenAPI shapes rather than
`--format json`
- The live feed: `fields`, the notification table, and the three things
to get right — a tick is not a snapshot, a push can predate the
snapshot, unsubscribe drops every field
- Error codes mapped to "can a retry help", parameter conventions, the
full method list, and a ~40-line Python client
Closes with **Longbridge for Omarchy** as a case study — install steps,
and how it actually uses `serve` (one parked session, no polling, folded
pushes, sparklines from `quote.candlesticks`, `holdings` from
`trade.stock_positions`, portfolio via the CLI) — with three
screenshots.
### Release notes and changelog
CLI v0.28.0: `ai`, `serve`, the `grid` command group, the reworked TUI
chrome, the intraday-chart fill fix (and the two bugs behind it), and
`news detail` returning structured data.
## Also
- Sidebar order for the top-level pages: AI → ACP → JSON-RPC Server →
TUI → Release Notes
- The CLI overview's quick start mentions `longbridge ai`
- Fixed `](/en/docs/...)` links in the English release notes and
changelog — `en` is the root locale, so those 404
## Verification
Every command detail was checked against `longbridge-terminal` at
7b6a297 (source and locale files), and the `serve` request/response
examples are real output from a live `longbridge serve` session. Sidebar
generation verified by running `genMarkdowDocs` for all three locales.
No build run, per repo convention.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
## Summary
Complete grid trading documentation for the Longbridge Developers site —
the new grid strategy orders documented across CLI, HTTP API, SDKs, and
MCP, in English / Simplified Chinese / Traditional Chinese.
## What's included
- **Grid Trading API reference** (`docs/trade/grid/`) — an overview page
plus 11 endpoint pages: submit, replace, list, list-by-IDs, detail,
trigger history, cancel, suspend, restart, questionnaire, and symbol
info. Each endpoint page carries a `<CliCommand>` example, Python /
Node.js / Java / Rust / C++ SDK tabs, request/response tables, and a `##
Schemas` section — matching the existing `trade/order` pages.
- **CLI usage page** (`cli/orders/grid.md`) — the `longbridge grid`
command group under "Orders & Trading".
- **WebSocket push** — the `GridOrderChanged` (`gridtrading_order`)
event documented in `trade-push.md`.
- **FAQ** — `qa/trade.md` updated: grid orders are now supported.
- **Changelog & CLI release notes** — a 2026-08-14 changelog entry (SDK
v4.5.0 / CLI v0.27.0 / MCP: 11 grid tools) and a CLI v0.27.0 release
note.
- **`openapi.yaml`** — the `/v1/gridtrading/*`,
`/v1/record/questionnaire`, and `/v1/orders/info` paths plus the
`GridTradeRule` schema, under a new `Grid Trading` tag.
- **`SDKLinks` component** — now supports the `grid` module and a
`hideGo` flag (the Go SDK has no grid bindings yet).
All pages are mirrored across `en` / `zh-CN` / `zh-HK`.
## Notes
- Field names, enums, and HTTP paths come from the source PRs
(longbridge/openapi#563, longbridge/longbridge-terminal#281).
- The v0.27.0 / v4.5.0 release tags go live with the 2026-08-14 release;
the release-note links resolve then.
- CI (Build Test + autocorrect) is green.
Refs: longbridge/openapi#563, longbridge/longbridge-terminal#281
---------
Co-authored-by: Jason Lee <huacnlee@gmail.com>
## Summary
- rewrite the CLI v0.27.0 ACP release note around user-facing purpose
and investment scenarios
- add English, Simplified Chinese, and Traditional Chinese `longbridge
acp` guides
- document generic ACP client configuration and keep Zed as the sole
product-specific example
- link Longbridge AI and the release notes to the new setup guide
## Test Plan
- `git diff --check`
- `npm run build:release`
Co-authored-by: Codex <codex@openai.com>
The Longbridge skill files are maintained in
[longbridge/skills](https://github.com/longbridge/skills). The copy
under `skills/` here is a stale duplicate — nothing in the site build
reads it, and the two copies had already drifted apart.
## Heads-up before merging
`skills/longbridge/references/cli/quant.md` (448 lines of Navi scripting
docs) exists **only** in this copy — `longbridge/skills` has no such
file. Deleting it here leaves that content reachable only through git
history.
Both copies also received parallel Navi updates recently (#1169 here,
`quant-navi` there), so please confirm nothing newer lives on this side
before merging.
Everything else in the directory has an equivalent in
`longbridge/skills`.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
🤖 Auto-generated by Endless task
[#41](https://endless.longbridge-inc.com/projects/developers/tasks/41).
Initiated by: huacnlee@longbridge-inc.com
Worker agent: Claude Code (claude_code · lboneapi · claude-sonnet-4-6)
## Commits
- **fix: update Claude Longbridge Connector URL from /longbridge-mcp to
/longbridge**
- **feat: add claude.ai connector install guide to MCP page and update
claudeSteps in Skill.vue**
- Add ### claude.ai section to mcp.md (en/zh-CN/zh-HK) with step-by-step
Customize → Connectors → Browser Connectors flow and direct URL
- Update claudeSteps in Skill.vue (all 3 locales) to reflect the same
accurate UI navigation flow
---------
Co-authored-by: Jason Lee <huacnlee@gmail.com>
## What changed
**Skill page (`/skill/`)**
- New **Claude** tab in the install segmented control (Connect AI · Copy
command · ChatGPT · **Claude**), linking to the Claude connector
directory `https://claude.ai/directory/connectors/longbridge-mcp`. Tab
bar now scrolls instead of overflowing on mobile.
- Hero callout now covers both channels: "ChatGPT and Claude can install
Longbridge directly — use `@longbridge` in ChatGPT, or the connector in
Claude." (fixed its layout so the longer sentence wraps cleanly instead
of centering raggedly).
**Home page**
- New **"Now available in ChatGPT and Claude"** intro band above the
FEATURES section, reusing the exact same `eyebrow + h-section` header
style as the other sections, with ChatGPT / Claude logo chips on the
right.
All copy synced across **en / zh-CN / zh-HK**.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: twosugar <sugarfish@yeah.net>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Wrap 6 existing terms across the docs as hyperlinks pointing to the
matching longbridge.com pages (per SEO team requirement doc). Targets
are unprefixed so longbridge.com auto-routes by browser locale; the same
URL is used from all three language sites.
- docs index: community topics -> /topics; watchlist -> /watchlist
- screener/screener_indicators: stock screener -> /screener
- market/calendar/macro_calendar: macroeconomic data ->
/calendar/macrodata
- fundamental/overview: Financial event calendars -> /calendar/macrodata
- content/overview: security news -> /news
- Simplify option_volume response to call_volume and put_volume only
- Rename list to stats in option_volume_daily response
- Add symbol, total_volume, total_open_interest fields to daily stats
- Change pc_vol and pc_oi types from string to float
Adds the release-notes entry for what has landed on
`longbridge-terminal` `main` since v0.25.0, in all three locales (en /
zh-CN / zh-HK).
Covered:
- TUI settings modal (`Ctrl+,`), context-aware shortcut hints, mouse
scrolling — longbridge/longbridge-terminal#272
- TUI visual refresh — longbridge/longbridge-terminal#273
- Access point no longer sticks to China Mainland —
longbridge/longbridge-terminal#276
- `ipo calendar` returned no data — longbridge/longbridge-terminal#275
- Clearer error for US option quotes without OPRA access —
longbridge/longbridge-terminal#271
- `ipo detail` degrades gracefully when an auxiliary endpoint is down —
longbridge/longbridge-terminal#270
The version heading assumes **v0.26.0**, since the batch adds TUI
features rather than only fixes. Say the word if it should ship as
v0.25.1 and I will renumber.
Also refreshes the access-point paragraph in
`skills/longbridge/references/cli/overview.md`, which still described
detection as a non-blocking startup probe keyed off mere reachability,
and adds `LONGBRIDGE_REGION` to the environment-variable table — the CLI
now names that variable in its own error output.
The existing v0.25.0 entry is untouched; the diff is additive.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
## Summary
- move AI Agent directly after Account in all three locales
- keep AI Agent expanded while collapsing Workspace and Conversation so
only the first level is visible
- replace the AI Agent CPU icon with a bot icon and add icons for Market
and Screener
- preserve the configured expanded/collapsed state of all other sidebar
sections
## Test Plan
- generated the English, Simplified Chinese, and Traditional Chinese
sidebars and asserted ordering, nesting, collapse state, and icon output
- ran Prettier checks on the changed sidebar/config files
- ran `git diff --check`
- build not run per repository instructions
Co-authored-by: Codex <codex@openai.com>
Runtime US tenant detection based on cookie `app_id` /
`x-original-app-id` (longbridge_us / longbridge_us_uat), aligned with
openapi-website-private.
- API baseUrl (request.ts) prefers US host when cookie matches:
longbridge_us -> https://mr.longbridge.com
longbridge_us_uat -> https://mr.longbridge-staging.com
falls back to hostname suffix.
- __API_PROXY_URL__ resolves the same way in an inline bootstrap script
that runs before longport-internal.iife.js loads.
- Append `with-us=1` to the login redirect URL.
- Pin longport-internal.iife.js to versioned CDN artifact that contains
US tenant normalization
(assets.lbctrl.com/openapi-sdk/release/longport-internal-202607201728.iife.js).
- Rename portal gateway host m.* -> mr.* in package.json,
region.config.ts,
config.mts and workflow yml.
## Summary
- **CLI v0.25.0 release notes** — US data-center support, 14 US-routed
account/fundamentals commands, `quant run` migrated to the v2 API with
Navi support
- **Changelog** — same CLI entry plus a platform-level note that
Longbridge Developers now supports US account login, with the `.cn`
domain limitation called out
- **Getting Started** — new "Access Points and Data Centers" section
clarifying that `.com`/`.cn` are access points (network routing only)
while `ap`/`us` are data centers, and that `.cn` has no route to the US
data center
All three languages (en / zh-CN / zh-HK) updated in sync. Source for the
DC explanation: `longbridge-terminal/src/region.rs`.
Note: prettier reflowed the environment-variable table in
`docs/en/docs/getting-started.md` — formatting only, no content change.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
`longbridge quant run` now defaults to Navi
([longbridge-terminal#267](https://github.com/longbridge/longbridge-terminal/pull/267)),
so the CLI docs and the `longbridge` skill are rewritten around it.
## Scope
- `docs/{en,zh-CN,zh-HK}/docs/cli/quant/index.md` — language section and
all examples
- `docs/{en,zh-CN,zh-HK}/docs/cli/quant/backtest.md` — 4 strategy
scripts and the `strategy()` settings table
- `skills/longbridge/references/cli/quant.md` — 11 examples
**Every example script is new Navi source and passes `navi lint`.**
## Errors this surfaced
These were already broken before the rewrite:
- **`jq` paths were wrong.** Docs used `.data.report_json`; the report
is at `.report_json`. Every documented backtest one-liner returned
`null`.
- **The Bollinger example was needlessly manual.** It stated `ta.bbands`
was unavailable and built bands from `ta.sma` + `ta.stdev`. Navi's
`ta.bb` returns `(basis, upper, lower)` directly.
- **`strategy()` settings named PineScript symbols** —
`strategy.commission.percent`, `strategy.fixed`,
`strategy.percent_of_equity` — which in Navi are `CommissionType` /
`DefaultQtyType` variants.
- **Indicator outputs were stale.** The six indicator examples now show
real `quant run` output.
## Syntax highlighting
Replaces the OpenPine TextMate grammar with the official Navi grammar
from `navi-docs`, registered as `navi` with an `nv` alias. The `pine`
alias is dropped, and all fences use `nv`.
## Note on remaining stale values
The JSON figures under **Backtesting** in `backtest.md` are carried over
unverified — the quant API has been returning `code=14` (UNAVAILABLE)
and I could not re-run them. Worth re-checking once it recovers. The
indicator tables in `index.md` *are* freshly captured.
Per-language reference detail is kept deliberately thin:
[navi-lang.org](https://navi-lang.org) is authoritative and its API
evolves.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
🤖 Auto-generated by Endless task
[#40](https://endless.longbridge-inc.com/projects/developers/tasks/40).
Initiated by: huacnlee@longbridge-inc.com
Worker agent: Dory (ri · lboneapi · claude-haiku-4-5-20251001)
## Summary
- **Issue**: AI Agent sidebar items were displayed in the middle of the
sidebar due to directory ordering, with expanded state by default,
reducing visibility of higher-priority documentation items (API, CLI,
MCP).
- **Solution**: Implemented sidebar reordering logic to move AI Agent
items to the end of the sidebar (before the external API Reference link)
and set `collapsed: true` for default folded state across all three
language versions (zh-CN, en, zh-HK).
- **Verification**: Modified three `buildDocsSidebar()` functions to
identify AI Agent items by `/ai` path pattern, extract using `splice()`,
set collapsed property, and re-append to end. No changes to core
generation logic (`genMarkdowDocs()`).
## Changes
| File | Change |
|------|--------|
| `docs/.vitepress/locales/zh-CN/sidebar.ts` | Added AI Agent item
reordering and collapse logic to `buildDocsSidebar()` |
| `docs/.vitepress/locales/en/sidebar.ts` | Added AI Agent item
reordering and collapse logic to `buildDocsSidebar()` |
| `docs/.vitepress/locales/zh-HK/sidebar.ts` | Added AI Agent item
reordering and collapse logic to `buildDocsSidebar()` |
🤖 Auto-generated by Endless task
[#39](https://endless.longbridge-inc.com/projects/developers/tasks/39).
Initiated by: huacnlee@longbridge-inc.com
Worker agent: Claude Code (claude_code · anthropic · claude-sonnet-4-6)
## Summary
- Added a link to [https://navi-lang.org](https://navi-lang.org) across
all footer components (AppFooter and both HomePage/NewHomePage variants)
- Created new indicator documentation pages (`indicator.md`) for `en`,
`zh-CN`, and `zh-HK` locales under the CLI quant section
- Each indicator doc introduces Navi's capabilities in the context of
existing quant features and guides users to install the Navi CLI for
local verification
- To verify: check the site footer for the Navi link and navigate to the
CLI → Quant → Indicator docs in all three locales
## Changes
| File | Change |
|---|---|
| `docs/.vitepress/theme/components/AppFooter.vue` | Added Navi
(navi-lang.org) link to the app footer |
| `docs/.vitepress/theme/components/HomePage/Footer.vue` | Added Navi
link to the HomePage footer |
| `docs/.vitepress/theme/components/NewHomePage/Footer.vue` | Added Navi
link to the NewHomePage footer |
| `docs/en/docs/cli/quant/indicator.md` | New EN doc: introduces Navi
for quant indicators and guides Navi CLI installation |
| `docs/zh-CN/docs/cli/quant/indicator.md` | New zh-CN doc: introduces
Navi for quant indicators and guides Navi CLI installation |
| `docs/zh-HK/docs/cli/quant/indicator.md` | New zh-HK doc: introduces
Navi for quant indicators and guides Navi CLI installation |
---------
Co-authored-by: Huacnlee Li Huashun <huacnlee@longbridge-inc.com>
Co-authored-by: Jason Lee <huacnlee@gmail.com>
## Merge Verdict
**[APPROVE]** — Docs-only change: adds Content API overview pages (3
locales) and fixes homepage API capability card links; all link targets
verified against production.
> 4 files · +237 / -7 · `NewHomePage` `docs/content`
---
## Summary
- Homepage "API Capabilities" cards previously all linked to `/api`,
which returns 404 in production — each of the 5 cards now links to its
own capability page via a new `link` field on `API_CAPS`.
- Added `overview.md` for the Content module (News & Contents) in all
three locales (`en`, `zh-CN`, `zh-HK`), following the structure of
`quote/overview.md` / `trade/overview.md`: a categorized table (News ×1
/ Topics ×6 / Sharelist ×9) linking to all 16 endpoint pages.
- Content & News card now points to the new `/docs/content/overview`
page shipped in the same PR.
---
## Risk Analysis
| Risk | Level | Mitigation |
| ------ | ------ | ------------ |
| Broken link targets | ✅ | All 5 card URLs curl-verified:
`/docs/quote/overview`, `/docs/trade/trade-overview`,
`/docs/cli/derivatives/option`,
`/docs/cli/fundamentals/financial-report` return 200 in production;
`/docs/content/overview` is added by this PR |
| Overview link/title drift | ✅ | All 16 table links use the exact
`slug` frontmatter of target pages; titles match target page `title`
verbatim in each locale |
| Sidebar ordering | 🟢 | `sidebar_position: 0` sorts the overview before
News(1)/Topics(2)/Sharelist(3), same pattern as the quote module |
---
## Design Decisions
- **Per-card links instead of a single `/docs/api` link**: matches user
intent for the homepage capability grid; each card lands on its
capability's most relevant page.
- **No Protobuf/WebSocket access sections in the Content overview**:
Content APIs are plain HTTP REST, so the quote overview's
private-protocol sections were intentionally not copied; a one-line HTTP
+ SDK note is kept instead.
---
## Code Concerns
1. **[信息]** Unused component with a stale broken link
(`docs/.vitepress/theme/components/NewHomePage/CapSection.vue:64`)
`CapSection.vue` is referenced by no file (dead code) and contains
`/docs/trade/overview`, a live 404 — pre-existing and outside this diff;
consider deleting the component or fixing its links in a follow-up.
——作者回复:Will be removed in a separate follow-up PR.
---
## Verification Status
✅ Link targets curl-verified against production · ✅ Slugs/titles
cross-checked against target page frontmatter · 📋 To verify: homepage
card navigation in local dev (`bun run dev`), including `/zh-CN` locale
prefix handling
Co-authored-by: 袁昌瑞 <changrui.yuan@longbridge-inc.com>
🤖 Auto-generated by Endless task
[#37](https://endless.longbridge-inc.com/projects/developers/tasks/37).
Initiated by: huacnlee@longbridge-inc.com
- Added Grok as a supported MCP client in the installation documentation
across all three locales (en, zh-CN, zh-HK)
- Documents the step-by-step flow: **Skills and Connectors → Connectors
→ New Connector → Custom**, entering name `Longbridge` and server URL
`https://mcp.longbridge.com`
- Covers completing the Longbridge OAuth 2 authorization after clicking
**Add Connector**
- Updated `Skill.vue` to include Grok in the supported clients list,
positioned after Codex
Co-authored-by: Huacnlee Li Huashun <huacnlee@longbridge-inc.com>
🤖 Auto-generated by Endless task
[#35](https://endless.longbridge-inc.com/projects/developers/tasks/35).
Initiated by: huacnlee@longbridge-inc.com
- Added `app-icon-dark.svg` as a new Longbridge App Icon resource in the
Assets documentation across all locales (en, zh-CN, zh-HK)
- The dark theme icon is intended for use in contexts such as GitHub
avatars, ChatGPT/Claude plugins, and similar integrations
- Updated VitePress config (`config.mts`) to include the new Assets
section in the sidebar navigation
- Documentation added consistently across all three language versions to
maintain i18n parity
---------
Co-authored-by: Huacnlee Li Huashun <huacnlee@longbridge-inc.com>
🤖 Auto-generated by Endless task
[#34](https://endless.longbridge-inc.com/projects/developers/tasks/34).
Initiated by: huacnlee@longbridge-inc.com
- Updated installation instructions across EN, zh-CN, and zh-HK docs to
reflect that the ChatGPT entry point has changed from **Apps** to
**Plugins**
- Modified `mcp.md`, `qa/general.md`, and `skill/install/index.md` in
all three locales (9 files total)
- Ensures users can correctly locate and install the Longbridge plugin
within the ChatGPT interface
Co-authored-by: Huacnlee Li Huashun <huacnlee@longbridge-inc.com>
Auto-generated by skills repo CI.
Source commit:
longbridge/skills@888de9eaf5
Updates `skills.json` with the latest skill list extracted from all
`SKILL.md` frontmatter files.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
🤖 Auto-generated by Endless task
[#33](https://endless.longbridge-inc.com/projects/developers/tasks/33).
Initiated by: huacnlee@longbridge-inc.com
- Added clarification in MCP documentation (EN, zh-CN, zh-HK) that the
MCP published on ChatGPT has special limitations
- Noted that trading/order placement functionality is excluded from the
ChatGPT-hosted MCP
- Explained that these restrictions are due to ChatGPT platform policy
rules
- Updated all three language variants of the MCP docs to keep content
consistent across locales
---------
Co-authored-by: Huacnlee Li Huashun <huacnlee@longbridge-inc.com>