A collection of agent skills for SLICC, installable via upskill.
Install a single skill:
upskill ai-ecoverse/skills --skill <name>Install all skills:
upskill ai-ecoverse/skills --allEach skill lives in its own directory under skills/:
skills/{skill-name}/
├── SKILL.md # Required — skill definition with YAML frontmatter
├── scripts/ # .jsh scripts (callable as shell commands)
├── references/ # API docs, endpoint references
└── assets/ # Observer scripts, .bsh auto-injectors, etc.
Only SKILL.md is required. Add the other directories as needed.
Every SKILL.md starts with YAML frontmatter that defines the skill metadata:
---
name: my-skill
description: Short description of what the skill does and when to use it
allowed-tools: bash
---| Field | Required | Description |
|---|---|---|
name |
Yes | Skill identifier (should match the directory name) |
description |
Yes | What the skill does and when to trigger it |
allowed-tools |
No | Tools the skill is allowed to use |
The body of SKILL.md contains the full skill definition — instructions, examples, constraints, and any other context the agent needs.
- ai-ecoverse/slicc — The SLICC agent runtime that loads and executes skills
- ai-ecoverse/upskill — CLI tool for installing and managing skills from GitHub repos
Apache 2.0 — see LICENSE.
Exception: skills/llm-wiki/ is MIT-licensed (upstream origin). See skills/llm-wiki/LICENSE.