원클릭으로
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 직업 분류 기준
Explains 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.
| 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 turn