Skip to content

Commit cba265b

Browse files
authored
refactor(code-intelligence): rename doctor command to setup-code-intelligence (#14)
1 parent 48a40a6 commit cba265b

7 files changed

Lines changed: 18 additions & 10 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"search-precedence",
4949
"tool-disclosure"
5050
],
51-
"version": "0.3.1"
51+
"version": "0.4.0"
5252
}
5353
]
5454
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ this repo - install them from their own repo instead.
162162
The semantic rows above need a language server installed (here `terraform-ls`).
163163
Without one the plugin still helps: it discloses the `rg` fallback on the first
164164
line instead of pretending the text search was exhaustive. Check your setup
165-
with `/code-intelligence:doctor`.
165+
with `/code-intelligence:setup-code-intelligence`.
166166

167167
```bash
168168
/plugin install code-intelligence@antonbabenko
@@ -176,7 +176,7 @@ Try:
176176
- `Is output.cluster_endpoint used anywhere before I change its type?`
177177
- `Did you really find all the references, or just text matches?`
178178

179-
Check your setup (Claude Code): `/code-intelligence:doctor`
179+
Check your setup (Claude Code): `/code-intelligence:setup-code-intelligence`
180180

181181
### [terraform-skill](https://github.com/antonbabenko/terraform-skill)
182182

plugins/code-intelligence/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
"name": "code-intelligence",
3131
"repository": "https://github.com/antonbabenko/agent-plugins",
3232
"skills": "./skills",
33-
"version": "0.3.1"
33+
"version": "0.4.0"
3434
}

plugins/code-intelligence/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to the `code-intelligence` plugin are documented here. This file is managed by the per-plugin release pipeline; entries are prepended on release.
44

5+
## code-intelligence-v0.4.0 (2026-05-17)
6+
7+
### BREAKING CHANGES
8+
9+
* The `doctor` command is renamed to `setup-code-intelligence`. Its bare name
10+
shadowed Claude Code's built-in `/doctor`; invoke the readiness check as
11+
`/code-intelligence:setup-code-intelligence`.
12+
513
## code-intelligence-v0.3.1 (2026-05-17) ([compare](https://github.com/antonbabenko/agent-plugins/compare/code-intelligence-v0.3.0...code-intelligence-v0.3.1))
614

715
### Bug Fixes

plugins/code-intelligence/commands/doctor.md renamed to plugins/code-intelligence/commands/setup-code-intelligence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
name: doctor
2+
name: setup-code-intelligence
33
description: Check code-intelligence prerequisites (ripgrep + a language server) and print install hints
44
allowed-tools: Bash, AskUserQuestion
55
---
66

7-
# code-intelligence doctor
7+
# code-intelligence: setup & readiness check
88

99
Run a one-shot readiness check for the `code-intelligence` skill, then offer an
1010
optional star. The skill picks LSP vs exact-text vs fuzzy search by task; it

plugins/code-intelligence/skills/code-intelligence/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Use when navigating or refactoring code with a language server - ch
44
license: Apache-2.0
55
metadata:
66
author: Anton Babenko
7-
version: 0.3.1
7+
version: 0.4.0
88
---
99

1010
# Code Intelligence

plugins/code-intelligence/tests/baseline-scenarios.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,16 +142,16 @@ Where in this codebase is user authentication handled?
142142

143143
---
144144

145-
## Scenario 4: Doctor Command Readiness Check
145+
## Scenario 4: Setup Command Readiness Check
146146

147-
**Objective:** Verify the `/code-intelligence:doctor` command reports
147+
**Objective:** Verify the `/code-intelligence:setup-code-intelligence` command reports
148148
prerequisites accurately and the optional star step is consent-gated and
149149
stateless.
150150

151151
### Test Prompt
152152

153153
```text
154-
/code-intelligence:doctor
154+
/code-intelligence:setup-code-intelligence
155155
```
156156

157157
### Expected Baseline Behavior (WITHOUT skill)

0 commit comments

Comments
 (0)