Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

bebebebebebebebe 搜索

Agent Skill

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

总安装

3,151

周安装

130

GitHub Stars

公开资料未说明

下载量

1,030
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install bebebebe

简介

bebebebe 用于为您的 AI 代理设置 Orthogonal - 访问高级 API 和技能。

  • 适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 通过 clawhub 安装,命令为 openclaw skills install bebebebe。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • bebebebe 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
orthogonal
version
1.0.0
description
Set up Orthogonal for your AI agent - access premium APIs and skills
homepage
https://orthogonal.com

Orthogonal for AI Agents

Orthogonal gives your AI agent access to premium APIs and curated skills. Works with any agent framework (OpenClaw, Claude Code, Cursor, etc.). This guide helps you set everything up.

Decision Flow: Skills First, Then API Search

When a user asks you to perform a task (e.g. "enrich Sundar Pichai", "find the email for the CEO of Anthropic", "extract brand assets from apple.com"):

  1. Check installed skills first — Look through your available skills for one that handles the task. Skills are curated workflows with tested parameters and better results (e.g. enrich, find-email-by-name, get-brand-assets).
  2. Search for skills — If no installed skill matches, use orth skills search "<task>" to find one you can install. Do this even if an installed skill seems "close enough." A general-purpose skill (e.g. enrich) should not be stretched to cover tasks that have dedicated skills (e.g. team-linkedin-profiles for finding an entire team's profiles). Always search before repurposing a general skill.
  3. Fall back to API search — Only if no skill covers the use case, use orth api search "<task>" to find a raw API endpoint.
  4. Check parameters before calling — Before calling any API endpoint or integration action for the first time, run orth api show <slug> <path> to see its parameter names, types, and required fields. Do not guess parameter names — integration actions especially have non-obvious names (e.g. first_cell_location not range).

Why skills first? Skills wrap APIs with correct parameters, error handling, and optimized workflows. Raw API search requires you to figure out params from scratch, which is slower and more error-prone.

Quick Start

1. Install the CLI

npm install -g @orth/cli

2. Authenticate

orth login

This prompts for your API key and stores it locally. Get your key at https://orthogonal.com/dashboard/settings

3. Add Core Skills

Install the essential skills for discovering and using Orthogonal:

# Find and install skills from the Orthogonal library
orth skills add orthogonal/find-skill

# Find and call APIs from the Orthogonal marketplace
orth skills add orthogonal/find-api

Skills are installed to your agent's skills directory (e.g. ~/.openclaw/skills/, ~/.claude/skills/, or wherever your agent reads skill files).


CLI Commands

Skills Commands

# List all available skills
orth skills

# Search for skills
orth skills search "weather"

# Add a skill (use full slug with namespace)
orth skills add <owner/slug>

# View skill details
orth skills info <slug>

API Commands

# List all available APIs
orth api

# Search for APIs
orth api search "scrape websites"

# Get API details
orth api info <api-slug>

# Show endpoint/action parameters (names, types, required fields)
orth api show <api-slug> <path>

# Call an API directly
orth run <api-slug> <path> [options]

Running APIs

# Basic usage
orth run olostep /v1/scrapes -b '{"url_to_scrape": "https://example.com"}'

# With query parameters
orth run searchapi /api/v1/search -q 'engine=google&q=AI agents'

# See what an API call would cost (dry run)
orth run --dry-run olostep /v1/scrapes -b '{"url_to_scrape": "https://example.com"}'

Core Skills

find-skill

Discover and install skills from the Orthogonal skill library.

Use when:

  • You need capabilities you don't have
  • You want to discover available skills
  • You need to add new tools to your agent

Example prompts:

  • "Find a skill for sending text messages"
  • "What skills are available for weather?"
  • "Install the restaurant booking skill"

find-api

Find and call APIs from the Orthogonal API marketplace.

Use when:

  • You need external data (weather, search, scraping, etc.)
  • You want to discover available APIs
  • You need to integrate third-party services

Example prompts:

  • "Find an API for web scraping"
  • "Search for email verification APIs"
  • "Call the Tomba API to find someone's email"

Authentication

Your API key is stored at ~/.config/orthogonal/credentials.json after running orth login.

Manual setup (if needed):

  1. Get your API key at https://orthogonal.com/dashboard/settings
  2. Create the credentials file:
mkdir -p ~/.config/orthogonal
echo '{"apiKey":"orth_live_YOUR_KEY"}' > ~/.config/orthogonal/credentials.json

Or set the environment variable:

export ORTHOGONAL_API_KEY=orth_live_YOUR_KEY

Billing

  • Pay-per-use: Only pay for what you use
  • No subscriptions: No monthly fees
  • Add credits: https://orthogonal.com/dashboard/balance

Check your balance:

orth account

Integrations (OAuth-connected services)

In addition to paid APIs, Orthogonal supports OAuth-connected integrations for Gmail, Google Calendar, Slack, GitHub, Notion, Google Drive, and Google Sheets. These are free to use — the user connects their account via OAuth, then agents can call actions on their behalf.

Integrations use the same orth run command as paid APIs:

# Send an email via Gmail
orth run gmail /send-email -b '{"recipient_email": "user@example.com", "subject": "Hello", "body": "Hi there"}'

# Create a Google Calendar event
orth run google-calendar /create-event -b '{"title": "Team standup", "start_time": "2025-03-10T10:00:00", "end_time": "2025-03-10T10:30:00"}'

# Send a Slack message
orth run slack /send-message -b '{"channel": "#general", "text": "Hello from Orthogonal!"}'

Check parameters before calling an integration action:

# See parameter names, types, and descriptions for any action
orth api show google-sheets /update-values

This shows required and optional parameters. Do not guess parameter names — always check first.

Available integrations:

IntegrationSlugActions
Gmailgmail/send-email, /list-emails, /get-email, /create-draft
Google Calendargoogle-calendar/create-event, /list-events, /find-event, /delete-event
Slackslack/send-message, /list-channels, /fetch-history
GitHubgithub/create-issue, /list-repos, /create-pr, /star-repo
Notionnotion/create-page, /search, /fetch-data, /add-content
Google Drivegoogle-drive/find-file, /create-file, /get-file, /create-folder
Google Sheetsgoogle-sheets/create-spreadsheet, /get-sheet-names, /add-row, /lookup-row, /get-values, /update-values

Note: Integrations require the user to have connected their account at https://orthogonal.com/dashboard/integrations. If not connected, the API returns HTTP 428 with a link to connect.


Support

  • Browse Skills: https://orthogonal.com/skills
  • Browse APIs: https://orthogonal.com/discover
  • Browse Integrations: https://orthogonal.com/integrations
  • Documentation: https://docs.orthogonal.com
  • Book a call: https://orthogonal.com/book

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.1%
按下载量换算835

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills