Agent skill

longbridge-chanlun

缠论形态识别——自动检测顶底分型、笔(上升笔/下降笔)、线段、中枢,生成一买/二买/三买/一卖/二卖/三卖信号。依赖 czsc 库。Triggers: "缠论", "分型", "笔", "中枢", "线段", "一买", "二买", "三买", "一卖", "二卖", "三卖", "缠中说禅", "缠师", "纏論", "分型", "筆", "中樞", "線段", "一買", "二買", "三買", "一賣", "二賣", "三賣", "chanlun", "chan theory", "bi", "zhongshu", "buy point", "sell point", "fractal top bottom", "Chan theory".

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill longbridge-chanlun --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0.0
Declared author: longbridge
Path: skills/analysis/longbridge-chanlun/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# longbridge-chanlun 缠论(Chan Theory)形态识别引擎:基于 OHLCV 日线数据,自动检测顶底分型、笔、线段、中枢,并生成一买/一卖、二买/二卖、三买/三卖信号。 ## Requirements > ⚠️ **额外依赖 / Extra dependency required** > > 此 skill 依赖第三方 Python 库 **czsc**,使用前需手动安装: > > ```bash > pip install czsc > ``` > > 若环境无法安装,LLM 将回退到手动实现基础分型逻辑(精度较低)。 > This skill requires the **czsc** Python library. Install it before use: `pip install czsc` > **Response language**: match the user's input language — > Simplified Chinese / Traditional Chinese / English. ## When to use - 用户询问缠论相关分析:*"AAPL.US 缠论分析"*、*"700.HK 现在在哪个买点"*、*"帮我看看 TSLA 的中枢"* - 识别分型(顶分型/底分型)、笔(上升笔/下降笔)、线段结构 - 判断当前买卖点类型(一买/二买/三买/一卖/二卖/三卖) - 用户提到"缠中说禅"、"缠师"、"缠论买点"等关键词 ## Workflow 1. 从用户输入提取标的代码,标准化为 `<CODE>.<MARKET>` 格式。 2. 获取日线 OHLCV 数据(300 根 K 线): ```bash longbridge kline <SYMBOL> --period day --count 300 --format json ``` 3. 将 JSON 数据转换为 czsc 所需的 `RawBar` 列表格式(字段:`dt`, `open`, `high`, `low`, `close`, `vol`)。 4. 使用 czsc 库解析缠论结构: ```python import czsc from czsc import CZSC # bars: list of czsc.RawBar c = CZSC(bars) # 分型: c.fx_list # 笔: c.bi_list # 线段: c.seg_list (if available) # 中枢: c.zs_list (if available) ``` 5. 读取最近的笔序列和中枢,匹配买卖点逻辑: - **一买**:下降笔触及中枢下沿后出现底分型 - **二买**:中枢震荡后上升笔回撤不破中枢低点出现底分型 - **三买**:突

What's inside
Steps it walks through
  1. Requirements
  2. When to use
  3. Workflow
  4. CLI
  5. Output
  6. Error handling
  7. MCP fallback
  8. Related skills
  9. File layout
Ships with 1 file
  • metadata.json
Commands it runs
pip install czsc
longbridge kline <SYMBOL> --period day --count 300 --format json
longbridge kline AAPL.US --period day --count 300 --format json
longbridge kline 700.HK --period week --count 100 --format json
More from claude-skill-registry
All skills →
About this skill
What does the longbridge-chanlun skill do?

缠论形态识别——自动检测顶底分型、笔(上升笔/下降笔)、线段、中枢,生成一买/二买/三买/一卖/二卖/三卖信号。依赖 czsc 库。Triggers: "缠论", "分型", "笔", "中枢", "线段", "一买", "二买", "三买", "一卖", "二卖", "三卖", "缠中说禅", "缠师", "纏論", "分型", "筆", "中樞", "線段", "一買", "二買", "三買", "一賣", "二賣", "三賣", "chanlun", "chan theory", "bi", "zhongshu", "buy point", "sell point", "fractal top bottom", "Chan theory".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill longbridge-chanlun --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going