ワンクリックで
skills-manager
Manage skills — add, update, remove, and review based on lessons or user requests
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Manage skills — add, update, remove, and review based on lessons or user requests
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Definitive reference for how Claude Code works — disambiguates skills vs hooks vs subagents vs MCPs vs slash commands vs memory vs settings. Use when asked "how does Claude Code X work", "what's the difference between X and Y", "where should this live", "build me a [skill|hook|agent|mcp|slash command]", "configure Claude Code", or when picking the right surface for a new capability.
Scribe — the project-documentation skill. Generate or maintain a project's Claude-facing documentation (CLAUDE.md, .claude/docs/*, project-context.md, README) from verified facts. Use when the user says "document this project", "write the docs for X", "the docs are stale", "fill in the .claude docs", or "/scribe". Detects existing doc state and routes between from-scratch and update. Verify-before-assert is the core discipline — confirmed facts go to committed docs, inferred/uncertain ones go to a separate hazards artifact, never silently into the repo.
Speak content aloud via Kokoro neural TTS (local, offline). Use when the user says "read it for me", "read it to me", "play it in audio", "say it", "speak it", "read that aloud", "/say-it", or asks to hear something spoken instead of reading it.
Install a local neural voice interface for Claude Code on macOS Apple Silicon. Wires mlx-whisper (STT) + Kokoro TTS (offline neural voices) into voice-claude and vtranscribe CLI scripts. Two voice contexts — personal (af_heart) and tech (af_bella). Multi-session safe — concurrent sessions speak in turn (global lock) and announce their name. No cloud APIs, no API keys.
Collect the user's daily work activity from Slack, Jira, Confluence, GitHub, and Google Drive with source links
Collect a team member's daily work activity from Slack, Jira, Confluence, and GitHub
| name | skills-manager |
| description | Manage skills — add, update, remove, and review based on lessons or user requests |
| user_invocable | true |
| args | Optional description of what to add, update, remove, or improve |
You manage the full lifecycle of skills: adding new skills, updating existing ones, removing obsolete ones, and reviewing skills based on lessons learned or explicit user requests.
See .claude/skills/_shared/MODEL_SELECTION.md (in your workspace) for full policy.
Setup — Resolve <workspace>: The skill's base directory is <workspace>/.claude/skills/skills-manager/; walk up three directory levels and validate that <workspace>/.claude/.workspace exists. Abort with a setup-broken error if validation fails.
Understand the trigger and load lessons context: Review the lessons or requests passed as input. Derive the active project slug from the session marker (scan <workspace>/sessions/active/*.md and <workspace>/projects/*/sessions/active/*.md; use project_slug from frontmatter — skip project-scope read if no marker exists or project_slug is workspace). Then read the following files (skip silently if missing):
<workspace>/projects/<slug>/.claude/memory/lessons-learned.md (project scope, when a project marker is active)<workspace>/.claude/memory/lessons-learned.md (workspace scope)Scan all entries for recurring mentions of the same skill, bug patterns, or convention violations that span multiple sessions. These inform step 2 even when not explicitly passed as args. If invoked manually with no args, use the lessons as the starting point for proposing improvements rather than asking the user what to do.
Assess what's needed: Determine the appropriate action:
For updates — only propose changes when:
For new skills — propose a new skill when:
For removal — propose removing a skill when:
Research best practices: Use web search to find current best practices related to the proposed changes. Look for:
Apply the four skill authoring principles (write the what not the how; agentic-first for external services; nudge on known agent friction; deterministic prescription only for stable mechanical work) — these are your operating default, used directly with no file load. When a call is genuinely contested — a best-practice-vs-principle conflict, or an edge the one-liners don't settle — consult <source>/docs/v2-design-principles.md for the full rationale: resolve <source> from <workspace>/.claude/.source; if it or the file is absent, proceed on the inline principles and note the doc was unavailable. If an up-to-date best practice conflicts with a principle, flag the conflict explicitly in the proposal — do not silently pick one. The user decides whether to update the principle (best practice has moved on) or apply the principle and override the best practice for this skill (principle still holds).
Read current skills: Read the relevant skill files from .claude/skills/*/SKILL.md to understand current behavior.
Propose changes: Present specific, concrete changes with:
<scope>/<path>/<key>) but <scope> can only be learned by reading the lookup target itself, the claim is circular — it hides an implicit scan, and the executing model will either invent one or fail the lookup. Fix by requiring the routing field to be recalled alongside the key, documenting a small fixed-set probe fallback ("try <workspace>/<path> first, else glob <workspace>/projects/*/<path>"), or re-architecting so the lookup doesn't need scope. Never ship "deterministic" wording an executor can only satisfy by scanning.<source>/docs/v2-design-principles.md, loaded only when a decision turns on it). If a researched best practice conflicts with a principle, the proposal must surface the conflict and recommend a resolution — never silently choose.## Model Selection section, draft one as part of the proposal. Apply the shared policy's decision order (script? → Haiku? → Sonnet default? → Opus, sparingly?) to the skill's actual work — read .claude/skills/_shared/MODEL_SELECTION.md for tier definitions, and match the block conventions of skills that already carry one. A tier gap caught here ships annotated instead of waiting for the next /finance-controller audit.ToolSearch or equivalent introspection) before approving. A tool name that doesn't resolve on the live server is a blocking finding, not a style note — flag it and require a fix before merge. A tool renamed or removed since a skill was last verified can survive multiple reviews undetected precisely because nothing else in the pipeline checks it mechanically.If no changes are warranted, say so and explain why.
IMPORTANT — Ask for approval: Never modify skill files without explicit user approval. Present the proposal and wait for confirmation.
Apply changes (if approved): Edit the skill files as approved. Then log the change by appending to .claude/memory/lessons-learned.md:
- **[YYYY-MM-DD]** [tool-usage] Updated [skill-name] skill: [brief description of change]
Report: Summarize what was changed (or that no changes were made).