← 返回
AI智能 中文

Percept Summarize

Generates AI summaries of conversations after silence, extracting entities, action items, and relationships for searchable meeting notes and context retrieval.
在对话结束后生成 AI 摘要,提取实体、行动项和关系,便于检索会议笔记和上下文检索。
jarvis563
AI智能 clawhub v1.0.0 1 版本 99884.4 Key: 无需
★ 0
Stars
📥 864
下载
💾 24
安装
1
版本
#latest

概述

percept-summarize

Automatic conversation summaries with entity extraction and relationship mapping.

What it does

When a conversation ends (60 seconds of silence), Percept generates an AI-powered summary with extracted entities (people, companies, topics), action items, and relationship connections. Summaries are stored locally and searchable.

When to use

  • User asks "what did we talk about?" or "summarize that meeting"
  • User wants meeting notes or action items from a conversation
  • Agent needs context from a recent conversation

Requirements

  • percept-listen skill installed and running
  • OpenClaw agent accessible via CLI (used for LLM summarization)

How it works

  1. Conversation ends (60s silence timeout)
  2. Percept builds a speaker-tagged transcript
  3. Sends transcript to OpenClaw for AI summarization
  4. Extracts entities (people, orgs, topics) and relationships
  5. Stores summary + entities in SQLite
  6. Entities linked via relationship graph (works_on, client_of, mentioned_with)

Entity resolution

5-tier cascade for identifying entities:

  1. Exact match (confidence 1.0)
  2. Fuzzy match (0.8) — handles typos, nicknames
  3. Contextual/graph (0.7) — uses relationship connections
  4. Recency (0.6) — recently mentioned entities ranked higher
  5. Semantic search (0.5) — vector similarity via LanceDB

Querying summaries

Summaries are searchable via the Percept dashboard (port 8960) or SQLite directly:

SELECT * FROM conversations WHERE summary LIKE '%action items%' ORDER BY end_time DESC;

Full-text search via FTS5:

SELECT * FROM utterances_fts WHERE utterances_fts MATCH 'project deadline';

Data retention

  • Utterances: 30 days
  • Summaries: 90 days
  • Relationships: 180 days
  • Speaker profiles: never expire

Links

  • GitHub: https://github.com/GetPercept/percept

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 14:08 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,362 📥 318,826
communication-collaboration

Percept Voice Commands

jarvis563
检测语音中的唤醒词并将邮件、短信、提醒、搜索和笔记等语音指令路由到OpenClaw代理执行。
★ 0 📥 1,183
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,059 📥 797,982