ego-search

ego-search is a skill for Claude Code, Codex from taxueseek/argo. It costs 234 tokens per session (5,434 once invoked), scanned A, original, MIT.

A search component for finding information through websites where you are already signed in, using either an agent browser or a bridge to your Chrome or Edge browser. It keeps signed-in results separate from public search results.

In plain words
What is it for?
Use it to search, fetch pages, perform actions, or call APIs on sites that need your existing login session, then combine those results with public research.
Why use it?
It can reach pages that require your account while preserving the distinction between private and public evidence. Either supported browser connection can be used when available.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to search, fetch pages, perform actions, or call APIs on sites that need your existing login session, then combine those results with public research.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/taxueseek/argo/ego-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add taxueseek/argo --skill ego-search
Clone the repo
git clone --depth 1 https://github.com/taxueseek/argo

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ego-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/taxueseek/argo/ego-search/github.svg)](https://agentmods.dev/skills/taxueseek/argo/ego-search)
Your own site
<a href="https://agentmods.dev/skills/taxueseek/argo/ego-search"><img src="https://agentmods.dev/badge/skills/taxueseek/argo/ego-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ego-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/taxueseek/argo/ego-search"><img src="https://agentmods.dev/badge/skills/taxueseek/argo/ego-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 234 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,434 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00234 $0.05434
Opus 5 $0.00117 $0.02717
Sonnet 5 $0.00047 $0.01087
Haiku 4.5 $0.00023 $0.00543

Measured 11d ago against content hash 163a89748b54, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ego-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (scripts/ego_search.py, scripts/merge.py, scripts/quality.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

sub-skills/ego-search/SKILL.md · 372 lines

How it starts

The opening of the file, as written. The whole thing — 372 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ego-search(argo 子技能)

ego-search 是 argo 的登录态专业搜索子技能(v1.4 完全态):

  • 双运行时保留:ego lite(ego-browser)与 WebBridge(用户浏览器扩展桥)互补,不互相替代
  • 任一可用即可search / fetch / act / api 在至少一条运行时在线时可用
  • 与常规检索隔离:登录态结果 cache_eligible=false,禁止进公共 SearchCache
  • 汇总可融合:输出带 merge_with_public_ok=true,分析层可把 public + login 两路结果一起喂 evidence

完全态架构

常规检索(argo public)          登录态专业搜索(本技能)
  cache: argo public                 partition: login
  cache_eligible: 可写             cache_eligible: false
         \                              /
          \                            /
           └── 汇总分析(evidence / RRF 可选)──┘
                 按 source / search_partition 区分,再综合判断
运行时 何时用 优势
ego(默认优先) ego-browser 可用 任务空间隔离、Agent 专用浏览器、learnings
webbridge 无 ego 或 auto 降级 用户 Chrome/Edge 现成登录态、扩展桥
# 探测双运行时 + 专业模式
python3 sub-skills/ego-search/scripts/ego_search.py status
python3 sub-skills/ego-search/scripts/ego_search.py status --fix   # 幂等启 WebBridge 桥

# 显式指定运行时(任一安装即可)
python3 .../ego_search.py search "查询" --runtime auto        # 默认:有 ego 用 ego,否则 WebBridge
python3 .../ego_search.py search "查询" --runtime webbridge
python3 .../ego_search.py fetch "https://..." --runtime ego

# 同站登录态保温
python3 .../ego_search.py fetch "https://www.zhihu.com/..." --site zhihu.com

# 汇总分析:public 常规 JSON + login 专业 JSON
python3 .../ego_search.py merge --public /tmp/public.json --login /tmp/login.json

专业搜索模式(默认关闭)

本子技能涉及真实浏览器登录态继承,出于安全与可靠性考虑默认关闭。开启后 search/fetch/act/api 与直接浏览器操作才可用;未开启时调用会被拒绝并提示开启命令。

# 开启(必须由用户明确要求「开启专业搜索模式」后执行)
python3 sub-skills/ego-search/scripts/ego_search.py enable
# 关闭
python3 sub-skills/ego-search/scripts/ego_search.py disable
# 查看状态
python3 sub-skills/ego-search/scripts/ego_search.py status
  • 纪律:Agent 不得自行开启——只有用户明确表达开启意图时才运行 enable
  • 未开启时,同样不得用 heredoc 直连浏览器运行时绕开闸门。
  • 状态持久化于 ~/.local/state/ego-search/pro-mode.json,开启后长期生效,直到手动关闭。

能力基础(MECE 对照)

Read the full file on GitHub · 372 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 372 lines · 234 tokens per session scan A 163a89748b54

Subscribe to this mod's changes

ego-search is a skill published in the GitHub repository taxueseek/argo (120 stars, last pushed 4d ago), licensed MIT. It adds 234 tokens to every session and 5,434 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

pentest-playbook

A penetration-testing playbook for examining authorized websites, applications, and services for real, verified security weaknesses.

SeaOf0/dsh-redteam-model · 429 tokens

owb

Open Web Bridge (OWB) — drive the user's own real browser with the owb command. Read pages behind their existing logins, gather and cross-check information, fill forms, walk multi-step flows, debug their site, audit responsive/accessibility behavior, and capture or reverse-engineer network traffic. Use this whenever…

woniu9524/open-web-bridge · 143 tokens

browser-skill

Use when the user asks to automate their logged-in Chromium browser: visit and read pages, fill forms, scrape data, click through flows, regression-test a PR's UI, validate a deployed page, or operate a tab they identify. Requires the bsk CLI and browser extension.

Tencent/BrowserSkill · 63 tokens

chrome-agent

Local browser automation with structured, verified outcomes. Use for web navigation, scraping and extraction, form interaction, screenshots and downloads, network or console checks, responsive testing, or page-scoped device emulation.

sderosiaux/chrome-agent · 44 tokens

lingshu-browser

A routing guide for browser and web-development topics, including rendering, the DOM, event loops, web storage, content security, performance, and progressive web apps. It directs a task to a more specific unit when needed.

FuRongJun-1999/dsh-memory · 171 tokens

scrape-structured-data

Get the repeating records off a web page (product grids, search results, job listings, news feeds, tables) as JSON, without writing CSS selectors and without spending a model call to read the HTML. Works on sites with no API, including ones behind a login or bot protection. Runs locally, one binary, no API key. Use…

sderosiaux/chrome-agent · 111 tokens