TopRank Skills

Home / Claw Skills / 搜索 / Pocket Ai
Official OpenClaw rules 36%

Pocket Ai

Pocket AI Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Pocket Ai 技能。 若已安装,则直接安装 Pocket Ai 技能。

Overview

Skill Key
asabovetech/pocket-ai
Author
asabovetech
Source Repo
openclaw/skills
Version
-
Source Path
skills/asabovetech/pocket-ai
Latest Commit SHA
89c4459a8e2e6354af149dd674e3cad6edc5e352

Extracted Content

SKILL.md excerpt

# 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

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

## Core Capabilities

### 1. Semantic Search (Most Powerful)
Search across ALL recordings by meaning, not just keywords.

```bash
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:

```bash
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
```bash
curl -s -H "Authorization: Bearer $(cat ~/.config/pocket-ai/api_key)" \
  "https://public.heypocketai.com/api/v1/public/tags"
```

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

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

### 6. Download Audio
```bash
curl -s -H "Authorization: Bea...

README excerpt

# Pocket AI Integration for OpenClaw

**Turn your voice recordings into actionable intelligence.**

Pocket AI is a wearable voice recorder that captures meetings, calls, and conversations. This skill integrates it with your AI agent, giving you semantic search across all recordings, automatic action item extraction, and meeting context awareness.

## What You Get

### 🔍 Semantic Search
Query your recordings by meaning, not keywords:
- "What did I discuss about the merger?"
- "Find conversations with the legal team"
- "What decisions were made about hiring?"

### ✅ Action Item Extraction
Automatically surfaces follow-ups from meetings:
- Tasks mentioned in conversations
- Commitments made to others
- Deadlines discussed

### 🧠 Dynamic Profile
AI builds context from your conversations:
- Current priorities and frustrations
- Team dynamics and relationships
- Strategic focus areas

### 📅 Meeting Context
Know what happened in any meeting:
- Full transcript segments
- Speaker identification
- Section summaries

## Who This Is For

**Attorneys**
- Client call documentation
- Deposition transcripts
- Case strategy discussions
- Billable time tracking
- Compliance audit trails

**Entrepreneurs**
- Team meeting notes
- Investor call follow-ups
- Operational decision tracking
- "He said / she said" elimination
- Decision audit trails

**Executives**
- Board meeting context
- 1:1 conversation history
- Strategic discussion recall
- Delegation tracking

## Requirements

- Pocket AI device (https://heypocket.com)
- OpenClaw agent infrastructure
- Pocket AI API key (from device app settings)

## Installation

1. Get your API key from Pocket AI app → Settings → API
2. Store the key:
   ```bash
   mkdir -p ~/.config/pocket-ai
   echo "pk_your_key_here" > ~/.config/pocket-ai/api_key
   chmod 600 ~/.config/pocket-ai/api_key
   ```
3. Copy skill files to your OpenClaw workspace:
   ```bash
   cp -r pocket-ai ~/.openclaw/workspace/skills/
   ```

## Usage

### Command Line
```bash...

Related Claw Skills