Skip to content

Commit d3c79c9

Browse files
TechNickAINick Sullivanclaude
authored
πŸ—οΈ Consolidate agents into core ai-coding-config plugin (#14)
Merge the standalone agents plugin into the core ai-coding-config plugin, moving all agents from plugins/agents/agents/ to plugins/core/agents/. This eliminates the redundant plugin naming pattern (agents:mobile-ux-reviewer becomes ai-coding-config:mobile-ux-reviewer) and follows the established pattern used by Claude Code marketplace superpowers and similar plugins. This single-plugin architecture simplifies the marketplace structure while keeping commands, agents, and context in one cohesive package. Users who installed the agents plugin separately will need to reinstall from the main ai-coding-config plugin. Version bumped to 4.0.0 to reflect the breaking change. πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Nick Sullivan <[email protected]> Co-authored-by: Claude Opus 4.5 <[email protected]>
1 parent fd51a7c commit d3c79c9

21 files changed

+14
-31
lines changed

β€Ž.claude-plugin/marketplace.jsonβ€Ž

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,17 @@
66
},
77
"metadata": {
88
"description": "Professional AI coding configurations, agents, skills, and personalities for Claude Code and Cursor",
9-
"version": "3.0.0",
9+
"version": "4.0.0",
1010
"license": "MIT",
1111
"repository": "https://github.com/TechNickAI/ai-coding-config"
1212
},
1313
"plugins": [
1414
{
1515
"name": "ai-coding-config",
1616
"source": "./plugins/core",
17-
"description": "Essential commands and context for AI-assisted development workflows",
18-
"version": "3.0.1",
19-
"tags": ["commands", "workflows", "essential"]
20-
},
21-
{
22-
"name": "agents",
23-
"source": "./plugins/agents",
24-
"description": "Specialized AI agents for development, debugging, code review, testing, and design",
25-
"version": "2.1.0",
26-
"tags": ["agents", "debugging", "code-review", "testing", "development"]
17+
"description": "Commands, agents, and context for AI-assisted development workflows",
18+
"version": "4.0.0",
19+
"tags": ["commands", "agents", "workflows", "essential"]
2720
},
2821
{
2922
"name": "skills",

β€Ž.claude/agentsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
../plugins/agents/agents
1+
../plugins/core/agents

β€ŽAGENTS.mdβ€Ž

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ Core project rules that apply to all tasks:
2121
**Plugin-first architecture** - Everything distributable lives in `plugins/`:
2222

2323
- `.claude-plugin/marketplace.json` - Plugin marketplace manifest
24-
- `plugins/core/` - Commands and context (canonical source)
25-
- `plugins/agents/` - All AI agents consolidated
24+
- `plugins/core/` - Commands, agents, and context (canonical source)
2625
- `plugins/skills/` - Autonomous skills
2726
- `plugins/personalities/` - Personality variants
2827
- `.cursor/rules/` - Cursor rules (canonical location)
@@ -82,7 +81,7 @@ permanent records requiring explicit permission.
8281
`heart-centered-ai-philosophy.mdc`
8382
- **Plugin-first**: All content lives in `plugins/`, other locations symlink there
8483
- `.claude/commands/` β†’ `plugins/core/commands/` (symlink)
85-
- `.claude/agents/` β†’ `plugins/agents/agents/` (symlink)
84+
- `.claude/agents/` β†’ `plugins/core/agents/` (symlink)
8685
- `.claude/skills/` β†’ `plugins/skills/skills/` (symlink)
8786
- `rules/` β†’ `.cursor/rules/` (symlink for visibility, THIS REPO ONLY)
8887
- `.cursor/rules/` contains the canonical Cursor rules

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Cursor, Windsurf, Cline - whatever you use.
2323
```
2424

2525
```bash
26-
/plugin install ai-coding-config agents skills
26+
/plugin install ai-coding-config skills
2727
```
2828

2929
**Using Cursor, Windsurf, Cline, or others?**
@@ -86,7 +86,7 @@ expertise (debugging, code review).
8686
| Type | Count | Purpose |
8787
| --------------------------------------- | ----- | ----------------------- |
8888
| [Commands](plugins/core/commands/) | 14 | Automate workflows |
89-
| [Agents](plugins/agents/agents/) | 13 | Specialized assistants |
89+
| [Agents](plugins/core/agents/) | 13 | Specialized assistants |
9090
| [Rules](rules/) | 32 | Coding standards |
9191
| [Skills](plugins/skills/skills/) | 5 | Autonomous capabilities |
9292
| [Personalities](plugins/personalities/) | 7 | Communication styles |
@@ -113,7 +113,7 @@ React? Loads React patterns. Writing tests? Testing standards.
113113

114114
### Highlighted Agents
115115

116-
Install via `/plugin install agents`:
116+
Included in ai-coding-config plugin:
117117

118118
- **debugger** - Root cause analysis through systematic investigation
119119
- **autonomous-developer** - Implements features following your project patterns

β€Žplugins/agents/.claude-plugin/plugin.jsonβ€Ž

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Žplugins/core/.claude-plugin/plugin.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ai-coding-config",
3-
"version": "3.0.1",
4-
"description": "Essential commands and context for AI-assisted development workflows",
3+
"version": "4.0.0",
4+
"description": "Commands, agents, and context for AI-assisted development workflows",
55
"author": {
66
"name": "TechNickAI",
77
"url": "https://github.com/TechNickAI"
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)