From intelligo
Use when you need to inspect the Intelligo GraphQL schema — discover available types, fields, or argument shapes — before composing a query. Calls the `getSchema` MCP tool.
How this skill is triggered — by the user, by Claude, or both
Slash command
/intelligo:get-schemaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill wraps the `getSchema` MCP tool. Use it to discover Intelligo's GraphQL types and fields before authoring a query.
This skill wraps the getSchema MCP tool. Use it to discover Intelligo's GraphQL types and fields before authoring a query.
queryIntelligo and are uncertain about a type's shape.Query fits the user's request.Single type (cheap, recommended). Pass typeName to fetch one type's SDL.
getSchema(typeName: "Search")
Returns ~50–500 tokens depending on the type.
Full SDL (expensive — use sparingly). Call with no arguments.
getSchema()
Returns ~12k tokens of the entire schema. Only do this if the user explicitly asks for the whole schema, or you genuinely need to scan many types.
getSchema with typeName: "<that type>".getSchema again per dependency rather than fetching the full SDL.query-intelligo skill (or call queryIntelligo directly) to fetch actual data.Query — entry points.Search, Project, Subject, Finding — core domain objects.Viewer, Org — auth context.GraphQL introspection (__schema, __type) also works inside a queryIntelligo call. For one-off field lookups during query composition, that is sometimes cheaper than a separate getSchema round-trip.
Provides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.
npx claudepluginhub intelligogroup/claude-plugin --plugin intelligo