Skip to content

Commit 0a86eef

Browse files
bdfinstclaude
andcommitted
feat: namespace plugin as agentic-dev-team@bfinster
Rename the marketplace from "agentic-dev-team" to "bfinster" so the plugin uses the standard plugin@marketplace namespacing convention. Update install commands, version output, upgrade fallback, and version-check hook to use the new identifier. Also update sync-to-aci.sh to rewrite @BFinster → @tools-claude-plugins for the ACI distribution. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c198fa0 commit 0a86eef

6 files changed

Lines changed: 10 additions & 8 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "agentic-dev-team",
2+
"name": "bfinster",
33
"owner": {
44
"name": "Bryan Finster"
55
},

CLAUDE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ Install the plugin from the local path into a test project:
3434

3535
```bash
3636
claude plugin install --scope project /path/to/agentic-dev-team/plugins/agentic-dev-team
37+
# Or from the marketplace:
38+
# claude plugin install agentic-dev-team@bfinster
3739
```
3840

3941
### Adding agents, skills, or commands

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,21 +136,21 @@ Add the marketplace source, then install the plugin. The marketplace resolves th
136136

137137
```bash
138138
claude plugin marketplace add https://github.com/bdfinst/agentic-dev-team
139-
claude plugin install agentic-dev-team
139+
claude plugin install agentic-dev-team@bfinster
140140
```
141141

142142
**From a local clone:**
143143

144144
```bash
145145
claude plugin marketplace add /path/to/agentic-dev-team
146-
claude plugin install agentic-dev-team
146+
claude plugin install agentic-dev-team@bfinster
147147
```
148148

149149
By default the marketplace is registered at user scope (available in all projects). To scope it to a single project:
150150

151151
```bash
152152
claude plugin marketplace add --scope project https://github.com/bdfinst/agentic-dev-team
153-
claude plugin install --scope project agentic-dev-team
153+
claude plugin install --scope project agentic-dev-team@bfinster
154154
```
155155

156156
### Upgrading from a previous install
@@ -160,7 +160,7 @@ If you previously installed the plugin before the directory restructure (pre-v2.
160160
```bash
161161
claude plugin marketplace remove agentic-dev-team
162162
claude plugin marketplace add https://github.com/bdfinst/agentic-dev-team
163-
claude plugin install agentic-dev-team
163+
claude plugin install agentic-dev-team@bfinster
164164
```
165165

166166
### Verify

plugins/agentic-dev-team/commands/upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If no git repo is found at any of these locations:
3333
> 1. Remove the current copy
3434
> 2. Re-clone from the repository
3535
>
36-
> Or run: `claude plugin install agentic-dev-team`
36+
> Or run: `claude plugin install agentic-dev-team@bfinster`
3737
3838
Exit without making changes.
3939

plugins/agentic-dev-team/commands/version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ You have been invoked with the `/version` command.
1616

1717
1. Read `.claude-plugin/plugin.json`
1818
2. Extract the `version` field
19-
3. Output: `agentic-dev-team v{version}`
19+
3. Output: `agentic-dev-team@bfinster v{version}`

plugins/agentic-dev-team/hooks/version-check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ DEFAULT_BRANCH="${DEFAULT_BRANCH:-main}"
6262
BEHIND=$(git -C "$PLUGIN_DIR" rev-list --count "HEAD..origin/${DEFAULT_BRANCH}" 2>/dev/null || echo "0")
6363

6464
if [ "$BEHIND" -gt 0 ]; then
65-
MSG="📦 agentic-dev-team: ${BEHIND} update(s) available. Run /upgrade to update."
65+
MSG="📦 agentic-dev-team@bfinster: ${BEHIND} update(s) available. Run /upgrade to update."
6666
echo "$MSG" > "$CACHE_FILE"
6767
echo "$MSG"
6868
else

0 commit comments

Comments
 (0)