ワンクリックで
skill-manager
Search for, download, stage, organize, and install agent skills. Use when the user asks to find, add, or manage skills.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Search for, download, stage, organize, and install agent skills. Use when the user asks to find, add, or manage skills.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | skill-manager |
| description | Search for, download, stage, organize, and install agent skills. Use when the user asks to find, add, or manage skills. |
| user-invocable | false |
You are managing skills for Fermi. Skills are reusable prompt expansions stored as directories containing a SKILL.md file.
~/.fermi/skills/ # or the project's skills/ directory
skill-name/
SKILL.md # Required: YAML frontmatter + markdown instructions
scripts/ # Optional: helper scripts
references/ # Optional: reference docs
.staging/ # Temporary work area — NOT loaded as a skill
---
name: lowercase-hyphenated-name
description: One-line description of when to use this skill
disable-model-invocation: false # Optional: true = only user can invoke via /name
user-invocable: true # Optional: false = hidden from / menu, agent-only
---
Markdown instructions here. Use $ARGUMENTS for the full user argument string.
Use $ARGUMENTS[0], $ARGUMENTS[1], or $0, $1 for positional arguments.
Name rules: lowercase letters, numbers, and hyphens only. Must start with a letter or number.
web_search to find relevant skill repositories or ideasgit clone --depth 1 <repo-url> ~/.fermi/skills/.staging/<skill-name>
skills/.staging/<skill-name>/SKILL.md exists with proper frontmatter:
description fieldmv ~/.fermi/skills/.staging/<skill-name> ~/.fermi/skills/<skill-name>
Clean up any git metadata if not needed:
rm -rf ~/.fermi/skills/<skill-name>/.git
reload tool. Skills are loaded at session start and refreshed on reload — they are not rescanned every turn, so a newly moved skill does not appear until you reload. After the reload tool runs, the skill is available as a /<skill-name> command and to the agent.When the user describes a task pattern they want as a skill:
.staging/<skill-name>/SKILL.mdreload tool to load itDelete the skill directory:
rm -rf ~/.fermi/skills/<skill-name>
Then call the reload tool so the removed skill is dropped from the active set.
.staging/ for work-in-progress — it is ignored by the skill loaderreload tool — skills are loaded on session start / reload, never rescanned per turnExplains Fermi's configuration system, settings.json, local project settings, model tiers, and directory structure. Use when users ask about configuration, settings, how to set up providers, or project-local overrides.
How to create a custom sub-agent template when the predefined explorer/worker/reviewer templates don't fit. Use when you need to spawn a sub-agent with a custom role, tool set, or system prompt.
Create or edit Microsoft Word (.docx) documents — headings, paragraphs, tables, styles, images, find-and-replace, extract text. Use when the user wants to read, generate, or modify a .docx file.
Create or edit PowerPoint (.pptx) presentations — slides from an outline or data, titles, bullets, tables, charts, images, speaker notes. Use when the user wants to build or modify a slide deck.
Create, edit, analyze, or clean Excel/.xlsx (and .csv) spreadsheets — formulas, multiple sheets, charts, formatting, data cleaning. Use when the user wants to read, build, or transform a spreadsheet.