Essential skills for teams and developers building software with best engineering practices and 10x productivity. Compatible with AdaL CLI and Claude Code.
Both AdaL CLI and Claude Code use the same commands.
/plugin marketplace add SylphAI-Inc/skills
Use the /plugin command to browse available plugins and install:
/plugin
Then follow the interactive dialog:
- Select Browse and install plugins
- Select adal-agent-skills marketplace
- Select core-skills plugin
- Select Install now
Or install directly:
/plugin install core-skills@adal-agent-skills
Format:
/plugin install <plugin-name>@<marketplace-name>
After installation, see all your available skills:
/skills
| Skill | Description |
|---|---|
| create-skill | Guide for creating AdaL skills - personal, project, or plugin |
| posthog-analytics | Automate PostHog dashboard creation, sync, and export via API |
See the create-skill guide for instructions on:
- Personal skills (
~/.adal/skills/) - Private to you - Project skills (
.adal/skills/) - Shared via git with your team - Plugin skills (GitHub repo) - Public, shareable via marketplace
skills/
├── marketplace.json # Plugin metadata and skill registry
├── README.md # This file
└── skills/ # All skills organized by name
└── <skill-name>/
└── SKILL.md # Skill instructions (required)
- Fork this repository
- Create a new skill in
skills/<skill-name>/SKILL.md - Add the skill to
marketplace.jsonunder the appropriate plugin - Submit a pull request
---
name: skill-name
description: Brief description for the skills list
author: your-username
version: 1.0.0
---
# Skill Title
## When to Use
Describe trigger conditions
## Instructions
Step-by-step guidance for the agentMIT License - see LICENSE for details.