Community gallery · open source · 2026

A gallery of skills for Joni.

Joni is an AI agent that learns by reading skills. This is where skill-builders share them — bite-sized folders with a SKILL.md and a few scripts. Grab what you need. Ship what you build.

Browse the catalog
Vol. 01 The Cosmic Harbor
Skills
Categories
Downloads
01

What is a skill?

A Joni skill is a small folder of instructions and scripts. Drop it in the right place and Joni learns a new ability — making videos, swapping crypto, reading PDFs, whatever the community ships next.

i.

Learn

Every skill has a SKILL.md that tells Joni when and how to use it. The scripts do the work.

ii.

Install

Drop the folder into ~/.joni/skills/. Joni auto-loads it on the next session. No config.

iii.

Share

Built something good? Upload a zip. Every Joni — everywhere — can pick it up in seconds.

02

The catalog

Filter by category, grab a zip, or copy the one-line CLI install.

Loading the catalog…
03

How to install

Two ways. Both end up at ~/.joni/skills/<skill>/.

# Replace <skill> with the skill slug — e.g. "summarize"
curl -sL https://joniskills-api-cice.onrender.com/skills/<skill>/download \
  -o ~/.joni/skills/<skill>.zip \
  && mkdir -p ~/.joni/skills \
  && ( cd ~/.joni/skills \
       && unzip -o <skill>.zip \
       && rm <skill>.zip )

# Then restart your Joni session — the skill auto-loads.
  1. Click Download on any card in the catalog to grab the .zip.
  2. Unzip into ~/.joni/skills/ — you'll get ~/.joni/skills/<skill>/SKILL.md.
  3. Set required env vars in ~/.joni/joni.json under skills.entries.<skill>.env.
  4. Start a new Joni session. The skill loads automatically.