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

brain-proactive大脑主动

Agent Skill

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

总安装

2,423

周安装

98

GitHub Stars

公开资料未说明

下载量

760
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install brain-proactive

简介

主动维护 Obsidian 知识库,发现陈旧任务与孤立笔记。

  • 识别待跟进项目并提供连接机会建议。
  • 适用于知识管理系统健康度巡检。brain-proactive 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 依赖本地 vault 结构规范性,松散组织易漏检。
  • 建议定期运行以维持知识网络活性。

SKILL.md

name
brain-proactive
description
Proactive Obsidian vault maintenance and review. Find stale tasks, orphan notes, projects that need attention, and connection opportunities. Trigger on: brain review, vault review, vault check, what needs attention, check my notes, orphan notes, stale tasks, project follow-up, what's pending in vault, vault audit, brain audit, review vault, second brain check.

Brain Proactive — Vault Review & Maintenance

ICM Contract

Layer 3 inputsUSER.md (vault folder structure), SOUL.md (file standards)
Layer 4 inputsFiles/HumanVault/Health Control/Tasks/One Time Tasks.md, Files/HumanVault/Calendar/Daily Notes/, Files/HumanVault/Work/, Files/ staging folders
ProcessStale task check, pending staging queue, open work items, therapy note dates — surface what needs attention
Layer 4 outputsNo direct writes — surfaces findings to Pooh, uses vault-push skill for any approved writes

Active second-brain caretaking. Read vault, surface what needs attention, suggest what to connect or enrich. Never write to HumanVault without approval — use vault-push.


FULL VAULT REVIEW

Trigger: "brain review", "vault review", "vault audit", "what needs attention"

Run all four checks and deliver a consolidated report.

Check 1 — Stale One-Time Tasks

cat "/home/node/.openclaw/workspace/Files/HumanVault/Health Control/Tasks/One Time Tasks.md"

Find any unchecked - [ ] items. Cross-check their scheduled date (🛫 field) against today. Flag: tasks with a scheduled date more than 7 days in the past.

Check 2 — Pending Staged Files

ls -la /home/node/.openclaw/workspace/Files/Books/ 2>/dev/null
ls -la /home/node/.openclaw/workspace/Files/Receipts/ 2>/dev/null
ls -la /home/node/.openclaw/workspace/Files/Medications/ 2>/dev/null
ls -la /home/node/.openclaw/workspace/Files/Species/ 2>/dev/null
ls -la /home/node/.openclaw/workspace/Files/Transcripts/ 2>/dev/null
ls -la /home/node/.openclaw/workspace/Files/Documents/ 2>/dev/null

Flag: any files older than 3 days that haven't been pushed yet.

Check 3 — Project Follow-Up

find "/home/node/.openclaw/workspace/Files/HumanVault/Work/TD/" -name "*.md" | xargs grep -l "TODO\|\- \[ \]" 2>/dev/null
find "/home/node/.openclaw/workspace/Files/HumanVault/House Tracker/" -name "*.md" | xargs grep -l "\- \[ \]" 2>/dev/null

Report any open tasks or TODO markers in Work and House Tracker.

Check 4 — Therapy & Self-Improvement Notes

ls -lt "/home/node/.openclaw/workspace/Files/HumanVault/Health Control/Life Improvements/Therapy/" | head -10

Check file modification dates. If any therapy note hasn't been touched in >14 days, flag it — Pooh may need a nudge.


OUTPUT FORMAT (Telegram — bullet lists only, no tables)

🧠 Vault Review — [DATE]

📋 Stale Tasks ([count]):
• [task name] — overdue [X days] (from One Time Tasks.md)

📦 Staging Queue ([count] files):
• Books/: [N] files pending push
• Receipts/: [N] files pending push

🏗 Open Work Items:
• Work/TD/[file]: [what's open]

💬 Therapy Notes:
• [note name] — last touched [X days ago]

[If all clear]: Nothing needs attention. Vault is tidy.

CONNECTION FINDER

Trigger: "find connections for [note]", "what connects to [topic]", "link suggestions for [note]"

  1. Read the target note
  2. Extract key themes, names, entities
  3. Search vault for related notes:
grep -r "[keyword]" /home/node/.openclaw/workspace/Files/HumanVault/ --include="*.md" -l 2>/dev/null | head -20
  1. Suggest specific [[wikilinks]] Pooh could add to the note
  2. Never add links without Pooh's approval — present suggestions only

ORPHAN NOTE FINDER

Trigger: "find orphan notes", "what notes have no links", "disconnected notes"

# Find .md files not linked from any other file
find /home/node/.openclaw/workspace/Files/HumanVault/ -name "*.md" | while read f; do
  name=$(basename "$f" .md)
  count=$(grep -r "\[\[$name\]\]" /home/node/.openclaw/workspace/Files/HumanVault/ --include="*.md" -l 2>/dev/null | wc -l)
  if [ "$count" -eq 0 ]; then echo "$f"; fi
done 2>/dev/null | head -30

Report the orphans. Suggest which ones could be linked to existing notes.


NOTE ENRICHMENT

Trigger: "enrich [note]", "fill out [note]", "complete [note]"

  1. Read the target note from HumanVault
  2. Identify empty or sparse properties
  3. Web search to fill what's missing
  4. Stage enriched version in workspace/Files/ under appropriate type folder
  5. Report what was changed
  6. Use vault-push to push with approval

RULES

  • NEVER write directly to HumanVault — always stage and vault-push
  • NEVER delete or archive HumanVault notes without explicit command
  • When suggesting connections, cite the source file for every suggestion
  • Therapy notes are private — only report metadata (last touched date), never quote content in chat
  • Don't overwhelm Pooh with a 30-item list — cap reports at 10 items, summarize the rest

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.2%
按下载量换算632

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills