Gangtise Copilot (Investment-Research Skill Installer & Doctor)
One-command installer, credential configurator, and health doctor for the 19 official Gangtise (岗底斯) investment-research OpenAPI skills.
Data & AnalyticsIntermediate★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
- One-shot install: downloads 4 bundle ZIPs from the official Huawei Cloud OBS bucket, extracts 19 Gangtise skills, and symlinks them into Claude Code / Codex / OpenClaw skills directories.
- Centralized credentials: stores accessKey / secretAccessKey once in
~/.config/gangtise/authorization.json(mode 600), symlinks all 19 skills'.authorizationfiles to it, and verifies with a live login call. - Read-only diagnostics:
diagnose.shreports which skills are installed, whether credentials are valid, and whether the RAG endpoint responds — mapping each failure to a section inknown_issues.md. - Skill routing registry: a lookup table answering "which Gangtise skill answers this question", split into data layer (6), workflow layer (10), and utilities (3).
- Presets:
minimal(3 safe skills),workshop, andfull(all 19) so the install matches your account's license/ACL.
Who it's for
- Analysts and research teams who already hold a Gangtise API account
- Anyone pulling A-share / HK equity research reports, financial statements, valuation metrics, or OHLC data into an AI agent
- Users tired of hunting down undiscoverable ZIPs and duplicating credential files 19 times
- Not useful without a Gangtise account — there is no free/mock mode.
Examples
- Zero to working: "set up gangtise from scratch" → runs Steps 1–5 (install → configure keys → diagnose) until you see
9 pass / 0 fail. - Error triage: hitting
token is invalidor接口地址错误→ rundiagnose.shto find which skills lost their.authorizationsymlink, then re-runconfigure_auth.shto repair. - Query routing: "get CATL's last 30 days of research reports plus daily candles" → registry routes to
gangtise-file-client(report runner) andgangtise-data-client(quote runner).
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the daymade-financial/gangtise-copilot folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/gangtise-copilot/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone --depth 1 https://github.com/daymade/claude-code-skills.git /tmp/cs && cp -r /tmp/cs/gangtise-copilot ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo to a temp folder:
git clone --depth 1 https://github.com/daymade/claude-code-skills.git /tmp/cs - Copy just this skill:
mkdir -p ~/.claude/skills && cp -r /tmp/cs/gangtise-copilot ~/.claude/skills/ - Restart Claude Code and type "install gangtise" to confirm the skill is detected.
- Install the official skills:
bash ~/.claude/skills/gangtise-copilot/scripts/install_gangtise.sh --preset minimal(use--preset fullonly if your account has theskills-backend/*ACL). - Configure credentials:
bash ~/.claude/skills/gangtise-copilot/scripts/configure_auth.sh --access-key <your-key> --secret-key <your-secret> - Verify:
bash ~/.claude/skills/gangtise-copilot/scripts/diagnose.sh— all ✅ means you're done. - Never paste your keys into chat logs or public repos; keep them only in
~/.config/gangtise/authorization.jsonwith mode 600.
View source on GitHub ↗License: MIT