ワンクリックで
skiller
Search, install, and manage skills from the marketplace (skills.sh + ClawHub). Browse library packs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search, install, and manage skills from the marketplace (skills.sh + ClawHub). Browse library packs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
DJ — your personal Disc Jockey. Describe a vibe ("Hong Kong 90s top 50", "rainy-Sunday jazz", "best of Beyond") and DJ builds the set, finds each track, and pulls clean MP3s into your local library — tagged, ready to copy to your phone for offline play. DJ curates; you press Get. It never moves or uploads anything on its own.
GTM brain for solo founders launching products. Pulse reads the user's brief (identity, voice, hard rules) AND the configured workspace (README, /doc/, recent commits, source) to know the product as well as the user does. The page drives a three-step pipeline — Gather local (script), Gather web (agent + Fetch tools), Draft (agent) — sending one goal at a time. Every artifact lands on the page via PageUpdate body_patch; the agent never replies with plain prose drafts. Built on four internal capabilities — discover-customers, monitor-mentions, track-progress, draft-content. AI-led, never auto-posts.
Durable memory across sessions — a model of who the user is, not a log of what was done. Three-tier store (core + long-term + episodic staging) via the `ling-mem` daemon. Same semantics in Linggen, Claude Code, Codex, and OpenClaw.
Mac Shifu — keeps your Mac and iPhone healthy and tidy. System health (disk, apps, caches, dashboard) plus iPhone/Mac photo-video cleanup. Use --web for the interactive dashboard, or run directly in chat.
Personal CFO — a private, on-device finance analyst. Import bank/credit CSV (or PDF) exports and it builds a spend report, finds subscriptions and price hikes, answers "why did I spend more this month?", drafts cancellation emails, and tracks goals month over month. Transactions never leave the machine except as redacted, aggregated figures. Read-only on your data; it advises and drafts, it never moves money.
Games — Chinese Chess and Gomoku against AI, plus Snake, Pong, and Tetris arcade classics
| name | skiller |
| description | Search, install, and manage skills from the marketplace (skills.sh + ClawHub). Browse library packs. |
| user-invocable | true |
| allowed-tools | ["Bash","Read","Write","Glob"] |
| argument-hint | find <query> | add <name> | list | packs | pack <id> |
| permission | {"paths":[{"path":"~/.linggen/skills","mode":"write"},{"path":"~/.claude/skills","mode":"write"}],"warning":"Skiller installs and removes skills under ~/.linggen/skills (and ~/.claude/skills for cross-tool compat). It runs install scripts (curl, unzip, cp) and writes skill files."} |
Search, install, and manage skills from GitHub via skills.sh and ClawHub.
SKILLER_SCRIPTS_DIR="$PWD/.linggen/skills/skiller/scripts"
[ -d "$SKILLER_SCRIPTS_DIR" ] || SKILLER_SCRIPTS_DIR="$HOME/.linggen/skills/skiller/scripts"
[ -d "$SKILLER_SCRIPTS_DIR" ] || SKILLER_SCRIPTS_DIR="$PWD/.claude/skills/skiller/scripts"
[ -d "$SKILLER_SCRIPTS_DIR" ] || SKILLER_SCRIPTS_DIR="$PWD/.codex/skills/skiller/scripts"
[ -d "$SKILLER_SCRIPTS_DIR" ] || SKILLER_SCRIPTS_DIR="${CODEX_HOME:-$HOME/.codex}/skills/skiller/scripts"
[ -d "$SKILLER_SCRIPTS_DIR" ] || SKILLER_SCRIPTS_DIR="$HOME/.claude/skills/skiller/scripts"
Search for skills on GitHub (via skills.sh) and ClawHub:
bash "$SKILLER_SCRIPTS_DIR/lookup_skills.sh" "<query>"Install a skill from the marketplace (with confirmation):
bash "$SKILLER_SCRIPTS_DIR/install_skill.sh" "<skill name or keyword>"Downloads the skill from GitHub, extracts it to .linggen/skills/<name>/ (project) or ~/.linggen/skills/<name>/ (global).
List all library packs available on the memory server:
bash "$SKILLER_SCRIPTS_DIR/list_library_packs.sh"Get the content of a specific library pack:
bash "$SKILLER_SCRIPTS_DIR/get_library_pack.sh" "<pack_id>"Requires Linggen Memory server:
list_library_packs.shget_library_pack.shDoes not require server:
lookup_skills.sh (uses skills.sh)install_skill.sh (uses GitHub directly)config.sh.linggen/skills/<name>/ (project) or ~/.linggen/skills/<name>/ (global).skills.sh.LINGGEN_SKILL_SOURCE=clawhub to install directly from ClawHub.