Graphql schema generator
Skill a5c-ai/babysitter/library/specializations/software-architecture/skills/graphql-schema-generator
Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration
npx -y skills add a5c-ai/babysitter --skill graphql-schema-generatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Generate GraphQL schemas from data models with resolver stubs and federation support
SKILL.md
2.6 KB, as published. Nobody here has run it
GraphQL Schema Generator Skill
Overview
Generates GraphQL SDL schemas from data models with type inference, resolver stub generation, schema validation, and Apollo Federation support.
Capabilities
- Generate GraphQL SDL from data models
- Type inference from existing data structures
- Resolver stub generation
- Schema validation and linting
- Apollo Federation support
- Subscription type generation
- Input type and mutation generation
Target Processes
- api-design-specification
Input Schema
{
"type": "object",
"required": ["dataModels"],
"properties": {
"dataModels": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"fields": { "type": "array" },
"relationships": { "type": "array" }
}
}
},
"outputPath": {
"type": "string",
"description": "Output schema file path"
},
"options": {
"type": "object",
"properties": {
"generateResolvers": {
"type": "boolean",
"default": true
},
"federation": {
"type": "boolean",
"default": false
},
"generateSubscriptions": {
"type": "boolean",
"default": false
},
"generateInputTypes": {
"type": "boolean",
"default": true
}
}
}
}
}
Output Schema
{
"type": "object",
"properties": {
"schemaPath": {
"type": "string"
},
"resolversPath": {
"type": "string"
},
"types": {
"type": "array",
"items": { "type": "string" }
},
"queries": {
"type": "array"
},
"mutations": {
"type": "array"
}
}
}
Usage Example
{
kind: 'skill',
skill: {
name: 'graphql-schema-generator',
context: {
dataModels: [
{ name: 'User', fields: ['id', 'name', 'email'] },
{ name: 'Post', fields: ['id', 'title', 'authorId'] }
],
outputPath: 'graphql/schema.graphql',
options: {
generateResolvers: true,
federation: false
}
}
}
}