ZSeven-W

Skill CLI — AI skill for Claude Code

AI community

Cross-platform CLI for creating, validating, and converting AI agent skills.

How to install Skill CLI

This entry records only its repository, not the path inside it, so there is no exact command to give. Open ZSeven-W/skill-cli and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Skill CLI does

Cross-platform CLI for creating, validating, and converting AI agent skills. Supports OpenClaw, Claude Code, and more.

Alternatives in AI

  • Codex — openai-codex Adversarial code review, Codex CLI integration, cross-model analysis 9.6k ★
  • Golutra — Multi-agent AI orchestration platform for automation, workflows, and developer tools 3.8k ★
  • Cumora — Where agent teams gather 3.2k ★

README

skill-cli

Cross-platform CLI for AI agent skills

Create, validate, discover, and convert skills for AI agents (OpenClaw, Claude Code, etc.)

![Go](https://img.shields.io/badge/Go-1.25+-00ADD8?style=flat&logo=go) ![MIT License](https://img.shields.io/badge/License-MIT-green.svg)

Why skill-cli?

Each AI agent (Claude Code, OpenClaw, Cursor) has its own skill format. skill-cli provides a unified tool to manage skills across platforms.

Features

  • Create — Scaffold new skills from templates
  • Validate — Full schema and best-practice validation
  • 🔍 Discover — Find installed skills across platforms
  • 🔄 Convert — Transform skills between formats

Installation

go install github.com/ZSeven-W/skill-cli@latest

Commands

Create a skill

skill-cli create --name "My Skill" --description "Does useful things"

Use `--name` and `--description` flags for `create` (positional arguments are not supported).

Validate a skill

skill-cli validate ./my-skill
skill-cli validate ./my-skill --strict      # Treat warnings as errors
skill-cli validate ./my-skill --format json  # JSON output

List installed skills

skill-cli list

Convert between formats

skill-cli convert --from openclaw --to claude --input ./my-skill --output ./converted

Supported Platforms

  • OpenClaw: ~/.nvm/.../openclaw/skills/
  • Claude Code: ~/.claude/skills/
  • Custom paths via environment variables

Validation Features

  • Frontmatter schema checks (name, description, version, tags, metadata)
  • SKILL.md structure validation (heading, Overview, Usage)
  • Best-practice checks (description quality, examples, directory references)

License

MIT