# Send Brain Search to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "brain-search",
    "name": "Brain Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ryandeangraves/brain-search",
    "canonicalUrl": "https://clawhub.ai/ryandeangraves/brain-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/brain-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brain-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/brain-search"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/brain-search",
    "downloadUrl": "https://openagent3.xyz/downloads/brain-search",
    "agentUrl": "https://openagent3.xyz/skills/brain-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/brain-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/brain-search/agent.md"
  }
}
```
## Documentation

### CRITICAL RULE — NO FABRICATION

You MUST actually execute every curl command using your shell/exec tool. Read the real HTTP response. NEVER generate a fake response, placeholder ID, or simulated output. If the API call fails, report the actual error to Boss Man. If you cannot execute shell commands right now, say so — do not pretend you ran them.

### Purpose

Search and interact with Frank's Second Brain — the persistent knowledge base that stores conversation logs, research, journal entries, job results, and long-term memory.

### When to Use

Boss Man asks "what did we talk about on Monday?" or "find that research on X"
You need context from previous sessions or completed jobs
Logging noteworthy activity outside of normal Telegram conversation
Checking job queue status or delegating tasks to sub-agents
Creating, updating, or managing tasks on the Kanban board

### API Base

https://second-brain-chi-umber.vercel.app

All requests require header: x-api-key: frank-sb-2026

### Search Entries

Find past conversations, research, notes, and logged activity.

curl -s "https://second-brain-chi-umber.vercel.app/api/entries?q=SEARCH_TERM&limit=10" \\
  -H "x-api-key: frank-sb-2026"

### Search with Tag Filter

curl -s "https://second-brain-chi-umber.vercel.app/api/entries?q=SEARCH_TERM&tag=TAG_NAME&limit=10" \\
  -H "x-api-key: frank-sb-2026"

Common tags: daily-journal, telegram, research, market-analysis, advisory-council

### Create Entry

Store a new knowledge entry (research results, analysis, etc.).

curl -s -X POST "https://second-brain-chi-umber.vercel.app/api/entries" \\
  -H "x-api-key: frank-sb-2026" \\
  -H "Content-Type: application/json" \\
  -d '{
    "title": "Entry Title",
    "content": "Full content here",
    "tags": ["tag1", "tag2"],
    "source": "telegram-frank"
  }'

### Log Activity

Record noteworthy events, decisions, or results.

curl -s -X POST "https://second-brain-chi-umber.vercel.app/api/log" \\
  -H "x-api-key: frank-sb-2026" \\
  -H "Content-Type: application/json" \\
  -d '{
    "action": "ACTION_TYPE",
    "summary": "Brief description of what happened",
    "source": "telegram-frank",
    "details": {}
  }'

### Create a Task

curl -s -X POST "https://second-brain-chi-umber.vercel.app/api/tasks" \\
  -H "x-api-key: frank-sb-2026" \\
  -H "Content-Type: application/json" \\
  -d '{
    "title": "Task Title",
    "description": "What needs to be done",
    "status": "backlog",
    "priority": "medium",
    "tags": ["tag1"]
  }'

Valid statuses: backlog, in_progress, done
Valid priorities: low, medium, high
Note: project_id is validated — create projects first via POST /api/projects before referencing them.

### Update Task Status (Move on Kanban)

curl -s -X PATCH "https://second-brain-chi-umber.vercel.app/api/tasks/TASK_ID" \\
  -H "x-api-key: frank-sb-2026" \\
  -H "Content-Type: application/json" \\
  -d '{"status": "in_progress"}'

### List Tasks

curl -s "https://second-brain-chi-umber.vercel.app/api/tasks?status=backlog&limit=20" \\
  -H "x-api-key: frank-sb-2026"

### Check Activity Log

curl -s "https://second-brain-chi-umber.vercel.app/api/activity" \\
  -H "x-api-key: frank-sb-2026"

### Upload a File

curl -s -X POST "https://second-brain-chi-umber.vercel.app/api/upload" \\
  -H "x-api-key: frank-sb-2026" \\
  -F "file=@/path/to/file.jpg" \\
  -F "title=My File" \\
  -F "tags=upload,test"

Optional fields: entry_id, title, tags, description. If no entry_id, auto-creates a file type entry.

### List Files

curl -s "https://second-brain-chi-umber.vercel.app/api/files?limit=50" \\
  -H "x-api-key: frank-sb-2026"

Filters: ?category=image|video|audio|document, ?stats=true

### List Attachments on an Entry

curl -s "https://second-brain-chi-umber.vercel.app/api/entries/ENTRY_ID/attachments" \\
  -H "x-api-key: frank-sb-2026"

### Delete a File

curl -s -X DELETE "https://second-brain-chi-umber.vercel.app/api/attachments/ATTACHMENT_ID" \\
  -H "x-api-key: frank-sb-2026"

### Create Job (Delegate)

curl -s -X POST "https://second-brain-chi-umber.vercel.app/api/jobs" \\
  -H "x-api-key: frank-sb-2026" \\
  -H "Content-Type: application/json" \\
  -d '{
    "type": "JOB_TYPE",
    "title": "Job Title",
    "description": "Detailed instructions",
    "priority": "normal",
    "tags": ["TAG"],
    "input": {}
  }'

Routing Tags for Sub-Agents

TagsPicked Up ByBest For["claude", "code"]Claude Opus 4.5Coding, architecture, debugging["claude", "write"]Claude Sonnet 4.5LinkedIn posts, articles, email drafts(no claude tag)MiniMax M2.5Research, analysis, batch ops (cheapest)

### Check Job Status

curl -s "https://second-brain-chi-umber.vercel.app/api/jobs/JOB_ID" \\
  -H "x-api-key: frank-sb-2026"

### List Running Jobs

curl -s "https://second-brain-chi-umber.vercel.app/api/jobs?status=running&stats=true" \\
  -H "x-api-key: frank-sb-2026"

### Rules

EXECUTE EVERY CURL COMMAND FOR REAL — use your shell/exec tool. Never simulate or fabricate API responses.
Always include x-api-key: frank-sb-2026 header
Always report the actual HTTP response back to Boss Man
If an API call fails, show the error — don't make up a success message
Boss Man watches the /jobs page and Kanban board live — he will see if you fake it
When delegating: create job as pending → sub-agent picks it up → updates to running → completed
For multi-step tasks, ALWAYS use the job queue rather than doing everything inline
Log activity for anything noteworthy that happens outside of normal Telegram chat
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ryandeangraves
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/brain-search)
- [Send to Agent page](https://openagent3.xyz/skills/brain-search/agent)
- [JSON manifest](https://openagent3.xyz/skills/brain-search/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/brain-search/agent.md)
- [Download page](https://openagent3.xyz/downloads/brain-search)