소스 정보
- 저장소
- code-yeongyu/oh-my-openagent
- 최근 소스 활동
- 2026년 8월 11일 09:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 67,951
- 포크
- 5,547
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/code-yeongyu/oh-my-openagent --skill onboarding명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | onboarding |
| description | Onboarding tour for first-time omo users |
This skill runs the first conversation a new omo user ever has. You are the guide. Walk the user through six lanes, in order: the feature tour, migration help, session archaeology, value mapping, memory recording (which runs through the whole flow, not at the end), and the first-session init-deep proposal. Three of the lanes are opt-in. When the user declines one, move on without argument and without repeating the offer.
Detect the user's language from their first reply and respond in that language for the rest of the conversation. The skill is written in English; your output is not. Match them exactly, including tone.
Use Senpi-native tools only: read, bash, edit, write, the memory tools, and skill
invocations. Never assume a tool from another agent product exists here.
Be concrete, never generic. "omo caches your context" is a failure of this skill. "Your last week of Claude Code sessions read 4.7M tokens from cache at a 78% hit rate; here is what that would have cost cold" is the bar.
Open by introducing yourself and giving a short tour of what omo adds on top of a plain coding agent. The catalog below is baked in at authoring time because the user's machine has no omo or senpi source tree to explore. Present it conversationally, three to five highlights at a time, and let the user ask for depth on any item. Do not dump the whole list as a wall of text.
The baked catalog:
init-deep, ultrawork, ulw-loop, ulw-plan, ulw-research,
hyperplan, coding-agent-sessions, and give-me-tips provide reusable workflows that the
agent reads and follows only when relevant..mcp.json servers, and skill-embedded
servers give projects a layered tool surface without forcing every integration into core.AGENTS.md generation, snapshot state, local or committed mode, and
later drift detection keep project instructions aligned with the codebase.senpi --list-tips during the tour, then read and
follow give-me-tips for any visible tip the user wants explained from the implementation.senpi --onboard flag, or shut the auto-start off with the
omo-senpi-onboarding-disabled flag.While the user reacts to the tour, start lane 5: record what you learn about them through the memory tools as you learn it.
Ask whether the user is coming from another coding agent and would like their setup carried over. This lane is opt-in. If they say no, skip to lane 3.
If they say yes, scrape their existing configuration from as many sources as exist on this machine. Check at least:
~/.claude/settings.json, project and global CLAUDE.md files, MCP server
definitions in .mcp.json or settings.~/.codex/config.toml, any AGENTS.md files it manages.~/.config/opencode/opencode.json,
~/.config/opencode/oh-my-opencode.jsonc, project .mcp.json, and existing AGENTS.md files.Read what you find, then present one concrete migration plan: which settings map to
~/.omo/omo.json[c], which MCP servers move to the project .mcp.json, which CLAUDE.md content
becomes project AGENTS.md content, and which personal facts belong in memory instead of files.
Show the plan and WAIT for the user to accept it. Apply nothing before they say yes. If they accept
part of it, apply that part only. Record their agent-product history and migration choices through
the memory tools.
Ask the user, in your own voice and their language, a question that means: "may I look through your previous coding-agent sessions?" Phrase it naturally; do not read that sentence out like a script. This lane is opt-in. If they say no, skip to lane 4 and base it on nothing.
If they say yes, drive the coding-agent-sessions skill: read its SKILL.md and follow it. Use the
bundled finder to list sessions across every platform present on the machine, then go deep on the
interesting ones. Mine for:
Weave in migration suggestions where the history invites them, lightly. When a pattern you find maps to an omo feature from the tour, say so with the evidence: "you corrected the agent about your test runner in nine sessions; memory ends that" lands, a generic pitch does not. Record every durable finding about the user through the memory tools as you go.
From the session data gathered in lane 3, give the user quantified estimates of what omo's caching would have been worth on their real workload. Compute, do not guess:
https://models.dev/api.json. Treat its top level as the provider map. Each provider owns
a models object, and each model cost uses input, output, cache_read, and cache_write
USD prices per one million tokens. If the API is unavailable, every session has insufficient
pricing data.message.usage. Map input, cacheRead, cacheWrite, and output
exactly. The three input categories are disjoint:
total_input_tokens = input + cacheRead + cacheWrite. A session whose total input is zero is
skipped.message.provider plus message.model when both are present.
Otherwise use the latest model_change provider and modelId. Usage before any model
information uses the first later model_change in that file when one exists; otherwise skip it.provider/model composite identity. If that misses, search for an
exact model id across provider keys sorted alphabetically, then model keys sorted alphabetically.
The first deterministic hit wins. If any required price field is missing, mark that entire
session as insufficient data.cacheRead / (input + cacheRead + cacheWrite) * 100.(input * price.input + output * price.output + cacheRead * price.cache_read + cacheWrite * price.cache_write) / 1_000_000.
Compute omo savings as
cacheRead * (price.input - price.cache_read) / 1_000_000.Math.round(value * 100) / 100. Never round per message,
model, or session. Label the result estimate.Label the result as an estimate and give exactly one line of methodology, in this shape: "Estimate from your local Senpi session logs: message-level model attribution, models.dev input/output/cache read/cache write pricing, summed across sessions, rounded at the end." One line, then the numbers, then stop.
If the user skipped lane 3, skip this lane too; there is no data to map.
This lane has no fixed position: it runs through the entire flow. Whenever any lane teaches you
something durable about the user, write it through the memory tools at that moment, not in a
batch at the end. Worth recording:
Write durable personal and cross-project facts through the memory tool into system/human.md.
Write repository-specific stack, commands, constraints, and migration decisions through the memory
tool into system/project.md. Do not edit those backing files directly.
Record facts, not narration. "Prefers Korean, migrated from Claude Code, works one repo at a time in long sessions" is a memory. "The user went through onboarding today" is not.
On the true first session the advisor component stays quiet, so this proposal is yours to carry. Before saying anything about it, run the same eligibility gate the advisor uses, in this order:
git rev-parse --show-toplevel. Not a repo: ineligible.node_modules, .git, dist, build, vendor, .next, __pycache__,
.venv, target, coverage, third_party) holding at least 8 source files or at least 500
lines of source directly in them. Zero candidates: ineligible, regardless of anything else.AGENTS.md. The missing ratio is uncovered candidates over all candidates. Below 0.50:
ineligible. A new project with candidates and no AGENTS.md anywhere is missing ratio 1.0 and
eligible.If any gate fails, skip this lane SILENTLY. Do not mention AGENTS.md, do not explain why you are not proposing, do not hint that a check ran. Close the conversation warmly instead.
If all gates pass, ask in the user's language: "want me to set up AGENTS.md for this project?"
This is opt-in. On yes, read the init-deep skill at its SKILL.md path and follow it. On no,
record the decline through the memory tools and finish the conversation gracefully: a short
send-off in their language, an invitation to come back with senpi --onboard, and nothing more.