Getting started

Two simple ways to add and edit skills: website or CLI.

Quick start

A skill is a folder with a SKILL.md file. You can add and edit skills either in the web app or from your terminal.

>
If you want the fastest path, use the website flow first. If you prefer Git and terminal workflows, use the CLI flow.

Flow 1: Add/edit from the website

  1. Go to Dashboard.
  2. Click Add skill and upload a skill ZIP (must include SKILL.md).
  3. Open the skill page and edit files in the browser.
  4. Publish a new version when you are done.

Minimum SKILL.md fields

my-skill/SKILL.md
---
name: my-skill
description: What this skill does.
---

# My Skill

Instructions go here.

Flow 2: Add/edit from the CLI

Terminal
# Find and add a skill (no install needed)
npx sundial-hub find "your query"
npx sundial-hub add <skill-name>

To publish a skill from the CLI:

Terminal
# Authenticate and publish
cd my-skill
npx sundial-hub auth login
npx sundial-hub push .

Use npx sundial-hub find any time to search for skills.

Next steps