Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/sage-bionetworks/agent-skills/synapse-python-clientnpx skills add Sage-Bionetworks/agent-skills --skill synapse-python-clientgit clone --depth 1 https://github.com/Sage-Bionetworks/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/sage-bionetworks/agent-skills/synapse-python-client)<a href="https://agentmods.dev/skills/sage-bionetworks/agent-skills/synapse-python-client"><img src="https://agentmods.dev/badge/skills/sage-bionetworks/agent-skills/synapse-python-client.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02752 |
| Opus 5 | $0.00000 | $0.01376 |
| Sonnet 5 | $0.00000 | $0.00550 |
| Haiku 4.5 | $0.00000 | $0.00275 |
Grade A, and why
synapse-python-client scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 421 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Synapse Python Client Skill
Overview
The Synapse Python client (synapseclient) is the official Python SDK and CLI for Synapse (synapse.org), a collaborative biomedical data sharing platform by Sage Bionetworks. The modern synapseclient.models API provides async-first dataclass models with auto-generated sync wrappers.
Installation
pip install synapseclient
# With optional extras
pip install "synapseclient[boto3,pandas,pysftp,curator]"
Requires: Python 3.10 - 3.14
Authentication
import synapseclient
# Personal access token (preferred)
synapseclient.login(authToken="your_token")
# From ~/.synapseConfig [default] profile
synapseclient.login()
# From environment variable SYNAPSE_AUTH_TOKEN
synapseclient.login()
# Select a named profile from ~/.synapseConfig
# Set SYNAPSE_PROFILE=myprofile or pass profile="myprofile"
synapseclient.login(profile="myprofile")
Auth priority chain: login args > config file (~/.synapseConfig) > SYNAPSE_AUTH_TOKEN env var > AWS SSM (via SYNAPSE_TOKEN_AWS_SSM_PARAMETER_NAME).
Core Concepts
- Entity: Base class for Synapse objects (Projects, Folders, Files, Tables, Datasets, etc.)
- Synapse ID: Format
syn123456- unique identifier for every entity - Async-first: All model methods are async with
_asyncsuffix. The@async_to_syncdecorator auto-generates sync wrappers (without the suffix) - Dataclass models: All models are
@dataclassclasses (NOT Pydantic)
Sync vs Async Usage
Sync (default for scripts)
from synapseclient.models import File
file = File(id="syn123456").get() # sync wrapper
file.store() # sync wrapper
Async (for heavy I/O, parallel operations)
import asyncio
from synapseclient.models import File
async def main():
file = await File(id="syn123456").get_async()
await file.store_async()
# Parallel uploads
files = [File(path=p, parent_id="syn123") for p in paths]
await asyncio.gather(*(f.store_async() for f in files))
asyncio.run(main())
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 421 lines · 0 tokens per session scan A f2dcbd02ccb0
synapse-python-client is a skill published in the GitHub repository Sage-Bionetworks/agent-skills (5 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,752 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
jupyter-notebook
Use when the user asks to create, scaffold, or edit Jupyter notebooks (.ipynb) for experiments, explorations, or tutorials; prefer the bundled templates and run the helper script newnotebook.py to generate a clean starting notebook.
arxiv-search
Searches arXiv for preprints and academic papers, retrieves abstracts, and filters by topic. Use when the user asks to find research papers, search arXiv, look up preprints, find academic articles in physics, math, CS, biology, statistics, or related fields.
quantum-qiskit
Reference qiskit 2.x patterns for variational quantum machine learning. Covers data-encoding feature maps, variational quantum classifier (VQC) training, variational quantum eigensolver (VQE) for chemistry, matrix-product-state circuits, and noise model integration. Use when writing Python code that imports qiskit…
biology-biopython
Bioinformatics with Biopython for sequence manipulation, file parsing, BLAST, and phylogenetics. Use when working with DNA/RNA/protein sequences or biological databases.
chemistry-rdkit
Computational chemistry with RDKit for molecular analysis, descriptors, fingerprints, and substructure search. Use when working with SMILES, drug discovery, or cheminformatics tasks.
rocm-kernels
Provides guidance for writing and benchmarking optimized Triton kernels for AMD GPUs (MI355X, R9700) on ROCm, targeting HuggingFace diffusers (LTX-Video, SD3, FLUX) and transformers. Core kernels: RMSNorm, RoPE 3D, GEGLU, AdaLN. Includes XCD swizzle, autotune, diffusers integration patterns, and LTX-Video pipeline…