Claude Code plugins for PostSharp and Metalama development workflows
npx claudepluginhub postsharp/postsharp.engineering.aiskillsPostSharp engineering workflows: git conventions, PRs, releases, TeamCity CI/CD, build diagnostics, development utilities
Metalama framework development: aspect testing, test directives, code model, diagnostics
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
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Claude Code plugin marketplace for PostSharp and Metalama development workflows.
| Plugin | Description |
|---|---|
| eng | Git conventions, PRs, releases, TeamCity CI/CD, build diagnostics |
| metalama-dev | Metalama framework development: aspect testing, test directives |
/plugin marketplace add postsharp/PostSharp.Engineering.AISkills
/plugin install eng@postsharp-engineering
Add to your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"postsharp-engineering": {
"source": {
"source": "github",
"repo": "postsharp/PostSharp.Engineering.AISkills"
}
}
},
"enabledPlugins": ["eng@postsharp-engineering"]
}
PostSharp/Metalama engineering workflows:
| Command | Description |
|---|---|
/eng:create-pr | Create PR with metadata, milestone, issue linking |
/eng:prepare-release | Prepare GitHub release for a milestone |
/eng:tc-build | Trigger TeamCity build |
/eng:tc-check-build | Check TeamCity build status |
/eng:fix-binlog-warnings | Fix compiler warnings from MSBuild binlog files |
/eng:reflect | Review session and capture learnings |
The eng skill provides git workflow conventions:
topic/YYYY.N/XXXX-descriptiondevelop/YYYY.N, never default branchOrganize your source code with product families at the first level, repos underneath:
C:\src\
├── Metalama-2025.1\ # Product family (specific major version)
│ ├── Metalama\ # Main repo
│ ├── Metalama.Premium\
│ ├── Metalama.Documentation\
│ └── Metalama.Samples\
├── Metalama-2026.0\ # Another major version
│ ├── Metalama\
│ ├── Metalama.Premium\
│ └── ...
├── PostSharp.Engineering\ # Cross-product tooling (not version-specific)
│ ├── PostSharp.Engineering\
│ └── PostSharp.Engineering.AISkills\
└── ...
This structure allows:
Developers are encouraged to clone this repo locally and improve it.
For local development, reference the local path in your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"postsharp-engineering": {
"source": "C:/src/PostSharp.Engineering/PostSharp.Engineering.AISkills"
}
},
"enabledPlugins": ["eng@postsharp-engineering"]
}
When you've made improvements:
MIT