Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

searcher-os搜索者操作系统

Agent Skill

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

总安装

9,719

周安装

397

GitHub Stars

公开资料未说明

下载量

3,112
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install searcher-os

简介

在 Searcher OS 中管理交易管道、搜索市场交易、跟踪经纪人、运行 SBA 贷款计算、管理任务以及审查 CIM 分析

SKILL.md

name
searcher-os
description
Manage deal pipeline, search on-market deals, track brokers, run SBA loan calculations, manage tasks, and review CIM analyses in Searcher OS
version
1.3.0
homepage
https://searcheros.ai
metadata
openclaw
primaryEnv
SEARCHER_OS_API_KEY
emoji
briefcase
homepage
https://searcheros.ai

Searcher OS

Manage the user's M&A deal pipeline, search for businesses on the market, track broker relationships, review inbound emails, run SBA loan calculations, manage deal tasks, and analyze CIM documents via the Searcher OS REST API.

Setup

Authentication is handled by the Searcher OS plugin. If you haven't signed in yet, run /searcheros-login. The user must have a Searcher OS account on the Searcher ($90/mo) or Deal Team ($244/mo) plan.

API

Base URL: https://searcheros.ai/api/agent

All tool calls use a single endpoint:

POST https://searcheros.ai/api/agent/invoke
Authorization: Bearer $SEARCHER_OS_API_KEY
Content-Type: application/json

{"tool": "<tool_name>", "params": {<params>}}

Responses:

  • Success: {"ok": true, "result": {...}}
  • Error: {"ok": false, "error": {"code": "...", "message": "..."}}
  • Confirmation needed: {"ok": true, "result": {"status": "pending_confirmation", "confirmationId": "...", "message": "...", "expiresAt": "..."}}

Tool Discovery

Call GET https://searcheros.ai/api/agent/tools with the same Authorization header to get the live list of all available tools with their descriptions and parameter schemas. Use this to stay current as new tools are added.

Session Start

At the start of every conversation, call get_context first. It returns the user's name, buy boxes, pipeline stage counts, and feed stats in a single call. Use this to:

  1. Greet the user by name
  2. Give a brief pipeline status (e.g., "You have 12 active deals: 5 Interested, 3 NDA Signed, 2 CIM Review, 2 Conversations")
  3. Highlight anything notable (e.g., "47 new deals came in this week")
  4. Suggest 2-3 next actions:

- "Want me to check your newest on-market deals?" - "Ready to update the stage on any deals?" - "Want to search for deals matching your buy box?"

Available Tools

Context

  • get_context — Get session context: user profile, buy boxes, pipeline counts, feed stats. Call FIRST at start of every conversation.
  • ping — Health check. No params.
  • buy_box_list — Get user's acquisition criteria (buy boxes). No params.

Pipeline (My Deals)

  • pipeline_list — List tracked deals. Params: stage? (interested|nda_signed|cim_review|conversations|loi_sent|due_diligence|closed|dead), search? (string), limit? (default 20, max 100), offset?
  • pipeline_get_deal — Get full deal details. Params: opportunity_id (uuid, required)
  • pipeline_stage_counts — Count deals per stage. No params.
  • pipeline_move_stage — Move deal to new stage. Needs confirmation. Params: opportunity_id (uuid), new_stage (enum)
  • pipeline_add_note — Add note to deal. Params: opportunity_id (uuid), notes (string)
  • pipeline_kill_deal — Kill a deal. Needs confirmation. Params: opportunity_id (uuid), kill_reason (financial_discrepancy|deal_size_insufficient|concentration_risk|industry_mismatch|no_broker_response|overpriced|intuitive_rejection|competition|location|other), kill_notes?
  • pipeline_update_deal — Update deal metadata (star, label, next action, priority). No confirmation needed. Params: opportunity_id (uuid), is_starred? (boolean), deal_label? (green|yellow|red|null), next_action? (string|null, max 500), next_action_due? (ISO date string|null), priority? (0-10)
  • pipeline_log_interaction — Log an interaction (call, email, meeting, note) directly on a deal without needing a broker. No confirmation needed. Params: opportunity_id (uuid), interaction_type (call|email_sent|email_received|meeting|note), subject? (max 300), notes? (max 5000), broker_id? (uuid, optional)

