Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
Submit compact Bgee SPARQL requests for healthy wild-type expression metadata and ontology-aware lookup patterns. Use when a user wants concise Bgee summaries; save raw results only on request.
npx claudepluginhub robinebers/converted-plugins --plugin life-science-researchHow this skill is triggered — by the user, by Claude, or both
Slash command
/life-science-research:bgee-skillThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Use `scripts/sparql_request.py` for all Bgee SPARQL work.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
scripts/sparql_request.py for all Bgee SPARQL work.SELECT or ASK queries and add LIMIT early.query_path for longer SPARQL documents instead of pasting large inline queries.query or query_pathmethod, params, response_format, max_items, max_depth, timeout_sec, save_raw, raw_output_path{"query":"ASK {}"}{"query":"SELECT * WHERE { ?s ?p ?o } LIMIT 3","max_items":3}ok, source, a compact summary, and raw_output_path when save_raw=true.ok=false with error.code such as invalid_json, invalid_input, network_error, or invalid_response.echo '{"query":"ASK {}"}' | python scripts/sparql_request.py
scripts/sparql_request.py.