Claude-code-skills ln-012-mcp-configurator
Use when installing MCP packages and configuring Claude-side MCP registration, hooks, permissions, IDE extension mode, and migrations.
git clone https://github.com/levnikolaevich/claude-code-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/levnikolaevich/claude-code-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills-catalog/ln-012-mcp-configurator" ~/.claude/skills/levnikolaevich-claude-code-skills-ln-012-mcp-configurator && rm -rf "$T"
skills-catalog/ln-012-mcp-configurator/SKILL.mdPaths: File paths (
,shared/) are relative to skills repo root. Locate this SKILL.md directory and go up one level for repo root.references/
MCP Configurator
Type: L3 Worker Category: 0XX Shared
Invocation is agent-agnostic. Target surfaces are Claude-specific: this skill configures Claude Code MCP settings, hook/style sync, permissions, and Claude Code IDE extension permission mode.
MANDATORY READ
MANDATORY READ: Load
shared/references/coordinator_summary_contract.md, shared/references/environment_worker_runtime_contract.md, and shared/references/worker_runtime_contract.md
Input / Output
| Direction | Content |
|---|---|
| Input | OS info, flag, optional flag (default — Phase 6b is detection-only without it), optional , optional |
| Output | Structured summary envelope with = / / , plus per-server outcomes in / , plus IDE extension state in |
If
summaryArtifactPath is provided, write the same summary JSON there. If not provided, return the summary inline and remain fully standalone. If runId is not provided, generate a standalone run_id before emitting the summary envelope.
Runtime
Runtime family:
environment-worker-runtime
Phase profile:
PHASE_0_CONFIGPHASE_1_CHECK_STATUS_AND_VERSIONPHASE_2_REGISTER_AND_CONFIGUREPHASE_3_VERIFY_GRAPH_PROVIDER_DEPSPHASE_4_HOOKS_AND_OUTPUT_STYLEPHASE_5_GRAPH_INDEXINGPHASE_6_MIGRATE_ALLOWED_TOOLSPHASE_7_PERMISSION_SURFACESPHASE_8_WRITE_SUMMARYPHASE_9_SELF_CHECK
Runtime rules:
- emit
summary_kind=env-mcp-config - standalone runs generate their own
and write the default worker-family artifact pathrun_id - managed runs require both
andrunId
and must write the summary to the exact provided pathsummaryArtifactPath - always write the validated summary artifact before terminal outcome
Output Contract
Always build a structured
env-mcp-config summary envelope per:
shared/references/coordinator_summary_contract.mdshared/references/environment_worker_runtime_contract.md
Payload fields:
serverspermissionside_extensionhooks_syncedoutput_style_syncedallowed_tools_migratedgraph_provider_statusstatus
Server Registry
Two transport types: stdio (local process) and HTTP (cloud endpoint).
| Server | Transport | Install | Required | API Key |
|---|---|---|---|---|
| hex-line | stdio | | Yes | No |
| hex-ssh | stdio | | No | No |
| hex-graph | stdio | | No | No |
| context7 | HTTP | | Yes | Optional |
| Ref | HTTP | | Yes | Yes (prompt user) |
| linear | HTTP | | Ask user | No (OAuth) |
Workflow
Check Status & Version → Register & Configure → Verify Graph Provider Deps → Hooks → Permissions → IDE Extension Mode → Migrate → Report
Phase 1: Check Status & Version
Smart install: check MCP status AND package drift. npx -y caches aggressively — a connected server may still be backed by an older cached package.
Step 1a: Check MCP server status
Run
claude mcp list -> parse each hex server:
| Server | Status | Action |
|---|---|---|
| Registered + Connected | Working | Check version (Step 1b) |
| Registered + Disconnected | Broken | Re-register (Phase 2) |
| Not registered | Missing | Register in Phase 2 |
Step 1b: Version check for connected hex- servers*
For each connected hex server, run in parallel:
npm view @levnikolaevich/${PKG} version 2>/dev/null
Then compare npm latest against the running local version:
- npx cache probe:
-> scannpm config get cache
-> pick newest by semver/mtime{cacheRoot}/_npx/**/node_modules/@levnikolaevich/${PKG}/package.json
Use the npx cache version. If probe returns nothing, report
running=unknown and treat the server as refresh-recommended rather than claiming it is current.
Note: hex packages run via
npx -y, NOT global install. Never probe global npm paths.
| npm latest | cached local version | Action |
|---|---|---|
| Same | Same | SKIP |
| Newer | Older | Mark "needs update" -> Phase 2 re-registers |
| Unknown | Any | WARN, proceed |
Skip conditions:
| Condition | Action |
|---|---|
| SKIP |
| Show planned commands |
| Connected + cached local version matches npm latest | SKIP, report version |
Phase 2: Register & Configure
One pass: use Phase 1 state (do NOT re-run
claude mcp list) -> remove deprecated -> register/update -> verify.
- Reuse Phase 1 state — server map from Step 1a already has registration + connection status
- Fallback (standalone only): read
+~/.claude.json~/.claude/settings.json
- Fallback (standalone only): read
- Remove deprecated servers:
| Deprecated Server | Action |
|---|---|
| hashline-edit | Remove if found |
| pencil | Remove if found |
| lighthouse | Remove if found |
| playwright | Remove if found |
| browsermcp | Remove if found |
- Register missing OR update outdated servers:
- IF already configured AND connected AND cached local version matches -> SKIP
- IF connected but outdated -> remove + re-add (forces npx to fetch latest)
- IF
-> show planned commanddry_run: true - IF linear -> ask user: "Do you use Linear?" -> no -> SKIP
Registration commands (OS-dependent prefix):
| OS | Prefix | Why |
|---|---|---|
| Windows (bash/MSYS2) | | MSYS2/Git Bash converts -> in args. prevents this |
| Windows (PowerShell/cmd) | | No path conversion issue in native shells |
| macOS / Linux | | Direct execution |
| Server | Command (Windows bash — always prefix with ) |
|---|---|
| hex-line | |
| hex-ssh | |
| hex-graph | |
| context7 | |
| Ref | |
| linear | |
- Verify:
-> check all registered showclaude mcp list
. This is the only secondConnected
call (post-mutation verify). Retry + report failures.claude mcp list
Windows MSYS2 path validation (MANDATORY on win32): After registration, read
~/.claude.json -> verify each hex server's args[0] is "/c" not "C:/".
If corrupted: fix via mcp__hex-line__edit_file (set_line the arg to "/c").
Error handling:
| Error | Response |
|---|---|
CLI not found | FAIL, report "Claude CLI not in PATH" |
| Server already exists | SKIP, report "already configured" |
| Connection failed after add | WARN, report detail from |
| API key missing (Ref) | Prompt user for key, skip if declined |
Phase 2b: Verify Graph Provider Dependencies
MANDATORY READ: Load
skills-catalog/ln-012-mcp-configurator/references/hex_graph_provider_matrix.md and skills-catalog/ln-700-project-bootstrap/references/stack_detection.md.
After registration + connection, verify only the extra system binaries or packages needed for fuller MCP behavior. Assume the project already has its own runtimes and app dependencies. This phase does NOT install project dependencies, framework packages, or runtimes.
Step 1: Identify which servers are connected Reuse Phase 2 verification state. Only check deps for connected hex-* servers.
Step 2: Verify hex-line-mcp dependencies
| Dependency | Check | Required | Auto-fix | Fallback |
|---|---|---|---|---|
| ripgrep | | Yes | See install table | grep_search fails |
| git | | No | Inform only | tool disabled |
Ripgrep install by platform:
| Platform | Command |
|---|---|
| Linux (apt) | |
| Linux (yum) | |
| macOS | |
| Windows (winget) | |
| Windows (scoop) | |
| Fallback (npm) | |
If
rg --version fails: ask user whether to auto-install (suggest platform-appropriate command). If user declines, WARN but continue — hex-line will degrade on grep.
Step 2a: EOL-risk advisory for hex-line
Inspect repo and user EOL policy, but do not rewrite it here:
for.gitattributes
/eol=text=auto
for.editorconfigend_of_linegit config --get core.autocrlfgit config --get core.eolgit config --get core.safecrlf
Report
WARN when repo policy and user working-tree policy are likely to churn line endings during normal edits. This is advisory only — do not auto-edit repo policy files in ln-012.
Step 3: Detect current project language(s) for hex-graph
Detect from the current project root only:
if presentdocs/project/tech_stack.md- marker files in the project root
- fallback source-extension scan
Use framework markers only to confirm language:
| Framework hint | Language |
|---|---|
| FastAPI, Django, Flask | Python |
| ASP.NET Core | C# |
| Laravel | PHP |
| React, Next.js, Express, NestJS | JavaScript / TypeScript |
If no relevant language is detected for
hex-graph, skip the optional provider checks and report SKIP.
Step 4: Verify hex-graph-mcp graph-specific providers and SCIP exporters
Use the MCP tool
install_graph_providers from hex-graph-mcp as the source of truth:
- First call it with
mode: "check" - Reuse its
output as the remediation textinstructions_for_agent - Only if the user agrees, rerun it with
mode: "install" - Treat the matrix below as reference policy, not as a second implementation source
| Detected project language | Tool | Check | Required | Auto-fix | Fallback |
|---|---|---|---|---|---|
| JavaScript / TypeScript | None | None | No | None | Embedded TypeScript precise overlay and SCIP export are already available |
| Python | | | No | | Python precise analysis skipped |
| Python | | | No | Windows: ; macOS/Linux: | Python skipped |
| C# | | | No | | C# precise analysis skipped |
| C# | | | No | | C# skipped |
| PHP | | | No | Project-specific PHP install path | PHP precise analysis skipped |
| PHP | | or | No | then | PHP skipped |
For
hex-graph, think only about graph-specific providers and optional SCIP exporters:
- DO install or recommend
,basedpyright
,csharp-ls
,phpactor
,scip-python
, andscip-dotnet
when their language is detectedscip-php - DO prefer the patched
install on Windows until the upstream Windows fix is releasedscip-python - DO mention
when a patched Python SCIP binary lives outside the defaultHEX_GRAPH_SCIP_PYTHON_BINARYPATH - DO prefer the isolated patched
fork for PHP SCIP export when project-local Composer install is blocked or the upstream binary emits an empty artifactscip-php - DO NOT install
,python
,.NET
,php
,fastapi
,django
,laravel
, or any project dependencynestjs - DO NOT install anything for framework overlays alone; Stage 4 framework support is parser/convention-based
- Ask the user before any provider install command
Step 5: Verify hex-ssh-mcp dependencies
No system dependencies (pure JS ssh2). Skip.
Step 6: Report dependency table
Print table with columns: Server | Dependency | Status | Action.
| Status | Meaning |
|---|---|
| OK | Available and functional |
| INSTALLED | Was missing, auto-installed |
| WARN | Missing, user declined install |
| SKIP | Not needed for detected project language(s) |
| FAIL | Required, cannot install |
Error handling:
| Error | Response |
|---|---|
| Required dep missing + user declines | WARN, continue with degraded functionality |
| Auto-install fails | WARN, show manual install instructions |
| Optional dep missing | INFO, note in report |
For
hex-graph, also report the detected language(s) that drove the provider/exporter checks.
Phase 3: Hooks & Output Style [CRITICAL]
Do NOT call
setup_hooks. hex-line now auto-syncs hooks and output style on MCP server startup.
After all Phase 2 registrations complete:
- Trigger one harmless
call to start the server, for examplehex-linemcp__hex-line__inspect_path({ path: "{project_path}" }) - Verify the startup sync results below
Hooks (in
~/.claude/settings.json):
hook — redirects built-in Read/Edit/Write/Grep/Glob to hex-line equivalents (PreToolUse
->Glob
)inspect_path(pattern=...)
hook — compresses verbose tool output (RTK filter)PostToolUse
hook — injects MCP Tool Preferences reminderSessionStart
: After verifying hooks are synced, readdisableAllHooks
, set~/.claude/settings.json
(merge, preserve all other fields), write back. This is appropriate here because the user explicitly invoked setup and wants hooks active. autoSync does NOT manage this flag — it only syncs hook file content and entries.disableAllHooks: false
Output Style: 5. Copies
output-style.md to ~/.claude/output-styles/hex-line.md
6. Sets outputStyle: "hex-line" if no style is active (preserves existing style)
Verification: Confirm all of the following after the first
hex-line tool call:
contains the 3~/.claude/settings.json
hook entries with current command pathhex-line
(set explicitly by this skill, not by autoSync)disableAllHooks: false
exists and matches package content~/.claude/output-styles/hex-line.md
is set only when no other style was already activeoutputStyle: "hex-line"
Hex-line workflow reminder: the synced output style must teach all of the following:
- carry
into same-file follow-up edits asrevisionbase_revision - run
before delayed or mixed-tool follow-up edits on the same fileverify - reuse
,retry_edit
,retry_edits
, andretry_checksum
directlyretry_plan - treat line-ending policy as preserved file state, not something
should silently normalizeedit_file
Note: autosync is idempotent. Any later
hex-line startup re-checks installed hook and style content and updates only when they drift.
Phase 4: Graph Indexing
After hex-graph registration + connected status:
— build initial code knowledge graphmcp__hex-graph__index_project({ path: "{project_path}" })- If graph-backed reads or edits later look stale, rerun
— the indexing path is idempotent and refreshes changed files onlymcp__hex-graph__index_project({ path: "{project_path}" })
Skip if hex-graph not registered or not connected.
Phase 5: Migrate allowed-tools [CRITICAL]
Scan project commands/skills to replace built-in tools with hex-line equivalents in
allowed-tools frontmatter.
Tool mapping:
| Built-in | Hex equivalent |
|---|---|
| |
| |
| |
| |
| |
Steps:
- Discover
via.claude/commands/*.md
andmcp__hex-line__inspect_path(path=".claude/commands", pattern="*.md", max_entries=0)
via.claude/skills/*/SKILL.mdmcp__hex-line__inspect_path(path=".claude/skills", pattern="SKILL.md", max_entries=0) - For each file: parse YAML frontmatter, extract
allowed-tools - For each mapping entry:
a. If built-in present AND hex equivalent absent -> add hex equivalent, remove built-in (except
andRead
) b. If built-in present AND hex equivalent already present -> remove built-in (exceptBash
andRead
) c. Preserve ALL existingBash
tools not in the replacement tablemcp__* - Write back updated frontmatter (preserve quoting style)
Skip conditions:
| Condition | Action |
|---|---|
No directory | Skip entire phase |
File has no | Skip file |
| All hex equivalents present | Skip file, report "already migrated" |
| Show planned changes |
Phase 6: Grant Permissions
Instruction files and
MCP Tool Preferences content are owned by ln-014-agent-instructions-manager. This skill must not create or rewrite CLAUDE.md, AGENTS.md, or GEMINI.md.
Ensure built-in tools and MCP server prefixes are in
~/.claude/settings.json -> permissions.allow[].
Built-in tools (ensure present):
| Tool | Permission entry |
|---|---|
| Bash | |
| Read | |
| Write | |
| Edit | |
| Grep | |
| WebSearch | |
| WebFetch | |
MCP servers (per configured):
| Server | Permission entry |
|---|---|
| hex-line | |
| hex-ssh | |
| hex-graph | |
| context7 | |
| Ref | |
| linear | |
- Read
(create if missing:~/.claude/settings.json
){"permissions":{"allow":[]}} - Consolidate existing entries: For each universal tool (
,Bash
,Read
,Write
,Edit
,Grep
,WebSearch
, and eachWebFetch
):mcp__{name}- If specific variants exist (e.g.
,Bash(gh repo:*)
,Bash(node ...)
), remove them — the universal entry covers allWebFetch(domain:docs.github.com) - Pattern:
→ remove if universalentry.startsWith("Tool(")
will be addedTool
- If specific variants exist (e.g.
- Add universal entries that are not already present
- Write back (2-space indent JSON)
Idempotent: existing universal entries skipped. Only specific sub-entries are consolidated into universal ones.
Phase 6b: Verify IDE Extension Permission Mode
The Claude Code IDE extension (Cursor / VSCode) has its own
claudeCode.initialPermissionMode setting that overrides permissions.defaultMode from ~/.claude/settings.json when Claude runs through the IDE. Default value is "default" — this silently ignores any project-level bypassPermissions from .claude/settings.local.json. To actually enable bypass when running through the IDE, two extension settings must be set together.
This phase is detection-first. It does NOT modify IDE settings without explicit user consent because permission mode is a security decision and IDE settings are vendor-specific.
Step 1: Detect installed Claude Code IDE extensions
| IDE | Extensions directory | User settings path (Windows) | User settings path (macOS) | User settings path (Linux) |
|---|---|---|---|---|
| Cursor | | | | |
| VSCode | | | | |
For each IDE: glob the extensions directory for
anthropic.claude-code-*. If at least one match exists, the extension is installed.
Step 2: Read
from extension to enumerate package.json
settingsclaudeCode.*
The relevant keys (verified against extension package.json contributes.configuration.properties):
| Setting key | Type | Default | Effect |
|---|---|---|---|
| string enum | | Sets flag at session start. Enum: , , , |
| boolean | | Hard gate — must be for to actually engage. Anthropic's explicit guard for IDE contexts |
Step 3: Read user settings JSON for each detected IDE and report current state
| Detected state | Effective behavior | Reported as |
|---|---|---|
absent OR , absent OR | Standard prompt-based permissions, project IGNORED | |
| File ops auto-approve, Bash still prompts | |
| Plan mode forced (no execution) | |
, | Bypass active | |
, | Misconfigured — user wanted bypass but gate is closed; falls back to default | |
Always include in the report: a one-line explanation of why
.claude/settings.local.json defaultMode is silently ignored when running via IDE extension.
Step 4: Cross-check against
and .claude/settings.json.claude/settings.local.json defaultMode
If user's project settings declare
permissions.defaultMode = "bypassPermissions" but the IDE extension is in default-prompt or bypass-blocked state → emit a WARN in the summary explaining the override:
WARN: Project
declares.claude/settings.local.json, but the Claude Code IDE extension for {IDE} forcesdefaultMode: bypassPermissionsat session start. The project setting is ignored when running through the IDE. To align them, run this skill with--permission-mode {detected}and confirm at the prompt, or manually setapply_ide_override=trueandclaudeCode.initialPermissionModein {settings_path}.claudeCode.allowDangerouslySkipPermissions
Step 5: Optional remediation (only with explicit user consent)
This phase only writes IDE settings when the caller passes
apply_ide_override=true (a separate flag distinct from the main dry_run). Even with the flag, the skill MUST prompt the user with a single confirmation question listing exactly which keys will change in which file.
When applying changes:
- Backup first: copy settings.json to
before any writesettings.json.bak.{timestamp} - Read → deep-merge → write: preserve every other
key (claudeCode.*
,preferredLocation
,useTerminal
, etc.) and every non-respectGitIgnore
keyclaudeCode.* - Write only the two keys dictated by the desired mode:
- For
: setbypassPermissions
ANDclaudeCode.allowDangerouslySkipPermissions: trueclaudeCode.initialPermissionMode: "bypassPermissions" - For
: setacceptEdits
(gate not required)claudeCode.initialPermissionMode: "acceptEdits" - For
: remove both keys (or set todefault
/false
)"default"
- For
- Instruct full restart: print "IDE restart required (full Quit + reopen, NOT Reload Window) — extension reads settings only at activation"
- Record in summary: include before/after values, backup path, and the explicit user consent timestamp
Skip conditions:
| Condition | Action |
|---|---|
| No Claude Code IDE extension found | SKIP entire phase, report |
| Detect + report only, no writes (same as default behavior) |
flag absent | Detect + report only, do NOT prompt user |
| User declines remediation prompt | SKIP write, log decision in summary |
Project does not declare | INFO: report extension state but no WARN (no conflict to resolve) |
Why this phase is detection-first by default:
- IDE settings are per-IDE-vendor and per-user — auto-modifying them across machines is intrusive
is a security-sensitive choice; Anthropic explicitly guarded it withbypassPermissions
for IDE contexts (intended for sandboxes without internet)allowDangerouslySkipPermissions- Users may legitimately want different modes per IDE (e.g.
in Cursor for daily work,acceptEdits
in a separate VSCode profile for sandbox automation)bypassPermissions - Aligns with the no-agent-config-modification rule from the host project memory: detection always, writes only on explicit consent
Phase 7: Report
Status table:
MCP Configuration: | Server | Transport | Version | Status | Permission | Detail | |-----------|-----------|---------|---------------|------------|-------------------------| | hex-line | stdio | 1.5.0 | configured | granted | global npm (hex-line-mcp) | | hex-ssh | stdio | 1.2.0 | updated | granted | was 1.1.6, now 1.2.0 | | context7 | HTTP | — | configured | granted | mcp.context7.com | | Ref | HTTP | — | configured | granted | api.ref.tools (key set) | | linear | HTTP | — | skipped | skipped | user declined | IDE Extension Permission Mode: | IDE | Extension Version | initialPermissionMode | allowDangerouslySkipPermissions | Effective State | Conflict with project defaultMode | |---------|-------------------|-----------------------|---------------------------------|-----------------|-----------------------------------| | Cursor | 2.1.92 | bypassPermissions | true | bypass-active | aligned | | VSCode | (not installed) | — | — | no-ide | n/a |
Critical Rules
- Write only via sanctioned paths. Register servers via
. Write toclaude mcp add
ONLY for permissions (~/.claude/settings.json
) or when explicit hook/style verification requires correction after autosync failspermissions.allow[] - Verify after add. Always run
after registration to confirm connectionclaude mcp list - Ask before optional servers. Linear requires explicit user consent
- npx -y for all hex MCP. Never
— npx provides process isolation and avoids EBUSY on Windows. On Windows, wrap withnpm i -g
(see Phase 2 OS prefix table)cmd /c npx - Remove deprecated servers. Clean up servers no longer in the registry
- Grant permissions. After registration, add
to user settingsmcp__{server} - Minimize
calls. Phase 1 runs it once (discovery). Phase 2 reuses that data. Only Phase 2 Step 4 runs it again (post-mutation verify). Max 2 calls totalclaude mcp list - Always check npm drift. Connected != up to date. Compare npm latest against the newest locally cached npx package version before skipping
- MSYS2 path safety. On Windows with Git Bash/MSYS2, always prefix
withclaude mcp add
. After registration, verifyMSYS_NO_PATHCONV=1
inargs[0]
is.claude.json
not"/c"
. Fix inline if corrupted."C:/" - Verify graph-specific deps after install. After Phase 2 registration, check system binaries for hex-line, graph-specific optional providers, and optional SCIP exporters for detected project languages. Auto-install only with user consent. Never install project runtimes or framework packages here.
- Report EOL churn risk, do not hide it. If
,.gitattributes
, or Git config suggest working-tree line-ending rewrites, warn explicitly instead of silently changing repo policy here..editorconfig - Non-destructive config writes. Always read → merge → edit. Never overwrite config files from scratch. Preserve all keys/sections not owned by this skill.
- IDE extension settings are detection-first. Phase 6b reads
keys from Cursor / VSCode user settings and reports the effective permission mode, but never writes IDE settings withoutclaudeCode.*
AND an explicit user prompt confirmation. IDE settings are vendor-specific and changingapply_ide_override=true
is a security decision the user must own.bypassPermissions
Anti-Patterns
| DON'T | DO |
|---|---|
Write arbitrary fields to | Use for servers; rely on startup autosync for hooks/style |
| Skip verification after add | Always check after mutations |
| Auto-add optional servers | Ask user for Linear and other optional servers |
| Leave deprecated servers | Remove hashline-edit, pencil, etc. |
| Calculate token budget | Not this worker's responsibility |
Run in every phase | Run once in Phase 1, reuse in Phase 2, verify once after mutations |
| Assume connected = up to date | Check version vs newest cached npx package version |
| Assume hooks/style are ready right after registration | Trigger one harmless tool call, then verify autosync results |
Run without MSYS_NO_PATHCONV on Windows bash | Always or verify+fix args after |
| Skip provider verification for hex-graph | Detect project language(s) first, then verify only relevant graph-specific providers and SCIP exporters |
| Auto-install project/framework/runtime packages | Limit this phase to MCP-relevant graph providers and SCIP exporters, and ask user before install |
| Overwrite entire config file with only known fields | Read existing → deep-merge only owned fields → edit back |
Silently flip to because the project asked for it | Detect, WARN about the override, require AND explicit user confirmation before writing IDE settings |
Set without also setting | Both keys are required together — without the gate the mode silently degrades to default |
Treat IDE as a substitute for Codex CLI defaults | Keep Codex execution-default ownership in |
Mutate from this worker because it is also permission-related | Route the actual Codex CLI write to |
| Tell user to use Reload Window after changing IDE settings | Always tell user to fully Quit + reopen — extension reads settings only at activation, not on Reload Window |
Definition of Done
- MCP packages installed and versions verified against npm registry (Phase 1)
- Missing servers registered and verified connected (Phase 2)
- Outdated servers re-registered with latest version (Phase 2)
- Graph-specific dependencies verified: ripgrep available, detected hex-graph providers and SCIP exporters reported (Phase 2b)
- Hooks auto-synced after first
startup (PreToolUse, PostToolUse, SessionStart, ConfigChange, PermissionDenied) andhex-line
(Phase 3). MCP config notes:disableAllHooks: false
up to 500K for large tool results (Claude Code 2.1.91);_meta["anthropic/maxResultSizeChars"]
env var forMCP_CONNECTION_NONBLOCKING
mode (2.1.89);-p
setting prevents skill shell execution (2.1.91)disableSkillShellExecution - Output style installed (Phase 3)
- Permissions granted for all configured servers (Phase 6)
- IDE extension permission mode detected for installed Cursor / VSCode and reported with WARN if it overrides project
(Phase 6b). Writes only withdefaultMode
AND user consent.apply_ide_override=true - Project allowed-tools migrated (Phase 5)
- Status table with version column displayed (Phase 7) including IDE extension permission mode row
- Structured summary returned
- Summary artifact written to the managed or standalone runtime path
Version: 1.7.0 Last Updated: 2026-04-07