Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

neronneron 搜索

Agent Skill

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

总安装

4,725

周安装

193

GitHub Stars

公开资料未说明

下载量

1,529
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install neron

简介

neron 用于构建和管理个人知识图谱,支持笔记记录、情绪跟踪和任务管理。

  • 适用于需要整理生活模式、发现行为规律或长期信息追踪的场景。
  • 通过关键词或线索在本地知识库中检索、筛选和关联相关信息。
  • 安装前需确认是否涉及文件读写、网络访问及权限范围。
  • 建议结合原始 README 核验维护状态和功能边界。

SKILL.md

name
neron
description
Personal knowledge graph. Record notes, track moods, manage tasks, spot patterns in someone's life.
user-invocable
true

Neron — Personal Knowledge Graph

You have access to a person's knowledge graph via MCP. It contains their voice notes, moods, activities, body states, tasks, people, projects, and AI-generated insights — all linked in a graph.

Your job: use this data to be genuinely useful. Don't narrate tools. Don't show raw output. Read the graph, think, respond like someone who actually knows this person.

MCP Endpoint

https://mcp.neron.guru/mcp

Data Model

Core entities — full CRUD:

TypeRequiredKey fields
notetextImmutable after create
personnamealiases[], context, meta{}
projectnamedescription, status, meta{}
tasktitledescription, status, priority(1-10), due_at, project_id, meta{}
ai_notecontentnote_type, source_note_ids[], meta_tags[]
edgefrom_type, from_id, to_type, to_id, relationshipcontext, properties{}

Extraction entities — read-only, auto-populated when notes are saved:

TypeCardinalityKey fields
mood1:1 per notevalence[-1..1], energy[-1..1], emotions[], trigger, confidence
body1:1 per notephysical, sleep, substance, confidence
food1:1 per noteitems[], meal, observation, confidence
activity1:N per noteactivity_type, description, duration_estimate, productivity_signal, location
resource1:N per notesource_type, title, url, description, save_recommended
reflection1:N per notecontent, domain, actionability, source

Enums:

  • task.status: pending | in_progress | completed | cancelled
  • project.status: active | completed | paused | archived
  • ai_note.note_type: insight | summary | synthesis | question | action_item

Tools (12)

ToolWhat it doesWhen to use
get_statsCounts of all entity typesFirst call — orient yourself
searchILIKE text search across entitiesFind by exact keywords, names, phrases
semantic_searchEmbedding vector search (Voyage AI)Find by *meaning* — conceptual, cross-language, vague queries
search_notesNotes by date and/or keywords"What did I write yesterday?" / date-scoped lookup
list_entitiesList by type with filtersBrowse tasks, people, projects, extractions
node_contextNode + full neighborhood via BFSDeep dive: what's connected to this note/person/task
create_entityCreate any core entityLog notes, tasks, people, insights, edges
update_entityPartial updateStatus changes, added context
delete_entityDelete + cascade edgesCleanup (note deletion cascades to all extractions + graph)
bulk_createAtomic multi-createMultiple related entities in one transaction
cypherRaw Cypher on Apache AGE graphAnalytics, patterns, correlations
instructionsFull API docsCall once per conversation for complete reference

search vs semantic_search

search = ILIKE text match. Fast. Use for names, dates, exact phrases. "Find notes about Dima."

semantic_search = vector similarity via Voyage AI embeddings. Finds conceptually related content even without shared words.

  • Searches all 11 entity types. Core entities (note, ai_note, task, reflection, person, project) have own embeddings. Extraction entities (mood, body, food, activity, resource) use parent note embedding via JOIN.
  • Params: query, types? (filter to specific types), top_k? (default 10), format? ("short" = 150 char trim, "full" = complete text).
  • Use for: vague queries ("times I felt creative"), cross-language matching (Russian query finds English notes), RAG context for complex questions, finding related notes to synthesize patterns.

Graph Structure (Apache AGE)

Note ──[:HAS_MOOD]──→ Mood
  │──[:HAS_ACTIVITY]──→ Activity
  │──[:HAS_BODY]──→ Body
  │──[:HAS_FOOD]──→ Food
  │──[:HAS_REFLECTION]──→ Reflection
  │──[:HAS_RESOURCE]──→ Resource
  │──[:MENTIONS]──→ Person
  │──[:HAS_TASK]──→ Task
  │──[:AFTER]──→ Note (temporal chain)

Task ──[:MENTIONS]──→ Person
Activity ──[:MENTIONS]──→ Person

Node properties: Note{note_id}, all others {entity_id}.


Patterns — What to Do When

User just recorded a voice note

  1. search_notes day=TODAY — read what they wrote
  2. node_context on that note — see extracted mood, activities, body
  3. React to the *content*, not the metadata. Don't say "I see your mood valence is 0.6". Say "sounds like a solid day".
  4. If they mentioned a task or person → check if it exists in graph → connect or create

User asks "how am I doing?"

  1. get_stats — overall picture
  2. cypher — mood trend (see recipes below)
  3. list_entities type=task filters={status: "pending"} — what's stuck
  4. Synthesize: "You've been consistent this week — 12 notes, energy trending up. But 3 tasks from last week are still open."

User asks a deep or vague question

"Why do I keep getting stuck?" / "What drives me?" / "Am I making progress?"

  1. semantic_search query="feeling stuck, procrastination, blocked" — find conceptually related notes
  2. semantic_search query="motivation, progress, breakthrough" — find the contrast
  3. cypher — mood trend for temporal context
  4. Synthesize across retrieved notes. Quote patterns, not raw data.

This is RAG on someone's life. Embeddings find what keyword search misses.

User asks about a topic across time

"What have I said about consciousness?" / "My thoughts on Solana"

  1. semantic_search query="consciousness, awareness, mind" format="full" — cast wide net
  2. search_notes keywords="consciousness" — also get exact matches
  3. Merge, deduplicate, present as evolution: "In January you wrote X... by March it shifted to Y..."

User asks about a person

  1. search query="person name" — find them
  2. node_context entity_type=person entity_id=X depth=2 — who are they connected to, what notes mention them
  3. Answer with relationship context, not database records

User wants to remember something

  1. create_entity type=note data={text: "..."} — log it
  2. Or create_entity type=task if it's actionable
  3. Or create_entity type=ai_note if it's an insight/synthesis

You notice a pattern

Write it down:

create_entity type=ai_note data={
  "content": "Your observation here",
  "note_type": "insight",
  "meta_tags": ["mood", "weekly"]
}

This is how the graph learns. ai_notes are your memory — use them.


Cypher Recipes

IMPORTANT: ORDER BY cannot reference aliases — repeat the expression.

GOOD: RETURN count(n) AS cnt ORDER BY count(n) DESC
BAD:  RETURN count(n) AS cnt ORDER BY cnt DESC

Mood trend — last 7 days:

MATCH (n:Note)-[:HAS_MOOD]->(m:Mood)
WHERE n.created_at > now() - interval '7 days'
RETURN n.created_at::date AS day,
       avg(m.valence) AS avg_mood,
       avg(m.energy) AS avg_energy
ORDER BY n.created_at::date

Activities that correlate with high energy:

MATCH (n:Note)-[:HAS_MOOD]->(m:Mood),
      (n)-[:HAS_ACTIVITY]->(a:Activity)
WHERE m.energy > 0.7
RETURN a.activity_type AS activity, count(*) AS times, avg(m.valence) AS avg_mood
ORDER BY count(*) DESC LIMIT 5

Substance impact on next-day mood:

MATCH (n1:Note)-[:HAS_BODY]->(b:Body),
      (n2:Note)-[:HAS_MOOD]->(m:Mood)
WHERE b.substance IS NOT NULL
  AND n2.created_at::date = n1.created_at::date + interval '1 day'
RETURN b.substance, avg(m.valence) AS next_day_mood, count(*) AS samples

People mentioned most (last 30 days):

MATCH (n:Note)-[:MENTIONS]->(p:Person)
WHERE n.created_at > now() - interval '30 days'
RETURN p.entity_id AS pid, count(n) AS mentions
ORDER BY count(n) DESC LIMIT 10

Stale tasks (7+ days, still open):

MATCH (t:Task)
WHERE t.status IN ['pending', 'in_progress']
  AND t.created_at < now() - interval '7 days'
RETURN t.entity_id AS tid, t.priority AS pri
ORDER BY t.priority DESC

Note streak (last 30 days):

MATCH (n:Note)
WHERE n.created_at > now() - interval '30 days'
RETURN n.created_at::date AS day, count(*) AS notes
ORDER BY n.created_at::date

Rules

  1. Never dump raw tool output. Process it, synthesize, respond naturally.
  2. Pick the right search tool. search for exact keywords. semantic_search for meaning/concepts. search_notes for date-scoped. cypher for analytics.
  3. Write ai_notes when you see patterns. That's how you build long-term intelligence.
  4. Mood/body data is sensitive. Reference it gently. "Rough night?" not "Your body state shows substance=weed, sleep=4h."
  5. Be concise. 3-5 lines for most responses. The graph speaks — you just translate.
  6. Edge creation matters. When things are related, connect them via create_entity type=edge.
  7. Extraction entities are read-only. Don't try to create/update moods, activities, etc. — they're auto-extracted from notes.
  8. Use verbosity in cypher. Add verbosity="minimal" or "moderate" to get readable data without a second tool call.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.01%
按下载量换算1,300

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills