Multi Search Engine
一个面向 Research 场景的 Agent 技能。原始说明:Multi search engine integration with 16 engines (7 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra...
Voice recording transcription, semantic search, and meeting intelligence across all conversations.
Pocket AI captures your meetings, calls, and thoughts via a wearable device, then transcribes and indexes everything for semantic search.
| What | Value |
|------|-------|
| API Base | https://public.heypocketai.com/api/v1 |
| API Key | ~/.config/pocket-ai/api_key |
| Auth | Bearer token |
| Docs | https://docs.heypocketai.com/docs/api |
Search across ALL recordings by meaning, not just keywords.
curl -s -X POST \
-H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
-H "Content-Type: application/json" \
-d '{"query": "your company manufacturing decisions"}' \
"https://public.heypocketai.com/api/v1/public/search"
Returns:
userProfile.dynamicContext[] — AI-built insights from all recordingsrelevantMemories[] — Matching transcripts, action items, meeting sectionsPocket AI auto-extracts action items from meetings. Search for them:
curl -s -X POST \
-H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
-H "Content-Type: application/json" \
-d '{"query": "action items tasks follow up"}' \
"https://public.heypocketai.com/api/v1/public/search"
curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
"https://public.heypocketai.com/api/v1/public/tags"
curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
"https://public.heypocketai.com/api/v1/public/recordings"
curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
"https://public.heypocketai.com/api/v1/public/recordings/{recording_id}"
curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
"https://public.heypocketai.com/api/v1/public/recordings/{recording_id}/audio"
"What has been discussed with [person]?"
{"query": "conversations with Dylan Acquisition.com"}
{"query": "Adrienne intercompany invoices discussion"}
{"query": "meetings with Charlene"}
"What decisions were made about [topic]?"
{"query": "your company manufacturing team restructuring decisions"}
{"query": "entity streamlining strategy"}
{"query": "trading system rules discussed"}
"What needs to be done?"
{"query": "action items tasks todo follow up"}
{"query": "scheduled meetings upcoming"}
{"query": "things to review or approve"}
"What have I said about [topic]?"
{"query": "trading psychology patience discipline"}
{"query": "family financial planning kids college"}
{"query": "team performance frustrations"}
"What happened in [meeting type]?"
{"query": "your company staff meeting summary"}
{"query": "financial review discussion"}
{"query": "geopolitical analysis conversation"}
{
"success": true,
"data": {
"userProfile": {
"dynamicContext": [
"AI-built insight from recordings...",
"Another pattern detected..."
],
"staticFacts": []
},
"relevantMemories": [
{
"content": "Transcript segment or action item...",
"metadata": {"source": "turbopuffer", "sources": ["transcript_segment", "action_item"]},
"recordingDate": "2026-01-28 01:16:14",
"recordingId": "uuid",
"recordingTitle": "Untitled Recording",
"relevanceScore": 8.19,
"speakers": "SPEAKER_00, SPEAKER_01",
"transcriptionId": "uuid"
}
],
"total": 8,
"timing": 490
}
}
[timestamp] SPEAKER_XX: actual words spokenAction item: Do the thing(start-end) Section Title - Summary of what was discussedCurrent tags: ai, business, call, economy, finance, game, geopolitics, hockey, outlook, personal, sales, summary, test, victory, weather, work
Use tags to filter or categorize queries.
During heartbeats, optionally check for new action items:
# Check for recent action items (last 24h)
query = "action items from today"
# Parse response for new follow-ups
# Surface anything urgent
~/.config/pocket-ai/api_keyEmpty recordings list?
Auth errors?
Authorization: Bearer pk_xxx~/.config/pocket-ai/api_keySearch returns nothing?
#!/bin/bash
# Usage: ./search.sh "your query"
API_KEY=$(cat ~/.config/pocket-ai/api_key)
curl -s -X POST \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d "{\"query\": \"$1\"}" \
"https://public.heypocketai.com/api/v1/public/search"
See pocket_api.py for full Python integration.