网淘吧来吧,欢迎您!

返回首页 微信
微信
手机版
手机版

Second Brain: Turn conversations into lasting knowledge

2026-03-28 新闻来源:网淘吧 围观:17
电脑广告
手机广告

第二大脑

一个用于构建随时间复利增长的理解的个人知识库。它不是一个笔记垃圾场,而是一个结构化的系统,用于捕获你真正能够检索和使用的知识。

理念

你的第二大脑应当:

  • 捕获理解,而不仅仅是事实- 为你那个忘记了上下文的未来的自己而写
  • 可检索- 结构清晰,让你在需要时能找到东西
  • 保持常青- 不包含私人细节、凭据或有时效性的数据
  • 反映真实经验- 只保存你真正学过或用过的内容

保存前请思考:未来的我会为此感谢我吗?

命名空间结构

public/                           --> Shareable knowledge
  concepts/                       --> How things work
    [domain]/                     --> Organize by topic
      [concept-name]              --> Individual concepts
  toolbox/                        --> Tools and technologies
    _index                        --> Master index of tools
    [category]/                   --> Group by type
      [tool-name]                 --> Individual tools
  patterns/                       --> Reusable solutions
    [domain]/                     --> Design patterns, workflows
  references/                     --> Quick-reference material
    [topic]/                      --> Cheatsheets, syntax, APIs

private/                          --> Personal only
  notes/                          --> Scratchpad, drafts
  journal/                        --> Dated reflections

示例领域: 编程,开发运维,设计,商业,数据,安全,生产力

内容格式

概念

用于理解某物如何运作:

CONCEPT NAME
============

What it is:
[One-line definition]

Why it matters:
[What problem it solves, when you'd need it]

How it works:
[Explanation with examples]
[ASCII diagrams for architecture/flows where helpful]

+----------+      +----------+
| Client   | ---> | Server   |
+----------+      +----------+

Key insight:
[The "aha" moment - what makes this click]

Related: [links to related concepts]

工具箱条目

用于你实际使用过的工具和技术:

TOOL NAME

Category: [category]
Website: [url]
Cost: [free/paid/freemium]

What it does:
[Brief description]

Why I use it:
[Personal experience - what problem it solved for you]

When to reach for it:
[Scenarios where this is the right choice]

Quick start:
[Minimal setup/usage to get going]

Gotchas:
[Things that tripped you up]

模式

用于可复用的解决方案:

PATTERN NAME

Problem:
[What situation triggers this pattern]

Solution:
[The approach, with code/pseudocode if relevant]

Trade-offs:
[Pros and cons, when NOT to use it]

Example:
[Concrete implementation]

参考资料

用于快速查阅材料:

REFERENCE: [TOPIC]

[Organized, scannable content]
[Tables, lists, code snippets]
[Minimal prose, maximum signal]

交互规则

保存知识

保存前请务必确认:

  1. "需要我帮你保存到你的第二大脑吗?"
  2. 显示将要保存内容的草稿
  3. 确认后保存
  4. 确认保存内容及位置

知识检索

当相关主题出现时:

  • 搜索现有知识
  • 浮现相关概念
  • 将新知识与现有理解建立联系

保持质量

保存前需验证:

  • 为将来忘记背景的自己而写
  • 包含原因,而不仅仅是事实
  • 包含具体示例
  • 不含凭证、API密钥或私人路径
  • 为检索而结构化

反模式

  1. 不要自动保存- 务必先询问
  2. 不要保存未使用的工具- 仅保存实际使用过的工具
  3. 不要保存一知半解的概念- 先学习,后保存
  4. 不要包含机密信息- 不包含API密钥、密码、令牌
  5. 不要创建肤浅的条目- 如果无法解释清楚,就不要保存
  6. 不要重复- 先检查是否存在,必要时更新

API使用

使用包装脚本:

{baseDir}/scripts/ensue-api.sh <method> '<json_args>'

操作

搜索知识:

{baseDir}/scripts/ensue-api.sh discover_memories '{"query": "how does X work", "limit": 5}'

按命名空间列出:

{baseDir}/scripts/ensue-api.sh list_keys '{"prefix": "public/concepts/", "limit": 20}'

获取特定条目:

{baseDir}/scripts/ensue-api.sh get_memory '{"key_names": ["public/concepts/programming/recursion"]}'

创建条目:

{baseDir}/scripts/ensue-api.sh create_memory '{"items":[
  {"key_name":"public/concepts/domain/name","description":"Short description","value":"Full content","embed":true}
]}'

更新条目:

{baseDir}/scripts/ensue-api.sh update_memory '{"key_name": "public/toolbox/_index", "value": "Updated content"}'

删除条目:

{baseDir}/scripts/ensue-api.sh delete_memory '{"key_name": "public/notes/old-draft"}'

工具箱索引

维护public/toolbox/_index作为主参考:

TOOLBOX INDEX
=============

Categories:
  languages/      Programming languages
  frameworks/     Libraries and frameworks
  devtools/       Development utilities
  infrastructure/ Deployment, hosting, CI/CD
  productivity/   Workflow and productivity tools
  data/           Databases, analytics, data tools

Recent additions:
  [tool] - [one-line description]

Browse: "show my toolbox" or "what tools do I have for [category]"

意图映射

用户说操作
"保存这个"、"记住这个"起草条目,确认,保存
"我对X了解多少"搜索并检索相关条目
"将[工具]添加到工具箱"创建工具箱条目
"列出我的[领域]概念"列出该命名空间的键
"显示我的工具箱"显示工具箱索引
"更新[条目]"获取,显示差异,更新
"删除[条目]"确认,删除
"搜索[主题]"在所有知识中进行语义搜索

设置

需要ENSUE_API_KEY环境变量。

在此获取您的密钥:https://www.ensue-network.ai?utm_source=clawdbot&utm_medium=workflow

在clawdbot.json中配置:

"skills": {
  "entries": {
    "second-brain": {
      "apiKey": "your-ensue-api-key"
    }
  }
}

安全性

  • 绝不记录或显示API密钥
  • 绝不在条目中存储凭据、令牌或机密信息
  • 绝不包含个人文件路径或系统详细信息
免责申明
部分文章来自各大搜索引擎,如有侵权,请与我联系删除。
打赏
文章底部电脑广告
手机广告位-内容正文底部
上一篇:Web Content Fetcher 下一篇:TechMeme News

相关文章

您是本站第295169名访客 今日有8篇新文章/评论