Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计异常

jeo杰奥

Agent Skill

jeo 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,023

周安装

86

GitHub Stars

11

下载量

709
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:jeo(杰奥)
来源仓库:https://github.com/akillness/oh-my-skills
仓库路径:skills/jeo
安装命令:
npx skills add https://github.com/akillness/oh-my-skills --skill jeo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill jeo

简介

作为集成化 Agent 编排路由器,提供数据包分类与跨运行时任务分发能力。

  • 适合注解、UI 审查和保留持久化历史记录,支持 Claude Code 等平台。
  • 使用时需遵守共享计划/执行/验证/清理契约,确保机器状态可恢复。
  • 要求完成前必须提供证据,禁止无依据宣称任务结束。
  • jeo 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

JEO — Integrated Agent Orchestration

Keyword: jeo · annotate · ui-review · agentui (deprecated) | Platforms: Claude Code · Codex CLI · Gemini CLI · OpenCode

Use JEO as a packet-first orchestration router.

The job is not to re-explain every runtime, hook, or browser integration inline. The job is to:

  1. classify the request into the right orchestration packet,
  2. keep the shared plan / execute / verify / cleanup contract honest,
  3. preserve durable .jeo/ history and resumable machine state,
  4. hand runtime-specific work to the runtime skill that actually owns it,
  5. require evidence before completion.

Read these when needed:

When to use this skill

  • Run an end-to-end repo delivery loop with explicit planning, execution, verification, and cleanup gates
  • Keep a project-local .jeo/ ledger with long-term rules, short-term plans, queued work, active work, progress notes, and append-only history
  • Resume a previous integrated workflow instead of rebuilding state from scratch
  • Add browser verification or submit-gated UI review to a broader delivery loop
  • Decide which sibling skill owns the next part of the orchestration flow while preserving one shared workflow contract

When not to use this skill

  • The task is mainly spec-first clarification, immutable plan seeding, or persistent completion until verification passes → use ralph
  • The task is mainly visual plan approval or diff review → use plannotator
  • The task is mainly browser verification without the full delivery loop → use agent-browser
  • The task is mainly rendered UI annotation feedback on an existing app → use agentation
  • The task is mainly runtime-native orchestration or setup → use omc (Claude), omx (Codex), or ohmg (Gemini / portable harness)
  • The task is mainly trust posture, approval mode, or lower-friction safe automation configuration → use ralphmode

Shared invariants

  1. Never enter EXECUTE without plan approval.
  2. An unchanged approved plan does not reopen the plan gate.
  3. Do not process annotation work before the explicit submit / onSubmit gate opens.
  4. Completion requires QA evidence or an explicit skip reason.
  5. Persist durable human context in .jeo/ and resumable machine state in the configured runtime state file before leaving a phase.
  6. JEO is the router and ledger contract, not the owner of runtime internals.

Instructions

Step 1: Classify the request into one orchestration packet

Choose the single best entry packet before doing anything else.

Packets

  • bootstrap-or-resume — initialize or recover .jeo + machine state
  • planning-gate — create / revise the plan and get approval
  • runtime-handoff — send approved work to the correct execution runtime
  • verification-loop — gather browser / QA evidence and decide whether annotate is required
  • annotate-submit-loop — run submit-gated agentation review on browser-visible work
  • cleanup-and-closeout — summarize, queue follow-up work, and clean worktrees safely

If the request mixes several concerns, name the primary packet and one secondary concern.

Step 2: Bootstrap or resume durable state

Always ground the workflow before routing further.

mkdir -p .omc/state .omc/plans .omc/logs
python3 scripts/jeo-state-update.py init "<detected task>"
python3 scripts/jeo-project-sync.py init "<detected task>"
python3 scripts/jeo-project-sync.py start-next

Then read the current ledger if it exists:

  • .jeo/long-term.md
  • .jeo/short-term.md
  • .jeo/planned.md
  • .jeo/progress.md
  • .jeo/history.md
  • one active task file under .jeo/tasks/active/

If resuming, use:

python3 scripts/jeo-state-update.py resume
python3 scripts/jeo-project-sync.py status
python3 scripts/jeo-project-sync.py start-next

Step 3: Keep the shared phase contract explicit

JEO owns the shared contract even when execution routes outward.

PhaseWhat JEO ownsTypical route-out
PLANplan gate, plan hash, checklist/progress updateralph + plannotator
EXECUTEapproved-task handoff, active-task tracking, ledger updatesomc, omx, ohmg, or bmad
VERIFYevidence collection requirement, browser-verification decisionagent-browser
VERIFY_UIsubmit-gate enforcement, annotation queue ownership decisionagentation
CLEANUPsummary, follow-up queueing, worktree cleanup, final phase stateJEO scripts + git cleanup

If a request cannot name the current phase, infer the earliest incomplete phase and say so.

Step 4: Route to the real owner skill

Use the smallest honest route-out.

Planning gate

Use when the main job is writing or revising the approved plan.

python3 scripts/jeo-state-update.py checkpoint plan
python3 scripts/jeo-project-sync.py stage planning
python3 scripts/jeo-project-sync.py progress "Entered planning gate."

Then route to:

  • ralph for spec-first plan shaping
  • plannotator for plan review / approval

Runtime handoff

Use when the plan is approved and implementation should start.

python3 scripts/jeo-state-update.py checkpoint execute
python3 scripts/jeo-state-update.py set phase execute
python3 scripts/jeo-project-sync.py stage development
python3 scripts/jeo-project-sync.py progress "Development started from the approved plan."

