원클릭으로
intelligence-install-adapter
Enable IDE adapter for intelligence-sync
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Enable IDE adapter for intelligence-sync
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create new specialized agent
Audit the intelligence layer for duplication, drift, size, hardcoded paths and framing
Disable IDE adapter and clean up output
Capture session lessons and apply to intelligence/ after approval
Create new skill
Update or migrate intelligence-sync: discover engine, read changelog, run migration chain, verify
| name | intelligence-install-adapter |
| description | Enable IDE adapter for intelligence-sync |
| argument-hint | <target-name> |
The umbrella is whatever directory holds config.yaml (intelligence/, Intelligence/, a codename — never assume the name or casing); the engine module is the directory under it holding scripts/sync.sh (conventionally sync/).
Check whether target $ARGUMENTS is already enabled in config.yaml — if yes, report and stop.
Locate the adapter. sync.sh discovers adapters in two places:
<module>/scripts/adapters/$ARGUMENTS.sh — upstream-owned. update.sh replaces that whole directory on every engine update.<umbrella>/adapters/$ARGUMENTS.sh — update.sh never touches it. A project adapter of the same name overrides the built-in.If neither exists, research the tool's prompt format (web search for its rules / agents / skills file layout), then copy <module>/scripts/adapters/_template.sh to <umbrella>/adapters/$ARGUMENTS.sh and implement sync_to_$ARGUMENTS(). Author it there, never inside the engine's scripts/adapters/ — a file written there is deleted by the next engine update. Adapter contract: <module>/docs/ADAPTERS.md. An adapter that would serve every project is worth contributing upstream.
Update config.yaml:
enabled: false → flip to enabled: true.targets: with its output: path.AGENTS.md (cursor, copilot, codex, pi, opencode), targets.agents must be enabled too — sync fails closed otherwise.Add the adapter's generated paths to .gitignore (the paths it writes, not the whole output root — a shared root like .github/ or .claude/ also holds tracked, hand-authored files).
Run /intelligence-sync to generate the output.
Report: adapter enabled, files generated, output location.