Access the KEGG database API to retrieve biological data (genes, pathways, compounds, drugs). Invoke when the user asks to search, list, or get details from KEGG.
60
71%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./scientific-skills/Evidence Insight/kegg-api/SKILL.mdThis skill allows querying the KEGG (Kyoto Encyclopedia of Genes and Genomes) database via its REST API.
scripts/kegg_client.py.references/ for task-specific guidance.Python: 3.10+. Repository baseline for current packaged skills.Third-party packages: not explicitly version-pinned in this skill package. Add pinned versions if this skill needs stricter environment control.See ## Usage above for related details.
cd "20260316/scientific-skills/Evidence Insight/kegg-api"
python -m py_compile scripts/kegg_client.py
python scripts/kegg_client.py --helpExample run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/kegg_client.py with the validated inputs.scripts/kegg_client.py.references/ contains supporting rules, prompts, or checklists.info: Display database statistics.
info <database>info pathwaylist: List entry identifiers.
list <database>list organismfind: Search for entries.
find <database> <query>find genes shiga+toxinget: Retrieve entry details.
get <dbentries>get hsa:10458conv: Convert identifiers.
conv <target_db> <source_db>conv eco ncbi-geneidlink: Find related entries.
link <target_db> <source_db>link pathway hsaddi: Drug-drug interactions.
ddi <dbentry>ddi D00564Run the python script scripts/kegg_client.py.
python scripts/kegg_client.py <operation> <args...> [--option <opt>]# Get info about pathways
python scripts/kegg_client.py info pathway
# Find genes related to "insulin" in humans (hsa)
python scripts/kegg_client.py find hsa insulin
# Get details for a specific gene
python scripts/kegg_client.py get hsa:3630
# Link genes to pathways
python scripts/kegg_client.py link pathway hsa:3630kegg_api_result.md unless the skill documentation defines a better convention.Run this minimal verification path before full execution when possible:
python scripts/kegg_client.py --helpExpected output format:
Result file: kegg_api_result.md
Validation summary: PASS/FAIL with brief notes
Assumptions: explicit list if any63c61d3
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.