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

pocket-ai口袋艾

Agent Skill

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

总安装

25,759

周安装

1,032

GitHub Stars

公开资料未说明

下载量

8,339
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pocket-ai

简介

对所有录音进行转录、索引和语义搜索,提取操作项目和会议见解,以实现全面的对话智能。

SKILL.md

Pocket AI Skill

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.

Quick Reference

WhatValue
API Basehttps://public.heypocketai.com/api/v1
API Key~/.config/pocket-ai/api_key
AuthBearer token
Docshttps://docs.heypocketai.com/docs/api

Core Capabilities

1. Semantic Search (Most Powerful)

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 recordings
  • relevantMemories[] — Matching transcripts, action items, meeting sections
  • Speaker identification, timestamps, relevance scores

2. Action Item Extraction

Pocket 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"

3. List Tags

curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
  "https://public.heypocketai.com/api/v1/public/tags"

4. List Recordings

curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
  "https://public.heypocketai.com/api/v1/public/recordings"

5. Get Recording Details

curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
  "https://public.heypocketai.com/api/v1/public/recordings/{recording_id}"

6. Download Audio

curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
  "https://public.heypocketai.com/api/v1/public/recordings/{recording_id}/audio"

High-Value Query Patterns

Contact Context

*"What has been discussed with [person]?"*

{"query": "conversations with Dylan Acquisition.com"}
{"query": "Adrienne intercompany invoices discussion"}
{"query": "meetings with Charlene"}

Business Decisions

*"What decisions were made about [topic]?"*

{"query": "your company manufacturing team restructuring decisions"}
{"query": "entity streamlining strategy"}
{"query": "trading system rules discussed"}

Action Items & Follow-ups

*"What needs to be done?"*

{"query": "action items tasks todo follow up"}
{"query": "scheduled meetings upcoming"}
{"query": "things to review or approve"}

Personal Insights

*"What have I said about [topic]?"*

{"query": "trading psychology patience discipline"}
{"query": "family financial planning kids college"}
{"query": "team performance frustrations"}

Meeting Summaries

*"What happened in [meeting type]?"*

{"query": "your company staff meeting summary"}
{"query": "financial review discussion"}
{"query": "geopolitical analysis conversation"}

Response Structure

Search Response

{
  "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
  }
}

Memory Content Types

  • Transcript segment: [timestamp] SPEAKER_XX: actual words spoken
  • Action item: Action item: Do the thing
  • Meeting section: (start-end) Section Title - Summary of what was discussed

Integration Points

Athena (Family Agent)

  • Query meeting context to understand your bandwidth
  • "Am I free?" → Check if recent recordings show heavy commitments
  • Feed meeting insights into scheduling decisions

Daily Briefings

  • Pull action items from yesterday's meetings
  • Summarize key decisions made
  • Flag urgent follow-ups

Task Management

  • Auto-surface action items as potential tasks
  • Cross-reference with existing todo lists
  • Track what's been mentioned but not yet acted on

Operations Channel

  • Post important decisions to #operations
  • Alert on critical discussions (team changes, financial decisions)

Tags (Your Categories)

Current tags: ai, business, call, economy, finance, game, geopolitics, hockey, outlook, personal, sales, summary, test, victory, weather, work

Use tags to filter or categorize queries.


Heartbeat Integration

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

Privacy & Security

  • All recordings encrypted end-to-end
  • Stored on US servers
  • API key should remain in ~/.config/pocket-ai/api_key
  • Never log full transcripts to public channels

Troubleshooting

Empty recordings list?

  • Recordings may need device sync before API access
  • Use search endpoint instead (works with synced transcripts)

Auth errors?

  • Check Bearer token format: Authorization: Bearer pk_xxx
  • Verify key in ~/.config/pocket-ai/api_key

Search returns nothing?

  • Try broader query terms
  • Check if recordings have been synced recently

Helper Scripts

search.sh

#!/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"

Python Helper

See pocket_api.py for full Python integration.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.49%
按下载量换算8,130

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills