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

limitless-clilimitless CLI 搜索

Agent Skill

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

总安装

144

周安装

6

GitHub Stars

公开资料未说明

下载量

48
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:limitless-cli(limitless CLI 搜索)
来源仓库:https://github.com/zpankz/mcp-skillset
仓库路径:skills/limitless-cli
安装命令:
npx skills add zpankz/mcp-skillset --skill "limitless-cli"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add zpankz/mcp-skillset --skill "limitless-cli"

简介

Limitless CLI 技能用于发现并安装 AI 代理可用的命令行增强工具。

  • 适用于自动化脚本、系统运维或批量数据处理等 CLI 密集型任务。
  • 通过 npx skills add zpankz/mcp-skillset --skill "limitless-cli" 安装。
  • 使用前应审查 CLI 命令执行权限,防止误操作影响主机系统安全。
  • 建议在沙箱环境中测试高风险命令,并限制其对生产目录的访问。

SKILL.md

name
limitless-cli
description
CLI for Limitless.ai Pendant with lifelog management, FalkorDBLite semantic graph, vector embeddings, and DAG pipelines. Use for personal memory queries, semantic search across lifelogs/chats/persons/topics, entity extraction, and knowledge graph operations. Triggers include "lifelog", "pendant", "limitless", "personal memory", "semantic search", "graph query", "extraction".
license
MIT

Limitless CLI Skill

A comprehensive CLI tool for interacting with Limitless.ai Pendant data, featuring FalkorDBLite semantic graph with vector embeddings, content extraction, and DAG pipelines.

When to Use

  • User wants semantic search across lifelogs, chats, persons, or topics
  • User wants to query lifelogs or personal memory data
  • User wants to extract entities (speakers, topics) from conversations
  • User wants to sync lifelogs to a graph database
  • User wants to run extraction or analysis pipelines
  • User mentions "Limitless", "pendant", "lifelog", or "personal memory"
  • User needs domain-specific extraction (medical, technical, business)

Quick Start

Semantic Search (Recommended)

# Semantic search across lifelogs (vector-based similarity)
limitless semantic-search "ICU critical care discussion" --types Lifelog --scores

# Search multiple node types
limitless semantic-search "family doctor" --types Lifelog,Chat,Person --limit 10

# Hybrid search (semantic + full-text)
limitless search "medical exam" --mode hybrid

# Check index status (embeddings, node counts)
limitless index status

Graph Queries

# Cypher query on semantic graph
limitless graph query "MATCH (p:Person)-[:SPOKE_IN]->(l:Lifelog) RETURN p.name, count(l) ORDER BY count(l) DESC LIMIT 10"

# Graph statistics
limitless graph stats

Basic Operations

# List recent lifelogs
limitless lifelogs list --limit 10

# Search for topic (full-text)
limitless lifelogs search "topic"

# Get specific lifelog
limitless lifelogs get <id> --format json

Architecture

FalkorDBLite Semantic Graph

The CLI uses an embedded FalkorDBLite graph database (no Docker required) with vector embeddings for semantic search.

ComponentDetails
DatabaseFalkorDBLite via Python service
Socket~/.limitless/falkordb.sock (Unix domain)
EmbeddingsBGE-small-en-v1.5 (384-dim, FastEmbed)
Vector IndexesLifelog, Chat, Person, Topic

Graph Statistics (as of 2026-01-11):

  • 95,021 nodes (8,777 Lifelogs, 2,608 Chats, 1,549 Persons, 33,024 Topics, 47,027 Speakers)
  • 81,356 relationships (SPOKE_IN, HAS_TOPIC, HAS_CONTACT)
  • 100% embedding coverage on searchable nodes

Core Commands

CommandPurpose
semantic-search <query>Vector similarity search
search <query> --mode hybridCombined semantic + full-text
index statusShow node counts, embeddings
graph query <cypher>Execute Cypher queries
lifelogs list/search/getBasic lifelog operations

References (Load on Demand)

Command Reference

Semantic Search (Primary)

# Vector-based semantic search
semantic-search <query> [--types Lifelog,Chat,Person,Topic] [--limit N] [--threshold 0.15] [--scores] [--json]

