Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

yoetzyoetz 搜索

Agent Skill

yoetz 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

4

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/avivsinai/yoetz --skill yoetz

简介

yoetz 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景筛选信息的场景,如技术问答搜索。
  • 通过来源仓库和安装命令提供具体用法参考。
  • 安装命令:npx skills add https://github.com/avivsinai/yoetz --skill yoetz。
  • 建议确认权限范围和维护状态,避免触发不必要的联网操作。

SKILL.md

Yoetz Skill

Fast, agent-friendly LLM council tool for multi-model consensus, code review, and bundling.

When to Use

Explicit triggers only:

  • "yoetz ask" / "yoetz council" / "yoetz review"
  • "yoetz bundle" / "yoetz generate" / "yoetz browser"
  • "use yoetz to..."

NOT triggered by:

  • "second opinion" / "ask another model" (could be amq-cli)
  • "council" alone / "review" alone (other skills may apply)

Installation (auto-bootstrap)

Before running any yoetz command, ensure the CLI is installed. If command -v yoetz fails, install via one of the following:

PlatformCommand
macOS (Homebrew)brew install avivsinai/homebrew-tap/yoetz
Linux (Homebrew if available)brew install avivsinai/homebrew-tap/yoetz
From source (Rust 1.88+)cargo install --git https://github.com/avivsinai/yoetz
Windows (Scoop)scoop bucket add yoetz https://github.com/avivsinai/scoop-bucket && scoop install yoetz
Pre-built binaryDownload from GitHub Releases and place in PATH

Prefer Homebrew when available — pre-built binaries, fastest install.

Agent Contract

  • Always use --format json for parsing
  • Set YOETZ_AGENT=1 environment variable
  • Parse JSON results and present summary to user
  • For large bundles, run yoetz bundle first to inspect size
  • NEVER type a model ID from memory. Your training data model names are WRONG. Always resolve first.

Model Resolution Protocol (MANDATORY)

NEVER type a model ID from memory. Agent training data contains stale model names. Always query the live registry.

To find the current frontier model per provider:

yoetz models frontier --format json

To find a specific model:

yoetz models resolve "grok" --format json

Use the returned ID verbatim in your commands. Do not modify, shorten, or guess model IDs.

If the registry is stale or empty, sync first:

yoetz models sync

Search for models by keyword:

yoetz models list -s claude --format json

Quick Reference

TaskCommand
Find frontier model per provideryoetz models frontier --format json
Find frontier model for a provideryoetz models frontier --family openai --format json
Resolve a model IDyoetz models resolve "grok" --format json
Search modelsyoetz models list -s claude --format json
Ask single modelyoetz ask -p "question" -f src/*.rs --provider openai --model MODEL_ID --format json
Council voteyoetz council -p "question" --models MODEL1,MODEL2,MODEL3 --format json
Review staged diffyoetz review diff --staged --format json
Review fileyoetz review file --path src/main.rs --format json
Bundle filesyoetz bundle -p "context" -f src/**/*.rs --format json
Generate imageyoetz generate image -p "description" --provider openai --model MODEL_ID --format json
Estimate costyoetz pricing estimate --model MODEL_ID --input-tokens 1000 --output-tokens 500
Browser checkyoetz browser check
Browser attachyoetz browser attach
Browser loginyoetz browser login

Replace MODEL_ID with IDs from yoetz models frontier or yoetz models resolve.

Council (Multi-Model Consensus)

Get opinions from multiple LLMs in parallel. --models is required.

yoetz council \
  -p "Should we use async traits or callbacks for this API?" \
  -f src/lib.rs -f src/api/*.rs \
  --models openai/gpt-5.4,gemini/gemini-3.1-pro-preview,openrouter/xai/grok-4.20-multi-agent-beta \
  --format json

Example council sets (illustrative — always resolve live IDs via yoetz models frontier):

  • Cross-provider: openai/<FRONTIER>,gemini/<FRONTIER>,openrouter/xai/<FRONTIER>
  • Via OpenRouter only: openrouter/openai/<FRONTIER>,openrouter/anthropic/<FRONTIER>,openrouter/google/<FRONTIER>

Ask (Single Model)

Quick question with file context:

yoetz ask \
  -p "What's the bug in this error handling?" \
  -f src/error.rs \
  --provider openai --model gpt-5.4 \
  --format json

For Anthropic/XAI models, use OpenRouter (no extra config needed):

yoetz ask -p "Review this" -f src/*.rs \
  --provider openrouter --model anthropic/claude-sonnet-4.6 \
  --format json

Review

Staged changes

yoetz review diff --staged --format json

Specific file

yoetz review file --path src/main.rs --format json

With custom model

yoetz review diff --staged --provider openai --model gpt-5.4 --format json

Bundle (for manual paste or browser mode)

Bundle creates a session with files at ~/.yoetz/sessions/<id>/bundle.md.

# Get bundle path from JSON output
yoetz bundle -p "Explain this" -f src/**/*.rs --format json
# Output includes: {"artifacts":{"bundle_md":"/Users/.../.yoetz/sessions/.../bundle.md",...},...}

# Extract bundle_md path directly
BUNDLE=$(yoetz bundle -p "Review" -f src/*.rs --format json | jq -r .artifacts.bundle_md)
cat "$BUNDLE"

For browser workflows, pass the bundle.md path:

BUNDLE=$(yoetz bundle -p "Review" -f src/*.rs --format json | jq -r .artifacts.bundle_md)
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE"

Browser Mode

For web-only models like ChatGPT Pro that lack API access. Connects to your running Chrome via CDP (Chrome DevTools Protocol) to submit bundles through the web UI.

Prerequisites

# Optional fallback browser transports:
npm install -g dev-browser

# Secondary fallback transport:
npm install -g agent-browser

How connection works

yoetz connects to your already logged-in Chrome session via auto-connect (CDP). No cookie extraction or separate browser needed.

Transport priority: chrome-devtools-mcp > dev-browser > agent-browser > manual browser upload.

Connection priority: explicit --cdp > auto-connect > cookie state > profile fallback.

Use --cdp http://127.0.0.1:9222 when you need to target a specific Chrome instance/profile.

First-time setup

Step 1: Enable remote debugging in Chrome

  1. Open Chrome and go to chrome://inspect/#remote-debugging
  2. Ensure "Discover network targets" is enabled

If Chrome lands on chrome://inspect/#devices instead, that's fine. Keep "Discover network targets" enabled there.

Step 2: Run a recipe

BUNDLE=$(yoetz bundle -p "Review" -f src/*.rs --format json | jq -r .artifacts.bundle_md)
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE"

Step 3: Approve remote debugging (Chrome 146+) Chrome 146+ may show an "Allow remote debugging?" dialog on the first live attach. Click Allow once for that browser instance.

Step 4: Verify connection

yoetz browser attach

Chrome 146+ notes

Chrome 146 introduced a security dialog for external CDP connections. Yoetz is extension-free by design, so the only way to get "approve once, then run silently" behavior is to keep the daemon/CDP session alive and avoid tearing it down between invocations.

Current policy:

  • Prefer live attach over cookie sync: chrome-devtools-mcp first, dev-browser second, agent-browser third.
  • Trust an existing live-attach daemon by default; yoetz does not silently recycle it during normal attach/check/recipe flows.
  • If recovery is actually needed, use yoetz browser reset explicitly.

If you see "Allow remote debugging?" in Chrome, click Allow and retry.

Explicit --cdp is already supported on yoetz browser attach, check, recipe, and login, but it only bypasses auto-discovery. It does not bypass Chrome's approval gate when targeting the same live browser instance started from chrome://inspect.

If the approval dialog is frozen or unclickable, use the manual CDP path instead:

chrome --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug
yoetz browser attach --cdp http://127.0.0.1:9222

Chrome for Testing is also a good fallback for this manual path.

Cookie sync (legacy fallback)

If auto-connect isn't available, cookie sync is still supported:

# Log into ChatGPT in real Chrome, close Chrome, then:
yoetz browser sync-cookies
yoetz browser check

Requires Node >= 24.4. If macOS shows a Keychain prompt for Chrome Safe Storage, click Always Allow.

Use ChatGPT Pro via recipe

# Create bundle and get bundle.md path
BUNDLE=$(yoetz bundle -p "Review this code" -f src/*.rs --format json | jq -r .artifacts.bundle_md)

# Send to ChatGPT
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE"

# Override the built-in model selection if needed
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE" --var model=gpt-5-4-pro

# Reuse the currently active ChatGPT tab/conversation for a follow-up turn
# instead of opening a fresh one (default is "fresh" — a fresh conversation
# per call; whether that is a new tab or same-tab navigation depends on the
# transport/session state). Requires the attached tab to already be on chatgpt.com.
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE" --var thread=reuse

The wait loop reports completion_reason in its JSON output:

  • copy_button — the strong signal: a copy control rendered on the new assistant message (response is fully streamed).
  • stable_idle_fallback — the page looked idle with unchanged length for ≥ max(90s, 3 × wait_interval_ms). Used when ChatGPT changes its copy-button selectors; otherwise copy_button is the normal completion path.

Combined workflow: API + Browser

# Get fast API results first
yoetz council -p "Review" -f src/*.rs \
  --models openai/gpt-5.4,gemini/gemini-3.1-pro-preview --format json > api.json

# Then get ChatGPT Pro opinion
BUNDLE=$(yoetz bundle -p "Review" -f src/*.rs --format json | jq -r .artifacts.bundle_md)
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE"

Recipe name resolution

Recipes can be specified by name (resolved from installed locations) or by path:

# By name (searches Homebrew share, XDG, etc.)
yoetz browser recipe --recipe chatgpt --bundle "$BUNDLE"

# By explicit path
yoetz browser recipe --recipe ./my-recipes/custom.yaml --bundle "$BUNDLE"

Built-in recipes: chatgpt, claude, gemini.

Troubleshooting

SymptomFix
Allow remote debugging? dialogClick Allow in Chrome, then retry. If the dialog is frozen, launch Chrome with --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug and use yoetz browser attach --cdp http://127.0.0.1:9222 instead.
auto-connect probe timed outChrome dialog is probably showing. Click Allow. If Chrome will not accept the dialog, switch to the explicit --cdp flow above. Install dev-browser first; agent-browser remains a fallback.
chatgpt login requiredChrome was reached but the wrong profile/tab was used. Open ChatGPT in the target Chrome profile first, or connect that profile explicitly with --cdp, then retry.
daemon already runningRun yoetz browser attach to check connection. If the daemon is stale, use yoetz browser reset, not agent-browser close directly.
agent-browser failedEnsure npx agent-browser --version works, or npm install -g agent-browser
dev-browser failedEnsure dev-browser --help works, verify Chrome remote debugging is enabled, and retry with --cdp if you need a specific Chrome profile.
Recipe not foundUse --recipe chatgpt (name) or full path. Check brew --prefix/share/yoetz/recipes/
cookie extraction failedLegacy path: ensure Node >= 24.4, log into ChatGPT in Chrome, close Chrome, yoetz browser sync-cookies

dev-browser Fallback

When yoetz browser recipe needs manual browser automation, use dev-browser directly against the authenticated Chrome session:

  1. Create bundle: BUNDLE=$(yoetz bundle -p "Review" -f src/**/*.ts --format json | jq -r.artifacts.bundle_md)
  2. Connect to Chrome: dev-browser --connect <<'EOF' const page = await browser.getPage("chatgpt"); await page.goto("https://chatgpt.com/"); console.log(await page.title()); EOF
  3. Use the Playwright-style API: browser.getPage(name), page.goto(url), page.click(selector), page.fill(selector, text), page.evaluate(fn), page.title()
  4. Use file helpers when needed: saveScreenshot(buf, name), writeFile(name, data), readFile(name)
  5. Target a specific Chrome profile: prefer opening ChatGPT in that profile first, or connect to its explicit CDP endpoint with yoetz browser recipe --cdp http://127.0.0.1:9222...

