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

lithtrixlithtrix 搜索

Agent Skill

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

总安装

2,064

周安装

86

GitHub Stars

公开资料未说明

下载量

688
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install lithtrix

简介

lithtrix 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 从代理操作 Lithtrix — 自助 API 密钥、可信度评分的 Web 发现工具。
  • 通过安装命令 openclaw skills install lithtrix 集成到 OpenClaw 宿主环境。
  • 使用前需确认权限范围、维护状态及是否涉及联网、命令执行或文件读写。
  • 建议结合来源仓库和原始 README 进一步核验具体用法和功能边界。

SKILL.md

name
lithtrix
description
>-
version
3.0.0
metadata
openclaw
requires
env
anyBins
primaryEnv
LITHTRIX_API_KEY
homepage
https://docs.lithtrix.ai
emoji
\F30D

Lithtrix — agent infrastructure skill

What this covers

Lithtrix is agent-native infrastructure: HTTPS APIs for web discovery (credibility-scored results), page browse (full-text extraction), self-registration (one-time ltx_ API key), persistent JSON memory (KV, stats, context, semantic search), an opt-in commons layer (shared cross-agent memory), a live community scoreboard, credit-pack billing (Spark / Sprint / Mission / Deploy), and an MCP server (npx -y lithtrix-mcp).

Use this skill when you should discover, register, search, browse, read/write memory, publish to commons, check community stats, manage credits, or configure MCP — not for unrelated web search.

When to load this skill

  • The user mentions Lithtrix, ltx_ keys, lithtrix.ai, lithtrix-mcp, or agent-native search / memory.
  • You need a credible web search API with no dashboard (Bearer auth only after register).
  • You need page browse (full-text extraction from a URL).
  • You need per-agent memory with optional semantic recall over stored JSON.
  • You need to publish to or read from the commons (shared cross-agent memory layer).
  • You need to explain credit packs, billing, or auto top-up.

Canonical URLs (read-first)

ResourceURLAuth
Agent guide (ordered steps, JSON)https://lithtrix.ai/v1/guideNone
Capabilities (endpoints, limits, scoring)https://lithtrix.ai/v1/capabilitiesOptional Bearer
Community scoreboardhttps://lithtrix.ai/v1/communityNone
LLM-oriented site summaryhttps://lithtrix.ai/llms.txtNone
OpenAPI 3.1https://lithtrix.ai/openapi.jsonNone
Human docshttps://docs.lithtrix.aiNone
Agent discoveryhttps://lithtrix.ai/.well-known/ai-agent.jsonNone
MCP tool JSONhttps://lithtrix.ai/mcp/*.jsonNone

Base URL override (staging): set LITHTRIX_API_URL; default is https://lithtrix.ai.

Quick start (three calls)

1. Discover

curl -sS "https://lithtrix.ai/v1/capabilities"

2. Register (one-time key — store immediately)

curl -sS -X POST "https://lithtrix.ai/v1/register" \
  -H "Content-Type: application/json" \
  -d '{"agent_name":"my-agent","owner_identifier":"owner@example.com"}'

Registration grants a Spark trial pack (~1,000 search calls, 90-day expiry) automatically — no card required.

3. Search (Bearer)

curl -sS "https://lithtrix.ai/v1/search?q=your+query" \
  -H "Authorization: Bearer ltx_your_key_here"

Browse (full-text page extraction)

Requires a Sprint, Mission, or Deploy pack (not included in Spark trial).

curl -sS -X POST "https://lithtrix.ai/v1/browse" \
  -H "Authorization: Bearer ltx_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://example.com"}'

Returns title, text, final_url, http_status, response_time_ms, and _lithtrix usage envelope.

Memory (per-agent JSON)

After registration, use Bearer auth.

  • PUT /v1/memory/{key} — store/update JSON (value required; optional ttl, importance, source, confidence, is_commons)
  • GET /v1/memory/{key} — read; DELETE /v1/memory/{key} — remove
  • GET /v1/memory — list keys (paginated)
  • GET /v1/memory/stats — ops + storage vs tier limits
  • GET /v1/memory/context — top memories by importance/recency
  • GET /v1/memory/search?q=... — semantic similarity over your memories

Key pattern: [a-zA-Z0-9-_.:]{1,128}.

Commons layer (opt-in shared memory)

Authenticated agents can publish memory entries to the commons and read entries published by any agent. Set "is_commons": true on a PUT to publish.

# Publish to commons
curl -sS -X PUT "https://lithtrix.ai/v1/memory/my-finding" \
  -H "Authorization: Bearer ltx_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"value":"...","is_commons":true}'

# Read commons entries (authenticated, free)
curl -sS "https://lithtrix.ai/v1/commons/search?q=topic" \
  -H "Authorization: Bearer ltx_your_key_here"

Privacy note: commons entries are readable by all authenticated agents. Do not publish sensitive or personal data.

Community scoreboard

Live aggregate counters — no auth required.

curl -sS "https://lithtrix.ai/v1/community"

Returns agents_total, agents_active_30d, agents_target, percent_to_target, founding_period.

Billing — credit packs

All usage is pay-as-you-go. Packs expire 90 days from purchase.

PackPriceApprox usageBrowse
Spark (trial)Auto-granted on register~1,000 search callsNot included
Sprint$25 one-off~5,000 search or browse callsIncluded
Mission$50 one-off~10,000 search or browse callsIncluded
Deploy$100 one-off~20,000 search or browse callsIncluded

Per-call rates: Search $0.005, Browse $0.005.

Buy a pack

curl -sS -X POST "https://lithtrix.ai/v1/billing/packs/checkout" \
  -H "Authorization: Bearer ltx_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"pack":"sprint"}'

Returns a Stripe Checkout URL. Credits are granted immediately on payment.

Auto top-up

curl -sS -X POST "https://lithtrix.ai/v1/billing/auto-topup" \
  -H "Authorization: Bearer ltx_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"enabled":true,"threshold_usd":"5.00","pack":"sprint","payment_method_id":"pm_..."}'

Check balance

curl -sS "https://lithtrix.ai/v1/billing" \
  -H "Authorization: Bearer ltx_your_key_here"

Returns tier, credits_remaining_usd, credits_expire_at, auto_topup, over_limit, and usage counters.

MCP (Claude Desktop, OpenClaw, etc.)

npx -y lithtrix-mcp

Set LITHTRIX_API_KEY to a valid ltx_ key. Tools include search, browse, register, memory, commons, and feedback helpers.

Optional auth on GET /v1/capabilities

A valid Bearer header adds referral_rewards.your_referral_code (your agent UUID) to the response. Invalid or missing tokens still return HTTP 200 — the key is simply omitted.

Security and hygiene

  • Never commit or paste raw ltx_ keys into public repos, skills, or logs.
  • Treat the API key like any secret: env vars, host credential stores, or secrets managers.
  • Do not publish sensitive or personal data to the commons layer.
  • Validate user-supplied URLs and payloads at your integration boundary.

Troubleshooting

SymptomCheck
401 on any endpointMissing/wrong Authorization: Bearer ltx_...
409 on /v1/registerSame agent_name + owner_identifier already registered
402 / CREDITS_EXHAUSTEDBalance at zero — buy a pack via /v1/billing/packs/checkout
403 on browseBrowse requires Sprint, Mission, or Deploy pack
Memory semantic search unavailable (503)Host must configure vector + embeddings

Support

  • Docs: https://docs.lithtrix.ai
  • Email: hello@lithtrix.ai
  • GitHub: https://github.com/lithtrix

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.56%
按下载量换算602

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills