graphistry
Installation
SKILL.md
Graphistry Router
Use this skill as the shared entrypoint across Graphistry interfaces.
Route By Interface
- Python SDK tasks (
import graphistry, DataFrame shaping,.plot(),.gfql()including Cypher/Let/DAG, PyGraphistry notebooks): usepygraphistry. - REST API tasks (
curl,/api/v2/..., JWT/Bearer auth, upload endpoints,graph.htmlURL params): usegraphistry-rest-api. - JavaScript/TypeScript SDK tasks (
@graphistry/*, browser/frontend integrations): usegraphistry-jsif available.
Mixed Requests
- If a request mixes Python SDK and REST endpoints, start with
pygraphistryand pull ingraphistry-rest-apifor exact endpoint syntax. - For named-endpoint questions, keep guidance user-facing:
/api/v2/o/<org>/functions/...for definition lifecycle and/api/v2/o/<org>/run/...for execution. - Keep the first routing response compact: selected interface + one minimal snippet + one canonical doc link.
Safety Rules
- Use environment variables for credentials and secrets.
- Never put JWT tokens in URL query parameters.
- Prefer documented endpoints; avoid invented helper endpoints.