opencode-skills-collection 4.0.69 → 4.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundled-skills/.antigravity-install-manifest.json +39 -1
- package/bundled-skills/api-integration-architect/SKILL.md +241 -0
- package/bundled-skills/apify-generate-output-schema/SKILL.md +438 -0
- package/bundled-skills/apify-integration-development/SKILL.md +168 -0
- package/bundled-skills/apify-integration-development/references/ai-framework-package.md +158 -0
- package/bundled-skills/apify-integration-development/references/ai-harness-plugin.md +192 -0
- package/bundled-skills/apify-integration-development/references/sdk-integration.md +236 -0
- package/bundled-skills/apify-integration-development/references/workflow-automation.md +163 -0
- package/bundled-skills/architecture-review/README.md +42 -0
- package/bundled-skills/architecture-review/SKILL.md +77 -0
- package/bundled-skills/architecture-review/examples.md +11 -0
- package/bundled-skills/architecture-review/reference/best-practices.md +7 -0
- package/bundled-skills/architecture-review/reference/capabilities.md +20 -0
- package/bundled-skills/architecture-review/reference/fallbacks.md +11 -0
- package/bundled-skills/architecture-review/reference/graph.md +15 -0
- package/bundled-skills/architecture-review/reference/mcp.md +14 -0
- package/bundled-skills/architecture-review/reference/workflow.md +15 -0
- package/bundled-skills/architecture-review/templates/architecture-review.md +21 -0
- package/bundled-skills/code-review-sensei/SKILL.md +177 -0
- package/bundled-skills/codebase-onboarding/README.md +42 -0
- package/bundled-skills/codebase-onboarding/SKILL.md +77 -0
- package/bundled-skills/codebase-onboarding/examples.md +11 -0
- package/bundled-skills/codebase-onboarding/reference/best-practices.md +7 -0
- package/bundled-skills/codebase-onboarding/reference/capabilities.md +20 -0
- package/bundled-skills/codebase-onboarding/reference/fallbacks.md +11 -0
- package/bundled-skills/codebase-onboarding/reference/graph.md +15 -0
- package/bundled-skills/codebase-onboarding/reference/mcp.md +14 -0
- package/bundled-skills/codebase-onboarding/reference/workflow.md +15 -0
- package/bundled-skills/codebase-onboarding/templates/repository-onboarding.md +21 -0
- package/bundled-skills/connection-auth-rules/SKILL.md +199 -0
- package/bundled-skills/connection-auth-rules/fetch_schema.py +320 -0
- package/bundled-skills/dependency-analysis/README.md +42 -0
- package/bundled-skills/dependency-analysis/SKILL.md +76 -0
- package/bundled-skills/dependency-analysis/examples.md +11 -0
- package/bundled-skills/dependency-analysis/reference/best-practices.md +7 -0
- package/bundled-skills/dependency-analysis/reference/capabilities.md +20 -0
- package/bundled-skills/dependency-analysis/reference/fallbacks.md +11 -0
- package/bundled-skills/dependency-analysis/reference/graph.md +15 -0
- package/bundled-skills/dependency-analysis/reference/mcp.md +14 -0
- package/bundled-skills/dependency-analysis/reference/workflow.md +15 -0
- package/bundled-skills/dependency-analysis/templates/dependency-review.md +21 -0
- package/bundled-skills/devops-pipeline-builder/SKILL.md +200 -0
- package/bundled-skills/eas-app-stores/SKILL.md +197 -0
- package/bundled-skills/eas-app-stores/agents/openai.yaml +4 -0
- package/bundled-skills/eas-app-stores/references/app-store-metadata.md +497 -0
- package/bundled-skills/eas-app-stores/references/ios-app-store.md +376 -0
- package/bundled-skills/eas-app-stores/references/native-ios.md +167 -0
- package/bundled-skills/eas-app-stores/references/play-store.md +244 -0
- package/bundled-skills/eas-app-stores/references/testflight.md +62 -0
- package/bundled-skills/eas-app-stores/references/workflows.md +120 -0
- package/bundled-skills/eas-hosting/SKILL.md +448 -0
- package/bundled-skills/eas-hosting/agents/openai.yaml +4 -0
- package/bundled-skills/eas-observe/SKILL.md +75 -0
- package/bundled-skills/eas-observe/agents/openai.yaml +4 -0
- package/bundled-skills/eas-observe/references/metrics.md +98 -0
- package/bundled-skills/eas-observe/references/queries.md +403 -0
- package/bundled-skills/eas-observe/references/setup.md +476 -0
- package/bundled-skills/eas-observe/references/third-party.md +136 -0
- package/bundled-skills/eas-simulator/SKILL.md +251 -0
- package/bundled-skills/eas-simulator/agents/openai.yaml +4 -0
- package/bundled-skills/eas-simulator/references/controllers.md +135 -0
- package/bundled-skills/eas-simulator/references/run-your-app.md +240 -0
- package/bundled-skills/eas-simulator/references/troubleshooting.md +47 -0
- package/bundled-skills/eas-workflows/SKILL.md +119 -0
- package/bundled-skills/eas-workflows/agents/openai.yaml +4 -0
- package/bundled-skills/eas-workflows/scripts/fetch.js +109 -0
- package/bundled-skills/expo-animation/LICENSE +21 -0
- package/bundled-skills/expo-animation/RECIPES.md +385 -0
- package/bundled-skills/expo-animation/SKILL.md +295 -0
- package/bundled-skills/expo-animation/agents/openai.yaml +4 -0
- package/bundled-skills/fact-check-x-unified/SKILL.md +178 -0
- package/bundled-skills/fact-check-x-unified/agents/openai.yaml +4 -0
- package/bundled-skills/fact-check-x-unified/references/acceptance-criteria.md +44 -0
- package/bundled-skills/fact-check-x-unified/references/contracts.md +39 -0
- package/bundled-skills/fact-check-x-unified/scripts/common.py +31 -0
- package/bundled-skills/fact-check-x-unified/scripts/fact_check_x.py +1832 -0
- package/bundled-skills/fact-check-x-unified/scripts/trusted_search_config.py +324 -0
- package/bundled-skills/fact-check-x-unified/tests/anchor_downgrade_test.py +90 -0
- package/bundled-skills/fact-check-x-unified/tests/multi_platform_test.py +369 -0
- package/bundled-skills/fact-check-x-unified/tests/smoke_test.py +740 -0
- package/bundled-skills/fact-check-x-unified/tests/stage_checkpoint_test.py +103 -0
- package/bundled-skills/fact-check-x-unified/tests/trusted_search_config_test.py +156 -0
- package/bundled-skills/gpt-taste/SKILL.md +8 -1
- package/bundled-skills/hf-cli/SKILL.md +263 -0
- package/bundled-skills/huggingface-community-evals/SKILL.md +228 -0
- package/bundled-skills/huggingface-community-evals/examples/.env.example +3 -0
- package/bundled-skills/huggingface-community-evals/examples/USAGE_EXAMPLES.md +101 -0
- package/bundled-skills/huggingface-community-evals/scripts/inspect_eval_uv.py +104 -0
- package/bundled-skills/huggingface-community-evals/scripts/inspect_vllm_uv.py +306 -0
- package/bundled-skills/huggingface-community-evals/scripts/lighteval_vllm_uv.py +297 -0
- package/bundled-skills/huggingface-datasets/SKILL.md +130 -0
- package/bundled-skills/jev-social/SKILL.md +182 -0
- package/bundled-skills/longbridge-derivatives/SKILL.md +117 -0
- package/bundled-skills/longbridge-derivatives/references/option.md +36 -0
- package/bundled-skills/longbridge-derivatives/references/options-advanced.md +101 -0
- package/bundled-skills/longbridge-derivatives/references/options-pnl.md +74 -0
- package/bundled-skills/longbridge-derivatives/references/options-strategy.md +82 -0
- package/bundled-skills/longbridge-derivatives/references/options-volatility.md +70 -0
- package/bundled-skills/longbridge-derivatives/references/warrant.md +12 -0
- package/bundled-skills/longbridge-quant/SKILL.md +151 -0
- package/bundled-skills/longbridge-quant/references/correlation.md +51 -0
- package/bundled-skills/longbridge-quant/references/execution-model.md +68 -0
- package/bundled-skills/longbridge-quant/references/factor-research.md +95 -0
- package/bundled-skills/longbridge-quant/references/factor-screen.md +101 -0
- package/bundled-skills/longbridge-quant/references/hedging.md +136 -0
- package/bundled-skills/longbridge-quant/references/ml-strategy.md +77 -0
- package/bundled-skills/longbridge-quant/references/multifactor.md +68 -0
- package/bundled-skills/longbridge-quant/references/pairs-trading.md +61 -0
- package/bundled-skills/longbridge-quant/references/quant-cli.md +133 -0
- package/bundled-skills/longbridge-quant/references/quant-stats.md +150 -0
- package/bundled-skills/longbridge-quant/references/seasonality.md +50 -0
- package/bundled-skills/longbridge-quant/references/strategy-optimizer.md +68 -0
- package/bundled-skills/longbridge-quant/references/volatility-strategy.md +52 -0
- package/bundled-skills/longbridge-research/SKILL.md +187 -0
- package/bundled-skills/longbridge-research/references/company-profile.md +96 -0
- package/bundled-skills/longbridge-research/references/company-tearsheet.md +82 -0
- package/bundled-skills/longbridge-research/references/competitive-analysis.md +81 -0
- package/bundled-skills/longbridge-research/references/consensus.md +92 -0
- package/bundled-skills/longbridge-research/references/coverage-initiation.md +76 -0
- package/bundled-skills/longbridge-research/references/defi-yield.md +60 -0
- package/bundled-skills/longbridge-research/references/finance-calendar.md +165 -0
- package/bundled-skills/longbridge-research/references/financial-planning.md +77 -0
- package/bundled-skills/longbridge-research/references/forecast-eps.md +39 -0
- package/bundled-skills/longbridge-research/references/fund-holder.md +44 -0
- package/bundled-skills/longbridge-research/references/hkipo-analysis.md +101 -0
- package/bundled-skills/longbridge-research/references/industry-peers.md +46 -0
- package/bundled-skills/longbridge-research/references/industry-rank.md +62 -0
- package/bundled-skills/longbridge-research/references/insider-trades.md +48 -0
- package/bundled-skills/longbridge-research/references/institution-rating.md +62 -0
- package/bundled-skills/longbridge-research/references/investment-ideas.md +69 -0
- package/bundled-skills/longbridge-research/references/investment-proposal.md +95 -0
- package/bundled-skills/longbridge-research/references/investors.md +87 -0
- package/bundled-skills/longbridge-research/references/onchain.md +70 -0
- package/bundled-skills/longbridge-research/references/post-investment.md +76 -0
- package/bundled-skills/longbridge-research/references/shareholder.md +72 -0
- package/bundled-skills/longbridge-research/references/short-positions.md +50 -0
- package/bundled-skills/longbridge-research/references/short-trades.md +50 -0
- package/bundled-skills/longbridge-research/references/stock-research.md +61 -0
- package/bundled-skills/longbridge-research/references/thesis-tracker.md +64 -0
- package/bundled-skills/makepad-2-0-animation/SKILL.md +318 -0
- package/bundled-skills/makepad-2-0-animation/references/animator-reference.md +433 -0
- package/bundled-skills/makepad-2-0-dsl/SKILL.md +492 -0
- package/bundled-skills/makepad-2-0-dsl/references/dsl-syntax-reference.md +511 -0
- package/bundled-skills/makepad-2-0-dsl/references/extended-guide.md +56 -0
- package/bundled-skills/makepad-2-0-dsl/references/property-system.md +757 -0
- package/bundled-skills/makepad-2-0-events/SKILL.md +497 -0
- package/bundled-skills/makepad-2-0-events/references/event-patterns.md +802 -0
- package/bundled-skills/makepad-2-0-events/references/extended-guide.md +590 -0
- package/bundled-skills/makepad-2-0-layout/SKILL.md +499 -0
- package/bundled-skills/makepad-2-0-layout/references/extended-guide.md +243 -0
- package/bundled-skills/makepad-2-0-layout/references/layout-patterns.md +881 -0
- package/bundled-skills/makepad-2-0-widgets/SKILL.md +261 -0
- package/bundled-skills/makepad-2-0-widgets/references/widget-advanced.md +648 -0
- package/bundled-skills/makepad-2-0-widgets/references/widget-catalog.md +547 -0
- package/bundled-skills/meeting-distiller-pro/SKILL.md +120 -0
- package/bundled-skills/monte-carlo-analyze-root-cause/SKILL.md +12 -1
- package/bundled-skills/monte-carlo-asset-health/SKILL.md +12 -1
- package/bundled-skills/monte-carlo-context-detection/SKILL.md +170 -0
- package/bundled-skills/monte-carlo-context-detection/references/signal-definitions.md +46 -0
- package/bundled-skills/remotion-captions/SKILL.md +57 -0
- package/bundled-skills/remotion-captions/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-captions/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-captions/display-captions.md +190 -0
- package/bundled-skills/remotion-captions/import-srt-captions.md +73 -0
- package/bundled-skills/remotion-captions/transcribe-captions.md +70 -0
- package/bundled-skills/remotion-create/SKILL.md +106 -0
- package/bundled-skills/remotion-create/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-create/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-create/tailwind.md +11 -0
- package/bundled-skills/remotion-create/video-layout.md +9 -0
- package/bundled-skills/remotion-docs/SKILL.md +67 -0
- package/bundled-skills/remotion-docs/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-docs/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-interactivity/SKILL.md +270 -0
- package/bundled-skills/remotion-interactivity/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-interactivity/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-render/SKILL.md +48 -0
- package/bundled-skills/remotion-render/agents/openai.yaml +7 -0
- package/bundled-skills/remotion-render/assets/remotion-icon.svg +4 -0
- package/bundled-skills/remotion-render/transparent-videos.md +106 -0
- package/bundled-skills/saas-pricing-strategist/SKILL.md +169 -0
- package/bundled-skills/score-eval/SKILL.md +35 -0
- package/bundled-skills/writing-guidelines/SKILL.md +60 -0
- package/package.json +1 -1
- package/skills_index.json +980 -3
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# longbridge-onchain
|
|
2
|
+
|
|
3
|
+
On-chain data analysis framework — MVRV, NVT, SOPR, whale behaviour, TVL, and DEX liquidity.
|
|
4
|
+
|
|
5
|
+
## Workflow
|
|
6
|
+
|
|
7
|
+
1. Fetch crypto spot quote and recent price history from Longbridge.
|
|
8
|
+
2. Ask the user to provide on-chain data, or guide them to a public source:
|
|
9
|
+
- Glassnode: MVRV, NVT, SOPR, active addresses
|
|
10
|
+
- Dune Analytics: DEX volume, TVL by protocol
|
|
11
|
+
- Nansen: whale wallet labels and flows
|
|
12
|
+
- DefiLlama: cross-chain TVL
|
|
13
|
+
3. Interpret the metrics using standard thresholds:
|
|
14
|
+
- MVRV > 3.0 → historically overheated; < 1.0 → historically undervalued
|
|
15
|
+
- NVT > 90th percentile → overvalued relative to transaction throughput
|
|
16
|
+
- SOPR > 1 → holders selling at profit (potential distribution)
|
|
17
|
+
- SOPR < 1 → holders selling at loss (potential capitulation)
|
|
18
|
+
4. Synthesise a verdict: Undervalued / Fair Value / Overheated / Distribution Zone.
|
|
19
|
+
5. Cross-reference with price trend from Longbridge kline data.
|
|
20
|
+
|
|
21
|
+
> If unsure of exact flag names, run `longbridge <subcommand> --help` before proceeding.
|
|
22
|
+
|
|
23
|
+
## CLI
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Crypto spot quote
|
|
27
|
+
longbridge quote BTCUSD.HAS --format json
|
|
28
|
+
|
|
29
|
+
# Recent daily price trend (ETH example); run --help for period/count flags
|
|
30
|
+
longbridge kline ETHUSD.HAS --format json # run --help for available flags
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Supported crypto symbols use the `.HAS` suffix (e.g. `BTCUSD.HAS`, `ETHUSD.HAS`, `SOLUSD.HAS`).
|
|
34
|
+
|
|
35
|
+
## Output structure
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
ON-CHAIN ANALYSIS — <TOKEN> <Date>
|
|
39
|
+
|
|
40
|
+
PRICE CONTEXT (Longbridge)
|
|
41
|
+
Current: $xx,xxx 7d: +x.x% 30d: +x.x%
|
|
42
|
+
90d Range: $xx,xxx – $xx,xxx
|
|
43
|
+
|
|
44
|
+
ON-CHAIN METRICS (from <source>)
|
|
45
|
+
MVRV: x.xx → [Undervalued | Fair | Overheated]
|
|
46
|
+
NVT: xxx → [Low | Normal | High]
|
|
47
|
+
SOPR: x.xxx → [Accumulation | Neutral | Distribution]
|
|
48
|
+
Active Addresses (7d avg): xxx,xxx
|
|
49
|
+
|
|
50
|
+
DEFI / TVL (if provided)
|
|
51
|
+
Total TVL: $xxB 7d change: +x.x%
|
|
52
|
+
Top Protocol: <Name> $xxB
|
|
53
|
+
|
|
54
|
+
VERDICT
|
|
55
|
+
<2–3 sentence synthesis combining price trend and on-chain signals>
|
|
56
|
+
Signal: [Bullish | Neutral | Bearish | Cautious]
|
|
57
|
+
|
|
58
|
+
DATA SOURCES
|
|
59
|
+
Price: Longbridge Securities
|
|
60
|
+
On-chain: <Glassnode | Dune | User-supplied>
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Error handling
|
|
64
|
+
|
|
65
|
+
| Situation | 简体回复 | 繁體回復 | English reply |
|
|
66
|
+
| ------------------------------- | --------------------------------------------------- | --------------------------------------------------- | -------------------------------------------------------------- |
|
|
67
|
+
| Crypto symbol not found | 请使用 .HAS 后缀格式,如 BTCUSD.HAS。 | 請使用 .HAS 後綴格式,如 BTCUSD.HAS。 | Use the .HAS suffix format, e.g. BTCUSD.HAS. |
|
|
68
|
+
| No on-chain data provided | 链上原始数据请从 Glassnode 或 Dune 获取后提供给我。 | 鏈上原始數據請從 Glassnode 或 Dune 取得後提供給我。 | Please provide on-chain data from Glassnode or Dune Analytics. |
|
|
69
|
+
| `command not found: longbridge` | 请安装 longbridge-terminal 或通过 MCP 连接。 | 請安裝 longbridge-terminal 或透過 MCP 連線。 | Install longbridge-terminal or connect via MCP. |
|
|
70
|
+
| `not logged in` | 请运行 `longbridge auth login`。 | 請執行 `longbridge auth login`。 | Run `longbridge auth login`. |
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# longbridge-post-investment
|
|
2
|
+
|
|
3
|
+
Quarterly / monthly post-investment monitoring — track KPIs, flag deviations, and generate action recommendations.
|
|
4
|
+
|
|
5
|
+
## Workflow
|
|
6
|
+
|
|
7
|
+
1. Extract symbol(s) from the prompt.
|
|
8
|
+
2. Fetch latest financial results: revenue, gross margin, net income, EPS, FCF.
|
|
9
|
+
3. Fetch analyst consensus for the same period (expected vs actual).
|
|
10
|
+
4. Fetch recent price performance (60 days).
|
|
11
|
+
5. Fetch recent news for qualitative context.
|
|
12
|
+
6. For each KPI: compare actual vs consensus; flag as Beat / In-Line / Miss with magnitude.
|
|
13
|
+
7. Assess price action relative to the fundamental outcome.
|
|
14
|
+
8. Generate monitoring report with action recommendation.
|
|
15
|
+
|
|
16
|
+
> If unsure of exact flag names, run `longbridge <subcommand> --help` before proceeding.
|
|
17
|
+
|
|
18
|
+
## CLI
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Latest income statement
|
|
22
|
+
longbridge financial-report <SYMBOL> --kind IS --format json
|
|
23
|
+
|
|
24
|
+
# Analyst consensus (expected vs actual)
|
|
25
|
+
longbridge consensus <SYMBOL> --format json
|
|
26
|
+
|
|
27
|
+
# Recent news and management commentary
|
|
28
|
+
longbridge news <SYMBOL> --format json
|
|
29
|
+
|
|
30
|
+
# Price performance (60-day)
|
|
31
|
+
longbridge kline <SYMBOL> --period day --count 60 --format json
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Output structure
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
# Post-Investment Monitor: <Company> (<SYMBOL>)
|
|
38
|
+
Review date: <today> Period: <quarter/month>
|
|
39
|
+
|
|
40
|
+
## KPI Scorecard
|
|
41
|
+
| KPI | Expected | Actual | Δ | Signal |
|
|
42
|
+
|-----------------|------------|------------|--------|---------|
|
|
43
|
+
| Revenue | | | | ✓ Beat |
|
|
44
|
+
| Gross Margin | | | | ✗ Miss |
|
|
45
|
+
| EPS | | | | ~ In-line |
|
|
46
|
+
| FCF | | | | |
|
|
47
|
+
|
|
48
|
+
## Price Action
|
|
49
|
+
Entry price: $xx.xx Current: $xx.xx Return: ±x.x%
|
|
50
|
+
vs market: ±x.x% vs sector: ±x.x%
|
|
51
|
+
|
|
52
|
+
## Qualitative Check
|
|
53
|
+
Management tone, guidance revision, key risks materialised / resolved.
|
|
54
|
+
|
|
55
|
+
## 指标变化摘要 / Key Metrics Update
|
|
56
|
+
|
|
57
|
+
| 维度 | 预期 | 实际 | 偏差 |
|
|
58
|
+
|---|---|---|---|
|
|
59
|
+
| (根据实际分析填写) | | | |
|
|
60
|
+
|
|
61
|
+
> 以上内容仅供参考,不构成投资建议。投资决策请结合自身风险承受能力独立判断。
|
|
62
|
+
> The above is for reference only and does not constitute investment advice. Investment decisions should be made based on your own risk tolerance.
|
|
63
|
+
|
|
64
|
+
Rationale: ...
|
|
65
|
+
Next review trigger: ...
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Error handling
|
|
69
|
+
|
|
70
|
+
| Situation | 简体回复 | 繁體回復 | English reply |
|
|
71
|
+
| ------------------------------- | -------------------------------------------- | -------------------------------------------- | ----------------------------------------------------------------------- |
|
|
72
|
+
| No recent earnings data | 暂无最新财报数据,无法完成 KPI 对比。 | 暫無最新財報數據,無法完成 KPI 對比。 | No recent earnings data available — KPI comparison cannot be completed. |
|
|
73
|
+
| Consensus data unavailable | 分析师预期数据不可用,仅展示实际数据。 | 分析師預期數據不可用,僅展示實際數據。 | Consensus data unavailable — showing actuals only. |
|
|
74
|
+
| Symbol not found | 未找到该代码,请确认市场和格式。 | 找不到該代碼,請確認市場和格式。 | Symbol not found — verify the exchange and ticker. |
|
|
75
|
+
| `command not found: longbridge` | 请安装 longbridge-terminal 或通过 MCP 连接。 | 請安裝 longbridge-terminal 或透過 MCP 連線。 | Install longbridge-terminal or connect via MCP. |
|
|
76
|
+
| `not logged in` | 请运行 `longbridge auth login`。 | 請執行 `longbridge auth login`。 | Run `longbridge auth login`. |
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# shareholder
|
|
2
|
+
|
|
3
|
+
```
|
|
4
|
+
Institutional shareholders for a symbol
|
|
5
|
+
|
|
6
|
+
Without flags: institution list (change direction, sort). --top: Top20 major shareholders across multiple periods (includes individuals and insiders). --object-id: Holding history and trade detail for a specific shareholder (use `object_id` from --top).
|
|
7
|
+
|
|
8
|
+
Example: longbridge shareholder AAPL.US Example: longbridge shareholder AAPL.US --top Example: longbridge shareholder AAPL.US --object-id 1001 Example: longbridge shareholder AAPL.US --range inc --sort owned
|
|
9
|
+
|
|
10
|
+
Usage: longbridge shareholder [OPTIONS] <SYMBOL>
|
|
11
|
+
|
|
12
|
+
Arguments:
|
|
13
|
+
<SYMBOL>
|
|
14
|
+
Symbol in <CODE>.<MARKET> format
|
|
15
|
+
|
|
16
|
+
Options:
|
|
17
|
+
--top
|
|
18
|
+
Show Top20 major shareholders (multi-period, includes individuals and insiders)
|
|
19
|
+
|
|
20
|
+
--object-id <ID>
|
|
21
|
+
Show holding and trade detail for a specific shareholder ID (from --top output)
|
|
22
|
+
|
|
23
|
+
--range <RANGE>
|
|
24
|
+
Filter by change direction: all | inc (increase) | dec (decrease)
|
|
25
|
+
|
|
26
|
+
[default: all]
|
|
27
|
+
|
|
28
|
+
--sort <SORT>
|
|
29
|
+
Sort field: chg (change) | owned (holdings) | time (report date)
|
|
30
|
+
|
|
31
|
+
[default: chg]
|
|
32
|
+
|
|
33
|
+
--order <ORDER>
|
|
34
|
+
Sort order: desc | asc
|
|
35
|
+
|
|
36
|
+
[default: desc]
|
|
37
|
+
|
|
38
|
+
--count <COUNT>
|
|
39
|
+
Max number of institutions to show (default mode)
|
|
40
|
+
|
|
41
|
+
[default: 50]
|
|
42
|
+
|
|
43
|
+
--periods <PERIODS>
|
|
44
|
+
Number of reporting periods to show with --top (default: 1 = Latest only)
|
|
45
|
+
|
|
46
|
+
[default: 1]
|
|
47
|
+
|
|
48
|
+
--format <FORMAT>
|
|
49
|
+
Output format: 'pretty' for human-readable, 'json' for AI agents and scripting
|
|
50
|
+
|
|
51
|
+
[default: pretty]
|
|
52
|
+
[possible values: table, json]
|
|
53
|
+
|
|
54
|
+
-v, --verbose
|
|
55
|
+
Print verbose request info (host, elapsed) to stderr, prefixed with `*` like curl -v
|
|
56
|
+
|
|
57
|
+
--lang <LANG>
|
|
58
|
+
Language for content fetched from longbridge.com: zh-CN or en. Defaults to system LANG env var, then en
|
|
59
|
+
|
|
60
|
+
-h, --help
|
|
61
|
+
Print help (see a summary with '-h')
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Usage
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
# Run with JSON output for AI agents
|
|
68
|
+
longbridge shareholder --format json
|
|
69
|
+
|
|
70
|
+
# See all options
|
|
71
|
+
longbridge shareholder --help
|
|
72
|
+
```
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# short-positions
|
|
2
|
+
|
|
3
|
+
```
|
|
4
|
+
Short selling open interest — undisclosed short positions held over time
|
|
5
|
+
|
|
6
|
+
Supports US and HK markets; market is inferred from the symbol suffix.
|
|
7
|
+
|
|
8
|
+
US: bi-weekly FINRA short interest data (`short_interest`, `rate`, `days_to_cover`, `close`). HK: daily HKEX disclosed short positions (`open_short_shares`, `balance`, `cost`, `rate`).
|
|
9
|
+
|
|
10
|
+
For daily short sale volume (shares sold short each day), use `short-trades`.
|
|
11
|
+
|
|
12
|
+
Example: longbridge short-positions AAPL.US Example: longbridge short-positions 700.HK
|
|
13
|
+
|
|
14
|
+
Usage: longbridge short-positions [OPTIONS] <SYMBOL>
|
|
15
|
+
|
|
16
|
+
Arguments:
|
|
17
|
+
<SYMBOL>
|
|
18
|
+
Symbol in <CODE>.<MARKET> format (US or HK, e.g. AAPL.US 700.HK)
|
|
19
|
+
|
|
20
|
+
Options:
|
|
21
|
+
--count <COUNT>
|
|
22
|
+
Number of records to return (1–100, default: 20)
|
|
23
|
+
|
|
24
|
+
[default: 20]
|
|
25
|
+
|
|
26
|
+
--format <FORMAT>
|
|
27
|
+
Output format: 'pretty' for human-readable, 'json' for AI agents and scripting
|
|
28
|
+
|
|
29
|
+
[default: pretty]
|
|
30
|
+
[possible values: table, json]
|
|
31
|
+
|
|
32
|
+
-v, --verbose
|
|
33
|
+
Print verbose request info (host, elapsed) to stderr, prefixed with `*` like curl -v
|
|
34
|
+
|
|
35
|
+
--lang <LANG>
|
|
36
|
+
Language for content fetched from longbridge.com: zh-CN or en. Defaults to system LANG env var, then en
|
|
37
|
+
|
|
38
|
+
-h, --help
|
|
39
|
+
Print help (see a summary with '-h')
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Run with JSON output for AI agents
|
|
46
|
+
longbridge short-positions --format json
|
|
47
|
+
|
|
48
|
+
# See all options
|
|
49
|
+
longbridge short-positions --help
|
|
50
|
+
```
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# short-trades
|
|
2
|
+
|
|
3
|
+
```
|
|
4
|
+
Daily short sale volume — shares sold short each trading day
|
|
5
|
+
|
|
6
|
+
Supports US and HK markets; market is inferred from the symbol suffix.
|
|
7
|
+
|
|
8
|
+
US: FINRA/NASDAQ daily short volume (`nus_amount`, `ny_amount`, `total_amount`, `rate`, `close`). Data source: NASDAQ + NYSE consolidated short sale reports. HK: HKEX daily short sale volume (`amount`, `balance`, `total_amount`, `rate`, `close`). Data source: HKEX daily short selling disclosure.
|
|
9
|
+
|
|
10
|
+
For total open short interest (cumulative undisclosed positions), use `short-positions`.
|
|
11
|
+
|
|
12
|
+
Example: longbridge short-trades AAPL.US Example: longbridge short-trades 700.HK
|
|
13
|
+
|
|
14
|
+
Usage: longbridge short-trades [OPTIONS] <SYMBOL>
|
|
15
|
+
|
|
16
|
+
Arguments:
|
|
17
|
+
<SYMBOL>
|
|
18
|
+
Symbol in <CODE>.<MARKET> format (US or HK, e.g. AAPL.US 700.HK)
|
|
19
|
+
|
|
20
|
+
Options:
|
|
21
|
+
--count <COUNT>
|
|
22
|
+
Number of records to return (1–100, default: 20)
|
|
23
|
+
|
|
24
|
+
[default: 20]
|
|
25
|
+
|
|
26
|
+
--format <FORMAT>
|
|
27
|
+
Output format: 'pretty' for human-readable, 'json' for AI agents and scripting
|
|
28
|
+
|
|
29
|
+
[default: pretty]
|
|
30
|
+
[possible values: table, json]
|
|
31
|
+
|
|
32
|
+
-v, --verbose
|
|
33
|
+
Print verbose request info (host, elapsed) to stderr, prefixed with `*` like curl -v
|
|
34
|
+
|
|
35
|
+
--lang <LANG>
|
|
36
|
+
Language for content fetched from longbridge.com: zh-CN or en. Defaults to system LANG env var, then en
|
|
37
|
+
|
|
38
|
+
-h, --help
|
|
39
|
+
Print help (see a summary with '-h')
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Run with JSON output for AI agents
|
|
46
|
+
longbridge short-trades --format json
|
|
47
|
+
|
|
48
|
+
# See all options
|
|
49
|
+
longbridge short-trades --help
|
|
50
|
+
```
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# longbridge-stock-research
|
|
2
|
+
|
|
3
|
+
Generates a concise equity research snapshot for a single stock by aggregating analyst consensus, key financials, valuation, 60-day price performance, and recent news — structured like a sell-side research brief.
|
|
4
|
+
|
|
5
|
+
## Workflow
|
|
6
|
+
|
|
7
|
+
1. Parse the symbol and normalise to `<CODE>.<MARKET>` (see symbol format below).
|
|
8
|
+
2. Run all five CLI commands (parallel is fine):
|
|
9
|
+
- Analyst consensus estimates
|
|
10
|
+
- Income statement (latest 4 quarters or annual)
|
|
11
|
+
- Valuation snapshot
|
|
12
|
+
- Recent news (latest 10 items)
|
|
13
|
+
- 60-day daily candlestick
|
|
14
|
+
3. Synthesise into a structured research brief (see Output section).
|
|
15
|
+
4. Cite data source as **Longbridge Securities** / **数据来源:长桥证券** / **數據來源:長橋證券**.
|
|
16
|
+
|
|
17
|
+
## Symbol format
|
|
18
|
+
|
|
19
|
+
`<CODE>.<MARKET>` — e.g. `NVDA.US`, `700.HK`, `600519.SH`, `300750.SZ`, `D05.SG`. If the market is ambiguous, ask the user.
|
|
20
|
+
|
|
21
|
+
## CLI
|
|
22
|
+
|
|
23
|
+
> If you're unsure of exact flag names or defaults, run `longbridge <subcommand> --help` first.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Analyst consensus (target price, EPS estimates, rating distribution)
|
|
27
|
+
longbridge consensus <SYMBOL> --format json
|
|
28
|
+
|
|
29
|
+
# Income statement (revenue, net income, EPS — quarterly)
|
|
30
|
+
longbridge financial-report <SYMBOL> --kind IS --format json
|
|
31
|
+
|
|
32
|
+
# Valuation snapshot (PE / PB / PS / EV-EBITDA)
|
|
33
|
+
longbridge valuation <SYMBOL> --format json
|
|
34
|
+
|
|
35
|
+
# Recent news (latest 10 items)
|
|
36
|
+
longbridge news <SYMBOL> --format json
|
|
37
|
+
|
|
38
|
+
# 60-day daily OHLCV
|
|
39
|
+
longbridge kline <SYMBOL> --period day --count 60 --format json
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Output
|
|
43
|
+
|
|
44
|
+
Structure the response as a research brief with these sections:
|
|
45
|
+
|
|
46
|
+
1. **Company snapshot** — name, market, sector, market cap, current price + 60-day change
|
|
47
|
+
2. **Financial highlights** — revenue / net income / EPS (last reported + YoY growth)
|
|
48
|
+
3. **Valuation** — PE / PB / PS vs industry median (if available)
|
|
49
|
+
4. **Analyst consensus** — avg target price, buy/hold/sell count, implied upside
|
|
50
|
+
5. **Price performance** — 60-day return, high/low range
|
|
51
|
+
6. **Key news** — top 3–5 items with date and one-line summary
|
|
52
|
+
7. **Investment considerations** — balanced bull/bear summary (2–3 points each)
|
|
53
|
+
|
|
54
|
+
## Error handling
|
|
55
|
+
|
|
56
|
+
| Situation | Simplified Chinese | Traditional Chinese / English |
|
|
57
|
+
| -------------------------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------- |
|
|
58
|
+
| `command not found: longbridge` | 回退到 MCP;否则提示用户安装 longbridge-terminal | 回退到 MCP;否則提示安裝 / Fall back to MCP; otherwise prompt to install longbridge-terminal |
|
|
59
|
+
| `not logged in` / `unauthorized` | 请运行 `longbridge auth login` | 請運行 `longbridge auth login` / Run `longbridge auth login` |
|
|
60
|
+
| Invalid symbol / `param_error` | 请确认股票代码格式,例如 NVDA.US | 請確認股票代碼格式 / Check symbol format e.g. NVDA.US |
|
|
61
|
+
| Other stderr | 原样展示错误信息,不重试 | 原樣展示錯誤,不重試 / Surface verbatim, no silent retry |
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# longbridge-thesis-tracker
|
|
2
|
+
|
|
3
|
+
Checks whether an investment thesis for a given stock is intact by pulling the latest financial data, analyst revisions, news, and regulatory filings, then rendering a structured verdict.
|
|
4
|
+
|
|
5
|
+
## Workflow
|
|
6
|
+
|
|
7
|
+
1. Ask the user to state their thesis pillars if not already provided (e.g. _"AI capex supercycle"_, _"margin expansion to 30%"_, _"China re-opening"_).
|
|
8
|
+
2. Map each pillar to one or more measurable data points.
|
|
9
|
+
3. Run CLI commands to fetch the latest evidence.
|
|
10
|
+
4. For each pillar, render: **Still intact / Weakened / Broken** with supporting data.
|
|
11
|
+
5. Overall verdict: thesis confidence score (High / Medium / Low) + recommended action.
|
|
12
|
+
|
|
13
|
+
## CLI
|
|
14
|
+
|
|
15
|
+
> If you're unsure of exact flag names or defaults, run `longbridge <subcommand> --help` first.
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Recent news and regulatory filings (catalyst/risk updates)
|
|
19
|
+
longbridge news <SYMBOL> --format json
|
|
20
|
+
|
|
21
|
+
# Latest income statement (revenue growth, margin trends)
|
|
22
|
+
longbridge financial-report <SYMBOL> --kind IS --format json
|
|
23
|
+
|
|
24
|
+
# Analyst consensus (EPS revisions, target price changes, rating)
|
|
25
|
+
longbridge consensus <SYMBOL> --format json
|
|
26
|
+
|
|
27
|
+
# SEC / HKEx regulatory filings (material disclosures)
|
|
28
|
+
longbridge filing <SYMBOL> --format json
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Output
|
|
32
|
+
|
|
33
|
+
Structure the tracker output as follows:
|
|
34
|
+
|
|
35
|
+
**Header**: Symbol, company name, today's date, thesis check date
|
|
36
|
+
|
|
37
|
+
**Thesis pillars status table**:
|
|
38
|
+
|
|
39
|
+
| Pillar | Data Point | Last Value | vs Expectation | Status |
|
|
40
|
+
| ------------------------- | ------------------ | ---------- | -------------- | -------- |
|
|
41
|
+
| e.g. Revenue acceleration | YoY revenue growth | +24% | >20% target | Intact |
|
|
42
|
+
| e.g. Margin expansion | Gross margin % | 61% | >65% target | Weakened |
|
|
43
|
+
|
|
44
|
+
**Catalyst tracking**:
|
|
45
|
+
|
|
46
|
+
- List of expected catalysts, whether they have materialised, and market reaction
|
|
47
|
+
|
|
48
|
+
**Risk monitoring**:
|
|
49
|
+
|
|
50
|
+
- Key risks flagged at thesis initiation and current status
|
|
51
|
+
|
|
52
|
+
**Overall verdict**:
|
|
53
|
+
|
|
54
|
+
> **Thesis confidence: Medium** — 2 of 4 pillars intact. Core AI-driven revenue growth on track; margin expansion lagging. No thesis-breaking events in filings. Suggest hold and monitor next earnings.
|
|
55
|
+
|
|
56
|
+
## Error handling
|
|
57
|
+
|
|
58
|
+
| Situation | Simplified Chinese | Traditional Chinese / English |
|
|
59
|
+
| -------------------------------- | -------------------------------------------- | -------------------------------------------------------------- |
|
|
60
|
+
| `command not found: longbridge` | 回退到 MCP;否则提示安装 longbridge-terminal | 回退到 MCP;否則提示安裝 / Fall back to MCP; prompt to install |
|
|
61
|
+
| `not logged in` / `unauthorized` | 请运行 `longbridge auth login` | 請運行 `longbridge auth login` / Run `longbridge auth login` |
|
|
62
|
+
| No thesis pillars provided | 请告知您的核心买入逻辑(2–5条) | 請提供核心買入邏輯 / Please state 2–5 thesis pillars |
|
|
63
|
+
| `filing` subcommand unavailable | 跳过监管文件检索,标注缺失 | 跳過文件檢索,標注缺失 / Skip filing fetch, flag as missing |
|
|
64
|
+
| Other stderr | 原样展示错误,不重试 | 原樣展示,不重試 / Surface verbatim, no silent retry |
|