スキル一覧に戻る
MaxCarlson

agent-skills

by MaxCarlson

simple scripts meant to be used with aliases from zshrc

0🍴 0📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: agent-skills description: Manage and discover skills for AI coding assistants. Register skills, sync to CLIs, scan for candidates. metadata: version: 0.1.0 author: mcarls category: meta compatibility:

  • codex-cli
  • claude-code
  • cursor
  • gemini-cli

Agent Skills Manager

Universal skill management for AI coding assistants. Includes reference specs from Anthropic and OpenAI.

Commands

# List registered skills
skills list
skills list --json

# Add a skill (directory must contain SKILL.md)
skills add /path/to/skill
skills add /path/to/skill --name custom-name
skills add /path/to/skill --sync  # Also sync to CLIs

# Remove a skill
skills remove skill-name

# Sync skills to CLI directories
skills sync            # All CLIs
skills sync codex      # Just Codex
skills sync claude     # Just Claude
skills sync cursor     # Just Cursor

# Scan for skills
skills scan ~/projects
skills scan ~/projects --json

# Auto-register all found skills
skills auto ~/projects
skills auto ~/projects --sync

# Show skill details
skills info skill-name
skills info skill-name --json

Finding Skill Candidates

When scanning a codebase, look for:

Strong Candidates ✓

  • CLI tools with argparse, click, entry points
  • Wrappers around external tools (ffmpeg, yt-dlp)
  • API clients for services AI can't access
  • Local/network tools that bridge AI capability gaps

Weak Candidates ✗

  • Pure libraries with no CLI
  • UI-only code
  • Simple utility functions

Reference Documentation

This module includes upstream specs:

  • refs/agentskills/ - Anthropic Agent Skills specification
  • refs/openai-skills/ - OpenAI Codex skill catalog

Use these to understand the SKILL.md format and see real examples.

Directories

PathPurpose
~/.local/share/agent-skills/Central skills registry
~/.codex/skills/Codex skill symlinks
~/.claude/skills/Claude skill symlinks
~/.cursor/skills/Cursor skill symlinks

Creating a Skill

Add a SKILL.md file to any project:

---
name: my-skill
description: What this skill does
metadata:
  version: 1.0.0
compatibility:
  - codex-cli
  - claude-code
---

# My Skill

Documentation for the AI to read...

Then register it:

skills add /path/to/my-project --sync

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です