# Hybrid search (semantic + full-text)
search <query> [--mode semantic|fulltext|hybrid] [--types ...] [--limit N] [--json]

# Index management
index status                    # Show node counts, embeddings, vector indexes
index build --export-path <path> # Build from Limitless export

Graph Database

graph query <cypher> [--json]   # Execute Cypher query
graph stats                     # Show database statistics
graph traverse <label> <id>     # Traverse from node

Lifelogs

lifelogs list [--date YYYY-MM-DD] [--starred] [--limit N] [--json]
lifelogs get <id> [--json]
lifelogs search <query> [--limit N] [--json]

Pipelines

pipeline run <template|file> [--var key=value]
pipeline list       # List available templates

Available templates:

  • daily-digest.yaml - Daily lifelog summary
  • weekly-review.yaml - Comprehensive weekly analysis
  • hierarchical-extraction.yaml - Full entity extraction
  • session-extraction.yaml - Session detection
  • extract-actions.yaml - Action item extraction
  • memory-query.yaml - Context-augmented response
  • research.yaml - Lifelog + web synthesis

Workflows

workflow daily <date>    # Complete day snapshot
workflow search <query>  # Cross-source search
workflow recent          # Recent activity summary

Domain Extraction Pattern

For domain-specific extraction, use this configurable pattern:

// Define domain patterns
const patterns = [
  { pattern: /ondansetron/gi, category: '5HT3 antagonist', displayName: 'Ondansetron' },
  { pattern: /droperidol/gi, category: 'Dopamine antagonist', displayName: 'Droperidol' },
];

// Filter lifelogs by domain keywords
const filtered = lifelogs.filter(l =>
  patterns.some(p => p.pattern.test(l.markdown))
);

// Extract using rule-based extraction
const results = extractFromLifelog(lifelog);

// Sync to graph with graceful degradation
try {
  await dbClient.connect();
  await lifelogRepo.upsert(lifelog);
} catch (error) {
  console.log(`⚠️ Graph sync skipped: ${error.message}`);
}

See references/extraction-rules.md for the full pattern library.

Environment Variables

LIMITLESS_API_KEY       # Required - API authentication
ANTHROPIC_API_KEY       # Optional - For LLM extraction
FALKORDB_HOST          # Default: localhost
FALKORDB_PORT          # Default: 6379

Graceful Degradation

The CLI handles missing dependencies gracefully:

DependencyIf Missing
FalkorDBContinues without graph sync, warns user
Anthropic APIFalls back to rule-based extraction
DockerUses remote FalkorDB if configured

Troubleshooting

"FalkorDBLite service not running"

  • The Python service auto-starts on first use
  • Manual start: cd ~/Projects/limitless-cli/python && uv run python -m limitless_graph.server
  • Check socket: ls ~/.limitless/falkordb.sock

"No results from semantic search"

  • Lower threshold: --threshold 0.1 (BGE scores are typically 0.15-0.35)
  • Check embeddings: limitless index status
  • Try different node types: --types Lifelog,Chat,Person,Topic

"Rate limited (429)"

  • Wait for rate limit window (180 req/min, refills 3/sec)
  • Check: config show for current settings

Integration with Other Skills

This skill integrates with:

  • context-orchestrator: Use /limitless command for personal memory context
  • error-recovery: Graceful degradation patterns applied
  • deep-research: Combine with web research for synthesis pipelines

Project Location

~/Projects/limitless-cli/
├── src/
│   ├── api/           # Rate-limited API client (180 req/min)
│   ├── db/            # FalkorDB repositories (9 repos)
│   ├── dag/           # Pipeline engine (YAML DSL)
│   ├── extraction/    # Rule + LLM extraction
│   ├── agent/         # Claude Agent SDK harness
│   └── cli/           # Commander.js commands
├── templates/         # 7 pipeline templates
└── scripts/           # Demo and utility scripts

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

31.2%
按下载量换算15

OpenCode

26.81%
按下载量换算13

kiro-cli

17.04%
按下载量换算8

Codex

10.18%
按下载量换算5

Claude Code

4.92%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills