Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,17 @@
},
"metadata": {
"description": "Professional AI coding configurations, agents, skills, and personalities for Claude Code and Cursor",
"version": "4.0.0",
"version": "5.0.0",
"license": "MIT",
"repository": "https://github.com/TechNickAI/ai-coding-config"
},
"plugins": [
{
"name": "ai-coding-config",
"source": "./plugins/core",
"description": "Commands, agents, and context for AI-assisted development workflows",
"version": "4.0.0",
"tags": ["commands", "agents", "workflows", "essential"]
},
{
"name": "skills",
"source": "./plugins/skills",
"description": "Autonomous skills that Claude activates when relevant - research, debugging, brainstorming",
"version": "2.0.1",
"tags": ["skills", "autonomous", "research", "debugging"]
"description": "Commands, agents, skills, and context for AI-assisted development workflows",
"version": "5.0.0",
"tags": ["commands", "agents", "skills", "workflows", "essential"]
},
{
"name": "personality-sherlock",
Expand Down
2 changes: 1 addition & 1 deletion .claude/skills
5 changes: 2 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ Core project rules that apply to all tasks:
**Plugin-first architecture** - Everything distributable lives in `plugins/`:

- `.claude-plugin/marketplace.json` - Plugin marketplace manifest
- `plugins/core/` - Commands, agents, and context (canonical source)
- `plugins/skills/` - Autonomous skills
- `plugins/core/` - Commands, agents, skills, and context (canonical source)
- `plugins/personalities/` - Personality variants
- `.cursor/rules/` - Cursor rules (canonical location)
- `rules/` - Symlink to `.cursor/rules/` for visibility (THIS REPO ONLY)
Expand Down Expand Up @@ -82,7 +81,7 @@ permanent records requiring explicit permission.
- **Plugin-first**: All content lives in `plugins/`, other locations symlink there
- `.claude/commands/` → `plugins/core/commands/` (symlink)
- `.claude/agents/` → `plugins/core/agents/` (symlink)
- `.claude/skills/` → `plugins/skills/skills/` (symlink)
- `.claude/skills/` → `plugins/core/skills/` (symlink)
- `rules/` → `.cursor/rules/` (symlink for visibility, THIS REPO ONLY)
- `.cursor/rules/` contains the canonical Cursor rules
- `.cursor/rules/personalities/` → copied from `plugins/personalities/` (not symlinked -
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ expertise (debugging, code review).
| [Commands](plugins/core/commands/) | 14 | Automate workflows |
| [Agents](plugins/core/agents/) | 13 | Specialized assistants |
| [Rules](rules/) | 32 | Coding standards |
| [Skills](plugins/skills/skills/) | 5 | Autonomous capabilities |
| [Skills](plugins/core/skills/) | 5 | Autonomous capabilities |
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Install command references removed skills plugin

The install commands /plugin install ai-coding-config skills in README.md and /plugin install ai-coding-config agents skills in the command file reference a skills plugin that no longer exists after this PR removed it from marketplace.json. Since skills are now consolidated into the ai-coding-config plugin, users following these instructions will get errors trying to install a non-existent plugin. The commands need updating to just /plugin install ai-coding-config.

Additional Locations (1)

Fix in Cursor Fix in Web

| [Personalities](plugins/personalities/) | 7 | Communication styles |

### Highlighted Commands
Expand Down
4 changes: 2 additions & 2 deletions plugins/core/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ai-coding-config",
"version": "4.0.0",
"description": "Commands, agents, and context for AI-assisted development workflows",
"version": "5.0.0",
"description": "Commands, agents, skills, and context for AI-assisted development workflows",
"author": {
"name": "TechNickAI",
"url": "https://github.com/TechNickAI"
Expand Down
10 changes: 6 additions & 4 deletions plugins/core/commands/ai-coding-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ Installation mapping:
- Rules → `.cursor/rules/` (copy from `~/.ai_coding_config/.cursor/rules/`)
- Commands → `.claude/commands/` symlink to `~/.ai_coding_config/plugins/core/commands/`
- Agents → `.claude/agents/` symlink to `~/.ai_coding_config/plugins/core/agents/`
- Skills → `.claude/skills/` symlink to `~/.ai_coding_config/plugins/skills/skills/`
- Skills → `.claude/skills/` symlink to `~/.ai_coding_config/plugins/core/skills/`
- Personalities → `.cursor/rules/personalities/` (copy selected personality, set
`alwaysApply: true`)

Expand Down Expand Up @@ -299,8 +299,8 @@ For each directory type (commands, agents, skills):

Example paths to check:
- Commands: `~/.claude/plugins/cache/ai-coding-config/core/*/commands/` vs `.claude/commands/`
- Agents: `~/.claude/plugins/cache/ai-coding-config/agents/*/agents/` vs `.claude/agents/`
- Skills: `~/.claude/plugins/cache/ai-coding-config/skills/*/skills/` vs `.claude/skills/`
- Agents: `~/.claude/plugins/cache/ai-coding-config/core/*/agents/` vs `.claude/agents/`
- Skills: `~/.claude/plugins/cache/ai-coding-config/core/*/skills/` vs `.claude/skills/`

Get the plugin version from installed_plugins.json to construct the correct path.

Expand Down Expand Up @@ -420,12 +420,14 @@ This resolves correctly. Only check symlinks if they point directly to old paths

- `~/.ai_coding_config/plugins/code-review/` (deleted)
- `~/.ai_coding_config/plugins/dev-agents/` (deleted)
- `~/.ai_coding_config/plugins/skills/` (deleted)
- `~/.ai_coding_config/plugins/agents/` (deleted)

If direct symlinks to deleted paths found, offer to update:

- `.claude/commands/` → `~/.ai_coding_config/plugins/core/commands/`
- `.claude/agents/` → `~/.ai_coding_config/plugins/core/agents/`
- `.claude/skills/` → `~/.ai_coding_config/plugins/skills/skills/`
- `.claude/skills/` → `~/.ai_coding_config/plugins/core/skills/`
</symlink-compatibility-check>

<file-updates>
Expand Down
File renamed without changes.
9 changes: 0 additions & 9 deletions plugins/skills/.claude-plugin/plugin.json

This file was deleted.