Organic

This is an old revision of the document!


Synthetic API Skill

Self-updating skill for querying Synthetic.new API and Organic wiki. Works with any agent harness (Hermes, Pi, Zed, etc).

Author: GwynTel™ (supermeap123 on github)

Skill URL: https://gist.github.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2

Support: hi@synthetic.new

Community: Discord

What It Does

  • Query Synthetic.new API (models, completions, quotas, search)
  • Fetch Organic wiki pages programmatically
  • Self-updates from gist source

Quick Install

For Hermes Agent:

Ask your agent:

Install skill from gist: https://gist.github.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2

Or if using Hermes CLI:

# Download raw skill
mkdir -p ~/.hermes/skills/research/synthetic-api
curl -s "https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw" \
  > ~/.hermes/skills/research/synthetic-api/SKILL.md
 
# Enable skill
hermes skills enable synthetic-api

For Other Agents:

Tell your agent to fetch and load this skill:

Fetch https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw and use as skill definition for Synthetic.new API queries.

Agent Prompt

Copy-paste this to any agent to bootstrap the skill:

Load synthetic-api skill. Source: https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw

This skill provides:
- Synthetic.new API endpoints (/models, /chat/completions, /quotas, /search)
- Base URLs: https://api.synthetic.new/openai/v1 and /anthropic/v1
- Organic wiki fetch: curl -s "https://organic.eris.host/doku.php?id={page}&do=export_raw"
- Page IDs: models, limits, faq, harnesses, harnesses:pi:tips, etc
- Discover all: https://organic.eris.host/start?do=index

Self-update: curl -s "${source_url}" > skill.md

Self-Updating

Skill checks source_url field before critical operations. Agent auto-fetches latest from gist.

Manual sync:

curl -s "https://gist.githubusercontent.com/supermeap123/90645e6b65aa5c438bf0413bfe7256d2/raw" > skill.md

See Also