Then route to:

  • omc for Claude-native execution
  • omx for Codex-native execution
  • ohmg for Gemini / portable .agents execution
  • bmad only when the runtime fallback is the truthful path

Do not keep runtime-specific hook, config, or slash-command detail in the main JEO answer; point to the runtime skill or platform reference instead.

Verification loop

Use when the main job is proving behavior before closeout.

python3 scripts/jeo-state-update.py checkpoint verify
python3 scripts/jeo-state-update.py set phase verify
python3 scripts/jeo-project-sync.py stage qa
python3 scripts/jeo-project-sync.py progress "Entered QA verification."

Then:

  • use agent-browser for browser-visible verification
  • record evidence in .jeo/short-term.md and the active task file
  • decide whether annotate / ui-review requires the submit-gated UI loop

Annotate submit loop

Use only when explicit submit-gated UI review is requested.

  • set phase=verify_ui
  • require submit / onSubmit before processing annotations
  • route the actual annotation watch / ack / resolve behavior to agentation
  • record any follow-up work in the queue before cleanup

Cleanup and closeout

Use when the loop is ready to summarize and exit.

python3 scripts/jeo-state-update.py checkpoint cleanup
python3 scripts/jeo-state-update.py set phase cleanup
python3 scripts/jeo-project-sync.py stage done
python3 scripts/jeo-project-sync.py complete <slug> "<what shipped, what QA proved, what follow-up remains>"

If follow-up work remains:

python3 scripts/jeo-project-sync.py queue next-step "<follow-up work>"

Then clean worktrees:

bash scripts/worktree-cleanup.sh || git worktree prune

Step 5: Produce one orchestration packet

Return one concise orchestration packet, not a giant platform encyclopedia.

Minimum packet contents:

  • primary packet and any secondary concern
  • current phase or inferred next phase
  • ledger/state status
  • sibling skill route-outs
  • required evidence or approval gates
  • next command block or action block

Step 6: Verify boundaries before finalizing

Check:

  • did you keep runtime-native config, hook, and setup detail in the references or sibling runtime skills?
  • did you keep browser verification in agent-browser and submit-gated UI review in agentation?
  • did you keep trust/approval posture tuning in ralphmode?
  • did you preserve .jeo/ history and active-task truth instead of inventing ephemeral state?
  • does the packet make the next honest handoff obvious?

Output format

## JEO Packet: [Task or Phase]

### Packet choice
- Primary packet: bootstrap-or-resume | planning-gate | runtime-handoff | verification-loop | annotate-submit-loop | cleanup-and-closeout
- Secondary concern: optional
- Current phase: plan | execute | verify | verify_ui | cleanup | done | unknown
- Confidence: high | medium | low

### State snapshot
- Durable ledger: initialized | missing | needs resume | active
- Machine state: initialized | resumed | missing | blocked
- Active task: ...
- Plan gate: pending | approved | feedback_required | infrastructure_blocked
- Submit gate: not-needed | waiting_for_submit | submitted | complete

### Route-outs
- Planning owner: `ralph` / `plannotator` / not-needed
- Runtime owner: `omc` / `omx` / `ohmg` / `bmad` / not-needed
- Browser verification owner: `agent-browser` / not-needed
- UI feedback owner: `agentation` / not-needed
- Trust posture owner: `ralphmode` / not-needed

### Actions
1. ...
2. ...
3. ...

### Commands

minimal next commands only


### Exit criteria

- ...

Examples

Example 1: new cross-platform delivery loop

Input: “jeo로 이 기능을 진행하는데 Claude에서도 이어서 하고 나중에 Codex에서도 resume할 수 있게 .jeo 문서까지 같이 관리해줘.”

Good response shape:

  • chooses bootstrap-or-resume or planning-gate
  • initializes .jeo/ and machine state
  • keeps planning with ralph + plannotator
  • routes runtime-specific execution to the correct runtime skill instead of expanding all runtime setup inline

Example 2: browser-visible feature with annotate review

Input: “annotate 포함 jeo 플로우로 UI 기능을 만들고 브라우저 검증이랑 submit-gated 리뷰까지 같이 관리해줘.”

Good response shape:

  • chooses verification-loop with secondary annotate-submit-loop
  • records the QA evidence requirement
  • routes browser verification to agent-browser
  • waits for explicit submit before agentation processing

Example 3: resume and queue follow-up work

Input: “이전에 끝낸 작업을 history로 참고하면서 새 follow-up 작업을 .jeo에 추가해 이어서 진행해줘.”

Good response shape:

  • resumes state instead of rebuilding it
  • uses .jeo/history.md as durable context
  • queues the follow-up item before execution or cleanup
  • preserves append-only history and one active task file

Best practices

  1. Keep JEO as the front door, not the whole runtime stack.
  2. Use one primary packet per response; name secondary concerns explicitly instead of blending everything together.
  3. Keep .jeo honest: durable long-term rules, current short-term plan, explicit queued/active work, append-only history.
  4. Prefer references and sibling skills over re-expanding platform setup or hook internals in SKILL.md.
  5. Require QA evidence before cleanup claims success.
  6. Queue follow-up work before leaving the loop when verification finds more work.
  7. Keep one active task file at a time.
  8. Treat runtime parity honestly; shared rules belong in JEO, runtime-specific mechanics do not.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.75%
按下载量换算261

Claude

29.66%
按下载量换算210

Cursor

18.98%
按下载量换算135

Gemini CLI

9.87%
按下载量换算70

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills