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

limitless-lifelogs无限的生活日志

Agent Skill

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

总安装

9,551

周安装

394

GitHub Stars

2

下载量

3,120
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install limitless-lifelogs

简介

limitless-lifelogs 从生活日志中提取见解与总结。

  • 支持关键字、语义搜索与日期范围查询。
  • 适用于个人记忆增强与习惯分析场景。安装时按仓库提供的命令执行,建议先在测试环境验证依赖、命令权限和文件改动范围。
  • 依赖 Limitless AI 数据同步完整性。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
limitless_lifelogs
description
Search, summarize, and extract insights from your Limitless AI pendant life logs. Supports keyword and semantic search, date range queries, memory recall, and action item extraction for named agents.
user-invocable
true
metadata
{"openclaw":{"emoji":"🎙️","primaryEnv":"LIMITLESS_API_KEY","requires":{"bins":["curl","jq"],"env":["LIMITLESS_API_KEY"]}}}

Limitless Life Logs Skill

You have access to the user's Limitless AI pendant recordings via the Limitless REST API. Use the tools below to retrieve, search, and analyze life log transcriptions.

Configuration

Read these values from the environment before any API call:

VariableRequiredDescription
LIMITLESS_API_KEYYesAPI key from Limitless Developer settings
LIMITLESS_TIMEZONENoIANA timezone (e.g. America/Los_Angeles). Defaults to UTC

If LIMITLESS_API_KEY is not set, stop and tell the user:

"Please set your API key first: export LIMITLESS_API_KEY=your_key_here"

If LIMITLESS_TIMEZONE is not set, proceed with UTC and note it in your response.


API Reference

Base URL: https://api.limitless.ai Auth header: X-API-Key: $LIMITLESS_API_KEY This skill is READ-ONLY — never call DELETE endpoints.

List / Search Lifelogs

curl -s -H "X-API-Key: $LIMITLESS_API_KEY" \
  "https://api.limitless.ai/v1/lifelogs?timezone=$LIMITLESS_TIMEZONE&PARAMS"

Query parameters (append as &key=value):

ParamTypeDescription
qstringHybrid semantic + keyword search query
dateISO-8601 dateFilter to a specific day (YYYY-MM-DD)
startISO-8601 datetimeRange start
endISO-8601 datetimeRange end
limitintegerResults per page (default 10, max 50)
cursorstringPagination cursor from previous nextCursor
directionasc\descSort order (default desc)
includeMarkdownbooleanInclude formatted markdown content
includeHeadingsbooleanInclude section headings

Get a Specific Lifelog

curl -s -H "X-API-Key: $LIMITLESS_API_KEY" \
  "https://api.limitless.ai/v1/lifelogs/LOG_ID"

Paginate

If the response includes "nextCursor" in the meta object, fetch the next page by appending &cursor=NEXT_CURSOR to the same request. Continue until nextCursor is null or you have enough data.


Capabilities

1. Search by Topic or Keyword

Trigger phrases: "search my logs for...", "find mentions of...", "did anyone say..."

  1. Extract the search term from the user's message.
  2. Call the lifelogs endpoint with q=<term> and limit=10.
  3. Present results as a numbered list: timestamp, a short excerpt, and the log ID.
  4. Offer to fetch more pages or open a specific log.

2. Summarize Recent Activity

Trigger phrases: "what happened today", "summarize this week", "recap yesterday"

  1. Determine the date or range from the user's intent.

- "today" → date=<today's date> - "this week" → start=<Monday>&end=<today> - "yesterday" → date=<yesterday>

  1. Fetch up to 50 logs for the range (paginate if needed).
  2. Synthesize a structured summary:

- Key topics and conversations - Decisions made - People mentioned - Notable moments

3. Memory Recall

Trigger phrases: "what did we decide about...", "who mentioned...", "remind me about..."

  1. Identify the topic or entity from the user's question.
  2. Search with q=<topic>, fetching enough results to answer.
  3. Synthesize a direct answer citing the relevant log entries (include date and time).

4. Browse by Date / Time Range

Trigger phrases: "show me logs from...", "what was recorded on...", "logs between X and Y"

  1. Parse the date or range from the user's message.
  2. Fetch logs with date= or start=/end=.
  3. Present a chronological list with titles, timestamps, and brief summaries.

5. Action Item Extraction

Trigger phrases: "extract tasks", "what did I ask [agent] to do", "find action items for...", or automatically after fetching logs when the user asks for a recap.

Agent Roster

Load the configured agents from the roster file and extract the list of known agent names:

cat ~/.openclaw/workspace/skills/limitless/agents.json | jq '[.agents[].name]'

Use these names as the detection vocabulary. Never hardcode agent names in logic — always derive them from agents.json at runtime.

Detection Rules

Scan the lifelog transcription text for directives to any agent in the roster. An action item is present when:

  • A known agent name (from the roster) appears as a direct address at the start of a phrase or sentence

- Examples: "<AgentName>, send...", "Hey <AgentName> can you...", "@<AgentName> please...", "<AgentName> — I need you to..."

  • A task verb follows: send, schedule, remind, book, find, create, draft, write, check, follow up, research, compile, etc.
  • The phrase contains a clear deliverable or target

Extraction Format

For each detected action item, output:

Agent:    <agent name>
Trigger:  "<exact quote from transcript>"
Task:     <one-sentence plain-English summary of what was asked>
From log: <log ID> — <timestamp>

Dispatch Prompt

After presenting each extracted action item, ask the user:

"Should I dispatch this task to [Agent Name]?"

If the user says yes, read the agent's dispatch config from agents.json and use the appropriate method:

  • webhook: POST to dispatch.url with JSON body:
  {
    "agent": "<name>",
    "task": "<task summary>",
    "source_quote": "<exact quote>",
    "log_id": "<log ID>",
    "timestamp": "<ISO timestamp>"
  }
  curl -s -X POST -H "Content-Type: application/json" \
    -d '{"agent":"NAME","task":"TASK","source_quote":"QUOTE","log_id":"ID","timestamp":"TS"}' \
    "DISPATCH_URL"
  • email: Inform the user what the email should contain and ask them to send it, or

use the system mail command if available:

  echo "Task for AGENT_NAME:\
TASK_SUMMARY\
\
Source: QUOTE\
Log: LOG_ID" | \
    mail -s "Task from Limitless" AGENT_EMAIL

If the agent name is not in the roster, flag it:

"I found a task directed at '[Name]' but they're not in your agents.json roster. Add them to ~/.openclaw/workspace/skills/limitless/agents.json to enable dispatch."

Error Handling

SituationResponse
LIMITLESS_API_KEY not setStop and prompt user to export it
HTTP 401"Your API key appears invalid. Check it in Limitless Developer settings."
HTTP 429"Rate limit hit (180 req/min). Wait 60 seconds and try again."
HTTP 404"That log ID wasn't found. It may have been deleted or the ID is incorrect."
Empty results"No logs found matching that query. Try a broader search term or different date range."
agents.json missing"agents.json not found. Create it at ~/.openclaw/workspace/skills/limitless/agents.json using the template in the skill repo."

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.25%
按下载量换算2,878

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills