Complete Nx plugin development toolkit: create custom generators, executors, and extend Nx workspaces with reusable automation
93
94%
Does it follow best practices?
Impact
92%
1.00xAverage score across 5 eval scenarios
Passed
No known issues
Use this reference to design generator schemas that fail early and guide users clearly.
{
"cli": "nx",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Artifact name"
},
"directory": {
"type": "string",
"description": "Target directory"
}
},
"required": ["name"]
}{
"type": "object",
"properties": {
"publishable": { "type": "boolean" },
"importPath": { "type": "string" }
},
"allOf": [
{
"if": { "properties": { "publishable": { "const": true } } },
"then": { "required": ["importPath"] }
}
]
}required for mandatory values.description fields for CLI help readability.