scaffold_plugin
Generate a starter plugin template for the Judges Panel with custom rules, optional custom judges, and lifecycle hooks.
Instructions
Generate a starter plugin template for the Judges Panel. Creates a self-contained plugin file with custom rules, optional custom judges, and lifecycle hooks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Unique plugin name (e.g., "my-org-rules", "acme-standards") | |
| dryRun | No | Preview output without writing to disk | |
| version | No | Semantic version (default: 1.0.0) | |
| outputPath | No | File path to write the plugin (default: "judges-plugin.ts") | |
| rulePrefix | Yes | Rule ID prefix for this plugin's rules (e.g., "ACME") | |
| description | No | Plugin description (e.g., "ACME Corp internal coding standards") | |
| includeHooks | No | Include beforeEvaluate/afterEvaluate hook stubs (default: true) | |
| includeCustomJudge | No | Include a custom judge definition stub (default: false) |