ワンクリックで
skillpkg
Agent Skills Package Manager - Install once, use everywhere. Manage, share, and sync AI agent skills across platforms.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Agent Skills Package Manager - Install once, use everywhere. Manage, share, and sync AI agent skills across platforms.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Help users configure MCP (Model Context Protocol) servers for Claude Code and other AI platforms.
程式碼審查,包裝 PAL MCP 的 codereview 功能
除錯輔助,包裝 PAL MCP 的 debug 功能,提供系統化問題診斷
Git 操作輔助,提供 commit message 規範、分支策略與 PR 指引
在檢查點驗證目標和方向,避免偏離軌道
將任務拆解為可執行的 Milestones,支援 PDCA 循環規劃
| name | skillpkg |
| description | Agent Skills Package Manager - Install once, use everywhere. Manage, share, and sync AI agent skills across platforms. |
| version | 0.4.0 |
You have access to skillpkg, a CLI tool for managing AI agent skills.
Use this tool to help users create, install, and sync skills.
First, verify skillpkg is installed:
skillpkg --version
If not installed, guide the user to install it:
npm install -g skillpkg-cli
skillpkg init # Interactive mode
skillpkg init --yes # Use defaults
skillpkg init --name my-skill # Specify name
This creates a skill.yaml file with the following structure:
schema: "1.0"
name: my-skill
version: 1.0.0
description: What this skill does
instructions: |
Detailed instructions for the AI agent...
skillpkg install user/repo # From GitHub (recommended)
skillpkg install github:user/repo # From GitHub (explicit)
skillpkg install ./path/to/skill # From local directory
skillpkg install -g <skill> # Install globally
skillpkg list # Project skills
skillpkg list -g # Global skills
skillpkg list --json # JSON output
skillpkg sync # Sync all skills
skillpkg sync my-skill # Sync specific skill
skillpkg sync -t claude-code # Sync to specific platform
skillpkg sync --dry-run # Preview changes
Supported platforms:
claude-code → syncs to .claude/skills/codex → syncs to .codex/skills/gemini-cli → syncs to .gemini/skills/skillpkg import # Auto-detect and import
skillpkg import .claude/skills/ # Import from specific path
skillpkg import --dry-run # Preview what would be imported
skillpkg export my-skill # Export to directory
skillpkg export my-skill -f zip # Export as zip
skillpkg export my-skill -f pack # Export as .skillpkg
skillpkg export --all # Export all skills
skillpkg search "code review" # Search for skills with SKILL.md
skillpkg search react --limit 5 # Limit results
skillpkg info <skill-name> # Get detailed info
skillpkg deps my-skill # Show skill dependencies
skillpkg why my-skill # Show why a skill is installed
skillpkg tree # Show full dependency tree
skillpkg status # Show project status
When helping users create skills, use this schema:
schema: "1.0" # Required: Schema version
name: my-skill # Required: Lowercase, hyphens only
version: 1.0.0 # Required: Semver format
description: Brief description # Recommended: One-line summary
author: # Optional: Author info
name: Your Name
email: email@example.com
url: https://github.com/username
platforms: # Optional: Target platforms
- claude-code
- codex
tags: # Optional: For discovery
- productivity
- code-review
triggers: # Optional: Activation triggers
- pattern: "/review"
description: "Trigger code review"
instructions: | # Required: Main skill content
Detailed instructions for how the AI should behave...
## Usage
...
## Examples
...
mkdir my-new-skill && cd my-new-skill
skillpkg init --name my-new-skill
# Edit skill.yaml with your instructions
skillpkg sync --dry-run # Test locally
skillpkg sync # Sync to platforms
skillpkg search "what you need"
skillpkg info some-skill
skillpkg install some-skill
skillpkg sync
# Skill is now available in your AI platform!
skillpkg import .claude/skills/
skillpkg list
skillpkg export --all -f zip # Backup all skills
skillpkg tree to check dependency chain