This keeps the default path aligned with the same browser transport users already rely on outside Yoetz.

How it works

The browser module connects to your running Chrome via CDP (Chrome DevTools Protocol):

  • chrome-devtools-mcp (primary): built into yoetz, backed by headless_chrome, attaches directly to your logged-in Chrome session
  • dev-browser (fallback): Playwright-based transport for the same live-attach flow
  • agent-browser (fallback 2): browser automation fallback with cookie/profile fallback support
  • Cookie sync (final fallback): extracts cookies from Chrome's encrypted store, injects into agent-browser only after live attach paths are exhausted
  • Extension-free by design: no browser extension is required or desired
  • Daemon model: one persistent connection per session, reused across invocations until you explicitly run yoetz browser reset

Provider Configuration

Built-in providers (work with just env var):

  • openai - OPENAI_API_KEY
  • gemini - GEMINI_API_KEY
  • openrouter - OPENROUTER_API_KEY

Via OpenRouter (recommended for Anthropic/XAI - no extra config):

  • openrouter/anthropic/claude-sonnet-4.6
  • openrouter/xai/grok-4.20-multi-agent-beta

Model format: provider/model

  • openai/gpt-5.4
  • gemini/gemini-3.1-pro-preview
  • openrouter/anthropic/claude-sonnet-4.6 (nested for OpenRouter)

Cost Control

# Estimate before running
yoetz pricing estimate --model gpt-5.4 --input-tokens 12000 --output-tokens 800

# Set limits
yoetz ask -p "Review" --max-cost-usd 1.00 --daily-budget-usd 5.00 --format json

Tips

  • Use --debug to capture raw responses during troubleshooting
  • Gemini may return empty content if --max-output-tokens is too low
  • Session artifacts stored in ~/.yoetz/sessions/<id>/
  • For image inputs: yoetz ask -p "Describe" --image photo.png --format json
  • ChatGPT recipe placeholder may vary by locale; check snapshot output if fill fails

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

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

平台分布

Codex

33.19%
按下载量换算49

Claude

30.18%
按下载量换算45

Cursor

19.87%
按下载量换算29

Gemini CLI

9.05%
按下载量换算13

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills