npx claudepluginhub stefanmaron/claude-configsLead-as-Manager AL development for Business Central with agent teams. Main session acts as engineering manager, spawning specialist teammates for parallel work. Competitive solution design (2-3 architects debate approaches), parallel implementation (N developers on different modules), parallel code review (4 specialists: security, AL expert, performance, test coverage), parallel test development (4 engineers: unit, integration, scenario, edge case). Lightweight /fix workflow. MCP integration (BC Intelligence, MS Docs, AL Dependency). Commands: interview, plan, develop, fix, test, document.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
This repository contains reusable Claude Code plugin configurations for streamlining development workflows across multiple projects and computers.
This setup allows you to:
claude-configs/
├── profile-al-development/ # AL (Business Central) development profile
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin metadata
│ ├── CLAUDE.md # AL coding standards and patterns
│ ├── commands/ # Custom slash commands for AL
│ ├── skills/ # Model-invoked skills for AL
│ ├── agents/ # Custom subagents for AL
│ └── .mcp.json # AL MCP server configuration
├── .gitignore
└── README.md (this file)
Before using these plugins:
profile-al-development/.mcp.json, update the path to the Serena tool if you're using itAll other paths use ~ which expands to your home directory automatically.
Clone this repository:
cd ~
git clone git@github.com:YOUR_USERNAME/claude-configs.git
That's it! The plugins are now available on your computer. You'll enable them per-project (see next section).
Simply clone the repository:
cd ~
git clone git@github.com:YOUR_USERNAME/claude-configs.git
Plugins will be available for use in your projects immediately.
In each project where you want to use these plugins, create or edit .claude/settings.json:
{
"extraKnownMarketplaces": {
"local": {
"source": {
"source": "directory",
"path": "~/claude-configs"
}
}
},
"enabledPlugins": {
"profile-al-development@local": true
}
}
Note: The ~ expands to your home directory automatically.
As you add more profiles, you can combine them in a single project:
{
"extraKnownMarketplaces": {
"my-configs": {
"source": {
"source": "directory",
"path": "~/claude-configs"
}
}
},
"enabledPlugins": {
"profile-al-development@my-configs": true,
"profile-al-testing@my-configs": true,
"profile-devops@my-configs": true
}
}
When you discover a useful pattern or want to improve the configuration:
cd ~/claude-configs
# Edit files (e.g., profile-al-development/CLAUDE.md)
# Add new commands, update patterns, etc.
git add .
git commit -m "Add pattern for handling table extensions"
git push
On your other computer(s):
cd ~/claude-configs
git pull
All your projects immediately benefit from the updates without any additional configuration.
AL (Application Language) development configuration for Microsoft Dynamics 365 Business Central.
Includes:
Documentation: See profile-al-development/README.md
To create a new plugin profile:
Create plugin directory:
cd ~/claude-configs
mkdir -p profile-name/{.claude-plugin,commands,skills,agents}
Create plugin.json:
{
"name": "profile-name",
"description": "Brief description of what this profile provides",
"version": "1.0.0",
"author": {
"name": "Your Name"
}
}
Add configuration files:
CLAUDE.md - Memory/instructionscommands/*.md - Custom slash commandsskills/*/SKILL.md - Agent skills.mcp.json - MCP server configurationDocument in README:
profile-name/README.mdCommit and push:
git add profile-name
git commit -m "Add profile-name plugin"
git push
While plugins provide shared configuration, each project can still have its own customizations:
Project directory structure:
your-project/
├── .claude/
│ ├── settings.json # Enable plugins + project-specific settings
│ ├── settings.local.json # Personal overrides (gitignored)
│ ├── CLAUDE.md # Project-specific instructions
│ └── commands/ # Project-only commands