Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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 & AnalyticsIntermediate1,323212AI 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' .authorization files to it, and verifies with a live login call.
  • Read-only diagnostics: diagnose.sh reports which skills are installed, whether credentials are valid, and whether the RAG endpoint responds — mapping each failure to a section in known_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, and full (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

  1. Zero to working: "set up gangtise from scratch" → runs Steps 1–5 (install → configure keys → diagnose) until you see 9 pass / 0 fail.
  2. Error triage: hitting token is invalid or 接口地址错误 → run diagnose.sh to find which skills lost their .authorization symlink, then re-run configure_auth.sh to repair.
  3. Query routing: "get CATL's last 30 days of research reports plus daily candles" → registry routes to gangtise-file-client (report runner) and gangtise-data-client (quote runner).

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo to a temp folder: git clone --depth 1 https://github.com/daymade/claude-code-skills.git /tmp/cs
  3. Copy just this skill: mkdir -p ~/.claude/skills && cp -r /tmp/cs/gangtise-copilot ~/.claude/skills/
  4. Restart Claude Code and type "install gangtise" to confirm the skill is detected.
  5. Install the official skills: bash ~/.claude/skills/gangtise-copilot/scripts/install_gangtise.sh --preset minimal (use --preset full only if your account has the skills-backend/* ACL).
  6. Configure credentials: bash ~/.claude/skills/gangtise-copilot/scripts/configure_auth.sh --access-key <your-key> --secret-key <your-secret>
  7. Verify: bash ~/.claude/skills/gangtise-copilot/scripts/diagnose.sh — all ✅ means you're done.
  8. Never paste your keys into chat logs or public repos; keep them only in ~/.config/gangtise/authorization.json with mode 600.