Reve AI
Skill개발무료

skill-optimizer

실제 세션 데이터와 연구 기반 정적 분석으로 에이전트 스킬(SKILL.md)을 진단하고 최적화합니다. Claude Code, Codex를 비롯한 에이전트 스킬 호환 에이전트에서 동작합니다.

138

Skill Optimizer

中文版

Three Agent Skills for turning coding-agent work into better SKILL.md files:

  • skill-miner — mine coding-agent history, archives, memories, and repeated work to surface skill-worthy workflows with evidence.
  • skill-personalizer — audit and adapt newly created, downloaded, forked, or community skills to one user's own tools, habits, directories, and session history.
  • skill-generalizer — turn local, private, personal skills into publishable skills for GitHub, marketplaces, teams, or public sharing.

Current release: v2.0.0. This is a major redesign from the original single-skill optimizer.

Project site: https://hqhq1025.github.io/skill-optimizer/

The split is intentional. Generating, personalizing, and publishing skills are different jobs:

GoalSkillOptimization Direction
Mine repeated workflowsskill-minerScan real agent usage, cluster repeated workflows, and draft evidence-backed candidate skills.
Fit inwardskill-personalizerPreserve the original optimizer's audit checks, then add local defaults, user phrasing, preferred tools, verification habits, and workflow shortcuts.
Publish outwardskill-generalizerRemove private context, generalize examples, make install and README claims portable.

See Research Background for related agent-skill ecosystems, comparable projects, and papers that motivate session mining, skill libraries, trigger auditing, progressive disclosure, and lifecycle governance.

Installation

Copy the command below into your agent's chat:

Claude Code

Install the skills from https://github.com/hqhq1025/skill-optimizer

Codex

Install the skills from https://github.com/hqhq1025/skill-optimizer into ~/.codex/skills/

Other Agent Skills-compatible agents

Install the skills from https://github.com/hqhq1025/skill-optimizer into ~/.agents/skills/

Manual install:

git clone https://github.com/hqhq1025/skill-optimizer.git /tmp/skill-optimizer
mkdir -p ~/.agents/skills
cp -r /tmp/skill-optimizer/skills/skill-miner ~/.agents/skills/
cp -r /tmp/skill-optimizer/skills/skill-personalizer ~/.agents/skills/
cp -r /tmp/skill-optimizer/skills/skill-generalizer ~/.agents/skills/
rm -rf /tmp/skill-optimizer

For Codex-only installs, use ~/.codex/skills/:

git clone https://github.com/hqhq1025/skill-optimizer.git /tmp/skill-optimizer
mkdir -p ~/.codex/skills
cp -r /tmp/skill-optimizer/skills/skill-generalizer ~/.codex/skills/
cp -r /tmp/skill-optimizer/skills/skill-miner ~/.codex/skills/
cp -r /tmp/skill-optimizer/skills/skill-personalizer ~/.codex/skills/
rm -rf /tmp/skill-optimizer

For Claude Code-only installs, use ~/.claude/skills/.

Platform Support

AgentSupport levelRecommended path
CodexNative Agent Skills, plus optional plugin metadata.~/.codex/skills/ or .agents/skills/
Claude CodeNative skills in personal, project, and plugin scopes.~/.claude/skills/ or .claude/skills/
CursorNative Agent Skills and rules/commands; skills are discoverable by Agent..agents/skills/, .cursor/skills/, or global skills
OpenCodeNative skill tool and repo/home skill discovery..agents/skills/, .opencode/skills/, or ~/.config/opencode/skills/
Gemini CLI / Google agentsAgent Skills open format is documented by Google; GEMINI.md remains the always-on context mechanism..agents/skills/ or installer-managed skills

The safest public layout is skills/<name>/SKILL.md in the repo plus install instructions that copy into .agents/skills/ or the target agent's native skill directory.

Usage

Ask for the direction you want:

Mine my coding-agent history and find repeated workflows that should become skills.

GitHub에서 전체 내용 보기