Feed (On-Market Deals)

  • feed_search — Search on-market deals. Params: keyword?, industry? (slug), states? (string[]), msas? (string[], metro areas), min_price?, max_price?, min_ebitda?, max_ebitda?, min_revenue?, max_revenue?, min_margin?, max_margin? (0-1), min_multiple?, max_multiple?, buy_box_id?, freshness_hours?, sort_by? (first_seen|asking_price|sde_ebitda|gross_revenue), sort_order? (asc|desc), limit? (default 20, max 50), offset?
  • feed_count — Count matching deals. Params: keyword?, industry_filter?, states? (string[]), buy_box_id?, freshness_hours?, price_dropped? (boolean), min_price?, max_price?, min_ebitda?, max_ebitda?, min_revenue?, max_revenue?
  • feed_stats — Feed statistics (price distribution, industry/source breakdown). No params.
  • feed_save_deal — Save deal to pipeline. Needs confirmation. Params: staging_listing_id (uuid), private_notes?
  • feed_dismiss_deal — Dismiss deal from feed. Auto-approved by default. Params: staging_listing_id (uuid)

Inbox (Inbound Emails)

  • inbox_list — List emails. Params: status? (unmatched|matched|ignored), limit?, offset?
  • inbox_get_email — Get full email. Params: email_id (uuid)
  • inbox_link_to_deal — Link email to deal. Needs confirmation. Params: email_id (uuid), opportunity_id (uuid)
  • inbox_ignore — Ignore email. Params: email_id (uuid)

Brokers

  • broker_list — List brokers. Params: search?, sort_by? (name|company|deal_count)
  • broker_get — Get broker details. Params: broker_id (uuid)
  • broker_create — Add broker. Needs confirmation. Params: name (required), email?, phone?, company?
  • broker_log_interaction — Log interaction. Needs confirmation. Params: broker_id (uuid), interaction_type (call|email_sent|email_received|meeting|note), subject?, notes?, opportunity_id?

CIM (Confidential Information Memorandums)

  • cim_list — List CIM analyses for a deal. Params: opportunity_id (uuid)
  • cim_get_analysis — Get CIM analysis details. Params: cim_id (uuid)
  • cim_search — Search across CIM analyses. Params: query?

Calculator

  • calculator_run — Run an SBA 7(a) loan calculation. Computes DSCR, monthly payments, cash flow, and deal structure. Returns a verdict (FAIL/RISKY/PASS/GOOD/STRONG). Params: asking_price (required), sde (required), down_payment_pct? (default 0.10), sba_rate? (default 0.105), sba_term_years? (default 10), seller_note_pct? (default 0), seller_note_rate? (default 0.06), seller_note_term_years? (default 5), buyer_compensation? (default 0), working_capital? (default 0), include_working_capital_in_loan? (default true)

Tasks

  • task_list — List tasks for deals. Returns incomplete tasks by default. Params: opportunity_id? (uuid, filter to single deal), stage? (pipeline stage filter), include_completed? (default false), limit? (default 50, max 100), offset?
  • task_update — Update a task. Mark complete/incomplete, change priority, set due date, or rename (manual tasks only). Completing the last task in a stage may auto-advance the deal. No confirmation needed. Params: task_id (uuid, required), completed? (boolean), title? (manual tasks only, max 500), priority? (1=High, 2=Medium, 3=Normal, manual tasks only), due_date? (YYYY-MM-DD|null)

Confirmations

Write operations may return "status": "pending_confirmation". Use these tools to manage:

  • confirmation_list_pending — List pending confirmations. No params.
  • confirmation_check_status — Check status. Params: confirmation_id (uuid)
  • confirmation_resolve — Approve or deny. Params: confirmation_id (uuid), decision (approved|denied)
  • confirmation_get_auto_approve — Get auto-approve settings. No params.

Confirmation Flow

Some tools (marked "Needs confirmation") require user approval before executing:

  1. Call the write tool (e.g., pipeline_move_stage)
  2. If result has "status": "pending_confirmation" — tell the user it needs their approval
  3. The user can approve in the Searcher OS web app OR tell you "yes, approve it"
  4. If user says approve: call confirmation_resolve with {"confirmation_id": "<id>", "decision": "approved"}
  5. The action executes and returns the result
  6. Confirmations expire after 30 minutes if not resolved

Rate Limits

100 requests per minute per API key. On 429 responses, check the Retry-After header.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

84.28%
按下载量换算2,623

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills