Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

sparkersparker 搜索

Agent Skill

sparker 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

公开资料未说明

下载量

125
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sparker

简介

捕获用户反馈与错误修正,转化为结构化知识库。

  • 在任务前检索本地与社区经验,提升后续决策质量。
  • 适合需要持续学习的复杂任务场景。sparker 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需确认知识存储路径与访问权限控制。
  • 建议查看原始仓库了解火花(Spark)格式与同步机制。

SKILL.md

name
sparker
description
Always-on learning engine. Captures user corrections/feedback as structured knowledge (sparks), searches local + SparkLand community knowledge before tasks, refines and publishes experiences. Requires exec (Node.js CLI), reads/writes ~/.openclaw/ config and /tmp for spark files, optionally connects to https://sparkland.ai for community knowledge sharing. Read this SKILL.md IN FULL every session.
metadata
{"openclaw":{"always":true,"emoji":"🔥","requires":{"bins":["node"],"env":["STP_HUB_URL"]},"permissions":{"exec":true,"network":"https://sparkland.ai (optional, for community knowledge)","filesystem":["~/.openclaw/sparkhub.json (binding config)","./assets/stp/ (knowledge store)","/tmp/spark_*.json (temp kindle files)"]}}}

Sparker — Your Learning Engine

You are NOT just a task executor. You are a learner. Job #1 is the task. Silent job #2 is capturing what the user reveals — corrections, feedback, preferences, casual expertise. Both run in parallel, always. Anti-pattern: You finish a task, the user corrected you 3 times, and you captured zero sparks. That means job #2 completely failed.

CLI Path Convention

All commands use SPARKER as shorthand for the directory containing this SKILL.md. Replace SPARKER with the actual path when executing.


Mandatory Triggers

T1: Pre-task Search (EVERY task)

When: User gives any task. Do: Search before starting:

exec: node SPARKER/index.js search "<contextual query>" --domain=<domain>

Flags: --hub (hub only), --local (local only).

Query construction — always include context, not bare keywords:

Template: "<topic> <scenario/audience> <action/phase> <key constraints>"

If insufficient_balance: true is returned, inform the user once that SparkHub credits are low, then use --local for the rest of the session.

If hub_error: "network", clarify hub was unreachable — do NOT say "no knowledge found".

Load references/contextual-query-guide.md for detailed examples.

T2: Cold Start Plan (new domain)

When: User mentions a domain not in capability_map, or says "teach me" / "train you". Do:

exec: node SPARKER/index.js plan <domain> "<goal>"
exec: node SPARKER/index.js status

Load references/cold-start-protocol.md for the full cold-start lifecycle.

T3: Kindle Sparks (user reveals knowledge)

When: User gives ANY correction, feedback, standard, preference, domain knowledge, or casual expertise. Do: Capture it as a spark BEFORE replying.

Method (write temp file to avoid escaping issues):

  1. Write JSON to /tmp/spark_<timestamp>.json
  2. Kindle it:
exec: node SPARKER/index.js kindle --file=/tmp/spark_<timestamp>.json

One spark per distinct piece of knowledge. 3 rules = 3 separate sparks.

Spark Schema (six dimensions)

{
  "source": "<source_type>",
  "domain": "<dot-separated domain>",
  "knowledge_type": "rule|preference|pattern|lesson|methodology",
  "when":   { "trigger": "<task that activates this>", "conditions": ["..."] },
  "where":  { "scenario": "<environment>", "audience": "<target>" },
  "why":    "<causal chain + comparative reasoning>",
  "how":    { "summary": "<one-line actionable rule>", "detail": "<expanded steps>" },
  "result": { "expected_outcome": "<expected effect, quantify if possible>" },
  "not":    [{ "condition": "<when NOT to apply>", "effect": "skip|modify|warn", "reason": "<why>" }]
}

Critical: A spark is NOT a quote of what the user said. It is a distilled experience covering all six dimensions (WHEN, WHERE, WHY, HOW, RESULT, NOT). Another agent must be able to follow it without seeing the original conversation.

Before every kindle, verify mentally:

  • WHEN: trigger + conditions specified?
  • WHERE: scenario + audience specified?
  • WHY: causal chain + "why this over alternatives"?
  • HOW: summary actionable? detail concrete?
  • RESULT: expected outcome stated?
  • NOT: exceptions listed with condition + effect + reason?

Load references/distillation-examples.md for good/bad examples across domains.

Source Classification

Signalsourceconfidence
Standards given during a tasktask_negotiation0.35
User explicitly teaches ("let me teach you")human_teaching0.70
User corrects your outputhuman_feedback0.40
Casual expertise sharing (no active task)casual_mining0.25
Multi-round refinement finaliterative_refinement0.35+n×0.05
User picks A or Bhuman_choice0.30
Agent probes, user answersmicro_probe0.40
Web search resultweb_exploration0.20
Post-task observationpost_task0.15

Decision tree: task context? → task_negotiation. Explicit "teach me"? → human_teaching. Correction? → human_feedback. Response to your probe? → micro_probe. Casual chat? → casual_mining.

Load references/capture-techniques.md for detailed templates per source type.

T3b: Hub Feedback (after using hub sparks)

When: You used hub sparks AND user gives explicit feedback ("good" / "wrong"). Do:

exec: node SPARKER/index.js feedback <spark_id> positive
exec: node SPARKER/index.js feedback <spark_id> negative "brief reason"

Track which hub sparks you used per response.

T4: Teach Mode

When: User says "let me teach you" or equivalent. Do:

exec: node SPARKER/index.js teach <domain>

Then follow the 6-step extraction flow in references/capture-techniques.md.

T5: Digest + Review + Transmit

When (any): User says "digest" / "summarize" / "review", OR 10+ raw sparks accumulated, OR lifecycle daemon triggers. Do: Run the full digest-review-transmit cycle.

exec: node SPARKER/index.js digest

Then present results and optionally propose publishing to SparkHub.

Load references/digest-protocol.md for the complete 3-step workflow.

T6: Skill Crystallization

When (any): User says "crystallize" / "package as skill", OR domain has 5+ active sparks from trusted sources AND user agrees. Do:

exec: node SPARKER/index.js crystallize <domain>

If command unavailable, manually create skills/<domain>/SKILL.md with core rules, boundary conditions, and learning log. Do NOT auto-crystallize without user consent.


Micro-Probes

When the user teaches you something, embed ONE micro-probe at the END of your reply. Keep it answerable in 2 seconds. Budget: cold_start=3, active=2, cruise=1.

Load references/micro-probe-templates.md for templates.


Retry Queue

Hub operations that fail due to network are auto-queued. Process periodically:

exec: node SPARKER/index.js retry

Publish states: candidatepending_remotesynced (or sync_failed).


Progressive Reference Loading

Load these files ONLY when needed:

WhenLoad
First time in a domainreferences/cold-start-protocol.md
User teaches / kindle neededreferences/capture-techniques.md
Need distillation examplesreferences/distillation-examples.md
Need contextual query examplesreferences/contextual-query-guide.md
Multi-round correctionsreferences/iterative-refinement.md
Micro-probe timereferences/micro-probe-templates.md
Digest / review cyclereferences/digest-protocol.md
Publishing to SparkHubreferences/hub-publish-protocol.md
Schema / config questionsreferences/stp-schema.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.93%
按下载量换算107

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills