Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

ide-adapter-skillide 适配器技巧

Agent Skill

ide-adapter-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

282

周安装

12

GitHub Stars

3

下载量

99
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ide-adapter-skill(ide 适配器技巧)
来源仓库:https://github.com/godstale/ide-adapter-skill
仓库路径:skills/ide-adapter-skill
安装命令:
npx skills add https://github.com/godstale/ide-adapter-skill --skill ide-adapter-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/godstale/ide-adapter-skill --skill ide-adapter-skill

简介

ide-adapter-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于 IDE 配置、插件兼容性或开发环境搭建相关的信息调研场景。
  • 通过关键词搜索和仓库内容分析,帮助 Agent 快速找到适配的开发工具或配置方案。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

IDEAS - IDE Adapter Skill

Connect to the IDE Adapter VS Code extension WebSocket server and use VS Code's language intelligence, git history, and file system features from Claude Code.

Abbreviation: IDEAS (IDE Adapter Skill) - pronounced "ideas"

Prerequisites

  1. IDE Adapter extension must be running in VS Code
  2. Python dependency: pip install websocket-client

Settings Auto-Detection

The script automatically reads port and token from .vscode/settings.json in the current directory or any parent directory. No need to pass --port or --token manually as long as the script is run from inside (or below) the workspace directory.

// .vscode/settings.json
{
  "idea.server.port": 7200,
  "idea.server.authToken": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

If explicit values are provided via --port / --token, those take priority over the file.

Workflow

Step 1: Run the client script

python <skill-dir>/scripts/idea_client.py --topic <topic> --params '<json>'

The script: auto-loads settings -> connect -> handshake -> request -> print JSON -> exit.

Step 2: Parse the response

Success: response has result key Error: response has error key with code and message

See references/protocol.md for all result shapes.


Windows (Git Bash) - Required Workarounds

Two issues occur when running idea_client.py directly in Git Bash on Windows:

Issue 1: Path expansion of /app/vscode/...

Git Bash expands /app/vscode/... to C:/Program Files/Git/app/vscode/..., breaking the topic.

Fix: Use MSYS_NO_PATHCONV=1 prefix OR call via Python subprocess (recommended).

Issue 2: cp949 encoding error

Python's stdout on Korean Windows defaults to cp949, causing UnicodeEncodeError when the response contains non-cp949 characters (e.g., em dash - in commit messages).

Fix: The script now calls sys.stdout.reconfigure(encoding="utf-8") automatically. However, if running via subprocess from another Python script, pass encoding='utf-8'.

Recommended call pattern on Windows

Always call via Python subprocess to avoid both issues at once:

import subprocess, sys, os

SCRIPT = "C:/Users/<user>/.claude/skills/ide-adapter-skill/scripts/idea_client.py"
env = {**os.environ, "PYTHONIOENCODING": "utf-8"}

result = subprocess.run(
    [sys.executable, SCRIPT, "--topic", "/app/vscode/fs/findFiles",
     "--params", '{"query": "App", "include": "**/*.tsx"}'],
    capture_output=True, text=True, encoding="utf-8", env=env,
    cwd="<workspace-path>"   # ensures .vscode/settings.json is found
)
print(result.stdout)

Setting cwd to the workspace root ensures settings.json is found for auto-detection.


Quick Reference: Common Tasks

Find files by name

--topic /app/vscode/fs/findFiles --params '{"query": "App", "include": "**/*.tsx"}'

Search text in workspace

--topic /app/vscode/edit/find --params '{"pattern": "IHandler", "include": "**/*.ts"}'

Get diagnostics (errors/warnings)

--topic /app/vscode/diag/list --params '{"filePath": "src/extension.ts", "severity": "error"}'

Find symbol definition (line/character are 0-indexed)

--topic /app/vscode/nav/definition --params '{"filePath": "/abs/path/file.ts", "line": 10, "character": 5}'

Git history of a file

--topic /app/vscode/history/list --params '{"filePath": "src/extension.ts", "maxCount": 10}'

Diff working tree vs HEAD

--topic /app/vscode/history/diff --params '{"filePath": "src/extension.ts", "fromIndex": 0, "toIndex": 1}'

Roll back to a commit (toIndex=1=HEAD, toIndex=2=HEAD~1)

--topic /app/vscode/history/rollback --params '{"filePath": "src/extension.ts", "toIndex": 2}'

VS Code local save history

--topic /app/vscode/localhistory/list --params '{"filePath": "src/extension.ts"}'

Full Protocol Reference

See references/protocol.md for all topics, params, result shapes, error codes, and index semantics for git history.


Troubleshooting

ProblemSolution
CONNECTION_FAILEDIDE Adapter not running or wrong port. Check VS Code status bar.
UNAUTHORIZEDauthToken missing from .vscode/settings.json or wrong value.
UNKNOWN_TOPIC with C:/Program Files/Git/... prefixGit Bash path expansion. Use subprocess pattern above.
UnicodeEncodeError: cp949Update to latest idea_client.py (auto-fixes via reconfigure).
ModuleNotFoundError: websocketRun pip install websocket-client
INVALID_REQUESTCheck required params. filePath must be absolute for nav/definition/references.
HANDLER_ERRORVS Code internal error. File may not exist or git repo unavailable.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.96%
按下载量换算37

Claude

26.91%
按下载量换算27

Cursor

17.19%
按下载量换算17

Gemini CLI

9.44%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/godstale/ide-adapter-skill --skill ide-adapter-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills