AdaL Skills Marketplace

August 4, 2026 ยท View on GitHub

Essential skills for teams and developers building software with best engineering practices and 10x productivity. Compatible with AdaL CLI and Claude Code.

Installation

Both AdaL CLI and Claude Code use the same commands.

Step 1: Add the Marketplace

/plugin marketplace add SylphAI-Inc/skills

Step 2: Browse and Install

Use the /plugin command to browse available plugins and install:

/plugin

Then follow the interactive dialog:

  1. Select Browse and install plugins
  2. Select adal-agent-skills marketplace
  3. Select core-skills plugin
  4. Select Install now

Or install directly:

/plugin install core-skills@adal-agent-skills

Format: /plugin install <plugin-name>@<marketplace-name>

Step 3: View Available Skills

After installation, see all your available skills:

/skills

Available Skills

Core Skills (core-skills plugin)

SkillDescription
create-skillGuide for creating AdaL skills - personal, project, or plugin
posthog-analyticsAutomate PostHog dashboard creation, sync, and export via API
clone-anywebsiteClone any website's landing page with pixel-perfect fidelity โ€” visual-first workflow with sniper CSS extraction, animation detection, and mandatory Builder+Evaluator pattern
glowmotionCreate premium animated technical diagrams (flowcharts, architecture diagrams, Mermaid conversions) as single self-contained HTML+SVG files with glowing comet-dot flows, pulsing highlights, and a built-in light/dark theme toggle
codegraphTurn any codebase into an explorable interactive graph โ€” deterministic structural scan (imports, symbols, PageRank importance, architectural layers, dependency cycles, entry points) plus AI summaries and guided tours, delivered as one self-contained HTML file
finger-frame-aiGenerate an AI-restyled world inside a tracked two-hand finger-frame gesture using Gemini Omni, MediaPipe, and FFmpeg

SWE CLI Skills (swe-cli-skills plugin)

man pages for machines ๐Ÿค– โ€” Your agent knows the commands. We teach it the workflows.

23 expert CLI guides across 9 categories. Senior engineer judgment โ€” not reference docs, but operational workflows, safety guardrails, gotchas, error recovery, and anti-patterns.

CategoryCLIs
โ˜๏ธ CloudAWS, gcloud, Azure
๐Ÿ—๏ธ IaCTerraform
๐Ÿณ ContainersDocker, kubectl, Helm
๐Ÿ”€ Git & VCSGit, GitHub CLI
๐Ÿ› ๏ธ Dev Toolsjq, sed, make
๐ŸŒ Networkingcurl, SSH/SCP
๐Ÿ“ฆ Package Managersnpm, pip/uv
๐Ÿ—„๏ธ Databasespsql, redis-cli
๐Ÿš€ PlatformsStripe, Sentry, Vercel, Firebase, Fly.io

Install: /plugin install swe-cli-skills@adal-agent-skills

See the full swe-cli-skills README for details.

Creating Your Own Skills

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

Repository Structure

.
โ”œโ”€โ”€ .claude-plugin/
โ”‚   โ””โ”€โ”€ marketplace.json       # Plugin metadata and skill registry (required path)
โ”œโ”€โ”€ README.md                  # This file
โ””โ”€โ”€ skills/                    # All skills organized by name
    โ”œโ”€โ”€ clone-anywebsite/
    โ”‚   โ””โ”€โ”€ SKILL.md
    โ”œโ”€โ”€ codegraph/              # Interactive codebase graph generator
    โ”‚   โ”œโ”€โ”€ SKILL.md
    โ”‚   โ””โ”€โ”€ scripts/
    โ”œโ”€โ”€ create-skill/
    โ”‚   โ””โ”€โ”€ SKILL.md
    โ”œโ”€โ”€ glowmotion/             # Animated HTML+SVG diagram generator
    โ”‚   โ”œโ”€โ”€ SKILL.md
    โ”‚   โ”œโ”€โ”€ references/
    โ”‚   โ””โ”€โ”€ scripts/
    โ”œโ”€โ”€ posthog-analytics/
    โ”‚   โ””โ”€โ”€ SKILL.md
    โ””โ”€โ”€ swe-cli-skills/        # 23 CLI guides for AI coding agents
        โ”œโ”€โ”€ SKILL.md            # Entry point (index + quick reference)
        โ””โ”€โ”€ skills/
            โ”œโ”€โ”€ cloud/          # AWS, gcloud, Azure
            โ”œโ”€โ”€ iac/            # Terraform
            โ”œโ”€โ”€ containers/     # Docker, kubectl, Helm
            โ”œโ”€โ”€ git-vcs/        # Git, GitHub CLI
            โ”œโ”€โ”€ dev-tools/      # jq, sed, make
            โ”œโ”€โ”€ networking/     # curl, SSH
            โ”œโ”€โ”€ package-managers/ # npm, pip/uv
            โ”œโ”€โ”€ databases/      # psql, redis-cli
            โ””โ”€โ”€ platforms/      # Stripe, Sentry, Vercel, Firebase, Fly.io

Contributing

  1. Fork this repository
  2. Create a new skill in skills/<skill-name>/SKILL.md
  3. Add the skill to marketplace.json under the appropriate plugin
  4. Submit a pull request

SKILL.md Format

---
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 agent

License

MIT License - see LICENSE for details.