IMA Copilot
One-command installer, troubleshooter, and personalization layer for the official Tencent IMA skill.
Overview
The official Tencent IMA skill (ima-skill) exposes a powerful OpenAPI for notes and knowledge base operations, but its installation flow is designed for a specific proprietary agent and recent releases have shipped submodule files that fail strict SKILL.md loaders. IMA Copilot solves both problems:
- Installs ima-skill to Claude Code, Codex, and OpenClaw in a single command via the vercel-labs/skills open installer.
- Walks the user through API key setup with a live validation call.
- Detects known upstream issues and — with explicit user consent — fixes them in place, without ever forking, vendoring, or mirroring any part of the upstream package.
- Provides a fan-out search strategy that respects user-configured knowledge base priorities and boosts, with awareness of the 100-result per-KB truncation limit.
Architectural principles (do not violate)
This skill is a wrapper layer around ima-skill. The wrapper contract is non-negotiable:
- Never vendor upstream files. This skill directory does not contain any copy, fork, or excerpt of ima-skill's own content. When ima-skill ships a new release, users get the new release without any interference from this wrapper.
- Repairs happen at runtime, not at ship time. If an upstream bug needs patching, this skill carries the instructions for how to patch, not the patched files. Running a repair is idempotent: rerunning after an upstream update re-detects and re-fixes anything that came back.
- Always ask before touching upstream files. Modifying
~/.claude/skills/ima-skill/**
, ~/.agents/skills/ima-skill/**
, or any other upstream install directory requires explicit user consent via AskUserQuestion. No silent patching.
- Teach rather than hide. When a fix is applied, show the user exactly what changed and where the backup was saved. This is how users learn to maintain their own installs.
What this skill does
| Capability | Entry point | Detail |
|---|
| 1. Install upstream ima-skill to 3 agents | scripts/install_ima_skill.sh
| See references/installation_flow.md
|
| 2. Configure API credentials (XDG style) | Inline workflow below | See references/api_key_setup.md
|
| 3. Diagnose and fix known upstream issues | + workflow below | See references/known_issues.md
|
| 4. Fan-out search with priority boosting | | See references/search_best_practices.md
|
Routing
When this skill is triggered, classify the user's intent and jump to the corresponding capability:
| User says something like… | Go to |
|---|
| "装 ima"、"install ima-skill"、"把 ima 装一下"、"我想用 ima" | Capability 1 |
| "配 ima 的 key"、"configure ima credentials"、"ima API key" | Capability 2 |
| "ima 报错"、"SKILL.md warning"、"frontmatter 错误"、"ima 加载失败" | Capability 3 |
| "搜 X"、"在 ima 里搜 X"、"跨知识库搜索"、"扇出搜 X" | Capability 4 |
| "帮我从头跑一遍 ima" | 1 → 2 → 3 → 4 in sequence |
When in doubt, start with Capability 3 (diagnose) — it surfaces exactly which capabilities are blocked and in what order.
Capability 1: Install upstream ima-skill
The installer downloads the latest official release from
https://app-dl.ima.qq.com/skills/
, stages it in a temp directory, and hands off to
npx skills add <local-path>
to distribute it across Claude Code, Codex, and OpenClaw.
To run it:
bash
bash scripts/install_ima_skill.sh
The script auto-detects which of the three target agents are installed on the user's machine. For agents that are not present, it skips silently rather than installing anywhere the user hasn't opted in. For agents that are present, it installs globally (
) in vercel skills' default symlink mode: the first detected agent's directory becomes the canonical copy, and the remaining agents are symlinked to it. This means a repair or an upgrade applied once propagates automatically to every agent —
detects this sharing and dedupes its reports so you don't see the same issue multiple times.
For a version override, detection logic, troubleshooting, and the full file-by-file layout produced by the installer, read
references/installation_flow.md
.
Capability 2: Configure API credentials
Credentials are stored in XDG style, decoupled from any agent's skill directory:
Environment variables
and
act as fall-back overrides — the wrapper reads the environment first, then the config file.
Step through the setup with the user:
- Open
https://ima.qq.com/agent-interface
and create a new Client ID and API Key.
- Write both values into the XDG config path (or export the environment variables).
- Make a single liveness call against
https://ima.qq.com/openapi/wiki/v1/search_knowledge_base
with {"query": "", "cursor": "", "limit": 1}
to confirm the credentials are accepted — a response means ready.
The full script and the exact request/response schema lives in
references/api_key_setup.md
.
Capability 3: Diagnose and fix known issues
This is the reason this skill exists. The upstream package has real bugs that break loading on certain agents, and the fixes are well-understood but need user consent to apply. The diagnose/repair workflow is the core contract of this skill.
Step 1 — Run the read-only diagnosis
never modifies any file. It prints a structured report with one line per check:
✅ upstream ima-skill installed (claude-code)
✅ upstream ima-skill installed (codex)
❌ upstream ima-skill NOT installed (openclaw)
✅ API credentials valid (search_knowledge_base returned 12 KBs)
⚠️ ISSUE-001: notes/SKILL.md missing YAML frontmatter (claude-code)
⚠️ ISSUE-001: knowledge-base/SKILL.md missing YAML frontmatter (claude-code)
⚠️ ISSUE-001: notes/SKILL.md missing YAML frontmatter (codex)
⚠️ ISSUE-001: knowledge-base/SKILL.md missing YAML frontmatter (codex)
Step 2 — Parse the report and ask the user
For each
or
line, look up the issue in
references/known_issues.md
. That file is the source of truth for:
- What the issue is (symptom, root cause)
- Which repair strategies exist (, , )
- The exact shell commands for each strategy
- What files each strategy touches
- Why the upstream maintainer probably hasn't fixed it yet
Step 3 — Ask for explicit consent before touching upstream files
Use AskUserQuestion for every issue that has more than one repair strategy. Frame it plainly — the user may not know what "YAML frontmatter" means. Describe what the bug does to them in user terms ("loader skips two files silently, so note-search and knowledge-base-search don't actually work"), then describe each strategy in terms of the outcome, not the mechanism.
Never offer a single "just fix it" option when multiple strategies exist. The user's pick may legitimately differ based on factors the skill cannot observe — e.g., they might prefer Strategy B (minimal diff) if they plan to manually compare with upstream.
Step 4 — Execute the chosen strategy
Every repair command in
references/known_issues.md
is written to be:
- Idempotent — rerunning after the fix is already applied does nothing harmful and prints a clear "already fixed" message.
- Backed up — the repair copies the original file to
/tmp/ima-copilot-backups/<timestamp>/<relative-path>
before modifying anything, then tells the user the backup location.
- Reversible — the user can restore from the backup with a single command shown at the end.
Step 5 — Re-run diagnose to confirm
After the repair, run
a second time and show the user the diff. The issue should flip from
to
. If it does not, stop and surface the raw before/after to the user instead of silently retrying — unexpected failures here usually mean upstream shipped an unforeseen change.
An important note about upstream updates
Every repair is
temporary in the sense that ima-skill upgrades replace everything. This is by design: the skill does not fight upstream for persistent state. When the user upgrades ima-skill via Capability 1, Step 4 of diagnose will again flag the fixed issue, and the user can rerun the repair. This is a feature, not a bug — if upstream eventually fixes the issue, the repair becomes unnecessary and
will report ✅ with no prompt.
Capability 4: Personalized fan-out search
IMA's OpenAPI has three hard constraints that any serious search workflow must account for:
- No cross-knowledge-base endpoint. requires a single per call. Cross-KB search is a client-side fan-out, not an API feature.
- No relevance score in results. items only carry , , , and . Any ranking beyond insertion order must happen on the client.
- Silent 100-result truncation. returns at most 100 hits per KB with no or field in the response. High-frequency queries are silently capped.
implements the full workaround:
bash
python3 scripts/search_fanout.py "<query>"
The script reads
~/.config/ima/copilot.json
for personalization (priority KBs, skip list, strategy), calls
to enumerate KBs, fans out
calls in parallel, detects truncation by exact-100 length match, and renders results grouped by KB with priority groups at the top.
The personalization file is
per-user and private. This skill ships only a template — see
config-template/copilot.json.example
. A user with no config file gets a neutral default: fan out all accessible KBs, sort groups by hit count, no boosting.
For the full algorithm, truncation handling strategy, rendering format, and a walkthrough of the evidence-based decision to allow a "subset KB skip" (e.g., a curated KB that is a strict subset of a master KB can be safely skipped to reduce duplicate hits), read
references/search_best_practices.md
.
What this skill refuses to do
- Never vendor upstream content. This directory does not contain and will never contain a copy of , ,
ima-skill/knowledge-base/**
, or any other upstream file. Anyone adding such files to this skill should be rejected.
- Never pin an upstream version in SKILL.md. The installer script carries a default version for fallback purposes, but SKILL.md itself is version-agnostic to survive upstream releases without requiring a skill bump.
- Never silently patch upstream files. Every modification path requires an explicit AskUserQuestion and the user's active choice.
- Never hardcode a user's knowledge base names. The and fields in are 100% user-configured. Example values in
config-template/copilot.json.example
are illustrative only.
- Never skip the backup step when executing a repair, no matter how trivial the diff.
File layout
ima-copilot/
├── SKILL.md # This file — entry and routing
├── scripts/
│ ├── install_ima_skill.sh # Download → stage → npx skills add to 3 agents
│ ├── diagnose.sh # Read-only health report
│ └── search_fanout.py # Fan-out search with priority grouping
├── references/
│ ├── installation_flow.md # Capability 1 deep dive
│ ├── api_key_setup.md # Capability 2 deep dive
│ ├── known_issues.md # Issue registry — source of truth for repairs
│ └── search_best_practices.md # Capability 4 deep dive
└── config-template/
└── copilot.json.example # Template for ~/.config/ima/copilot.json