From intelligo
Use when the user wants to query Intelligo data (searches, projects, subjects, due-diligence findings) in natural language. Composes a GraphQL query against Intelligo's MCP server and returns structured results.
How this skill is triggered — by the user, by Claude, or both
Slash command
/intelligo:query-intelligoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill wraps the `queryIntelligo` MCP tool exposed by the Intelligo MCP server. Use it whenever the user asks for Intelligo data — searches, projects, subjects, findings, scores, viewer/org context.
This skill wraps the queryIntelligo MCP tool exposed by the Intelligo MCP server. Use it whenever the user asks for Intelligo data — searches, projects, subjects, findings, scores, viewer/org context.
getSchema tool (or invoke the get-schema skill) for the specific type you need. Avoid pulling the full SDL unless you genuinely need it — it's ~12k tokens.search_alice_001, search_bob_pep_002, search_acme_clean_003, search_refresh_v2proj_demo_lpsubj_alice, subj_bob, subj_acmequeryIntelligo with the query string and (optionally) a variables map.Queryme: Viewer — current user / org context.search(id: ID!): Search — one search by id.searches(filter, first, offset): [Search!]! — list searches.searchesForSubject(canonicalId: ID!): [Search!]! — all searches for one subject across time.project(id: ID!): Project — one project (deal/case) by id.projects(first, offset): [Project!]! — list projects.If you hit a limit, narrow the query (smaller selection set, smaller first, paginate via offset).
User: "Show me the latest search for Alice."
query {
searchesForSubject(canonicalId: "subj_alice") {
id
createdAt
status
findings { id severity summary }
}
}
User: "Who am I logged in as?"
query { me { id email org { id name } } }
User: "List the first 5 projects."
query { projects(first: 5) { id name status } }
onboarding skill instead.get-schema skill instead.npx claudepluginhub intelligogroup/claude-plugin --plugin intelligoProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.