Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

project-brain计划大脑

Agent Skill

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

总安装

679

周安装

28

GitHub Stars

6

下载量

222
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/synapsync/synapse_registry --skill project-brain

简介

用于查找、检索和筛选项目相关信息。

  • 适合在复杂项目中根据关键词快速定位技术文档或决策记录。
  • 支持基于任务场景的信息组织与优先级划分。
  • 安装命令:npx skills add https://github.com/synapsync/synapse_registry --skill project-brain
  • 建议检查仓库活跃度及是否触发文件系统访问。

SKILL.md

Project Brain

Assets

This skill uses a modular assets architecture. Detailed workflows, helpers, and templates are in the assets/ directory:

See assets/README.md for full directory documentation.


Purpose

Project Brain is session memory for AI agents. It bridges the gap between sessions so any agent can pick up exactly where the last one left off — and save what it learned before shutting down.

Design principle: Agents behave like professionals with a notebook. Open the notebook before work (LOAD), write a summary when done (SAVE), and the notebook persists between sessions. Memory is a natural part of the workflow, not an extra step.

What it does:

  • LOAD: Reads a brain document, parses structured context, delivers a concise briefing
  • SAVE: Captures session context, creates or incrementally updates a brain document

What a brain document is: A markdown file that captures project state, session history, architecture decisions, and next steps. The standard format (v2.0) has defined sections, but the skill also reads v1.0 and free-form documents.


Critical Rules

RULE 1 — NO FABRICATION Only report information that exists in the brain document (LOAD) or was explicitly discussed in the session (SAVE). Never infer, guess, or complete missing data.
RULE 2 — USER CONFIRMS BEFORE WRITE In SAVE mode, always present the gathered session data to the user for review before writing. Never write without confirmation.
RULE 3 — INCREMENTAL NOT DESTRUCTIVE SAVE UPDATE merges new data into existing sections. It never overwrites the full document. Accumulated Context is append-only. Session Log is prepend-only.
RULE 4 — FORMAT BACKWARD-COMPATIBLE LOAD parses three formats: v2.0 standard, v1.0 sections, and free-form markdown. SAVE UPDATE detects the format and offers migration if the document isn't v2.0.
RULE 5 — PATH RESOLUTION ONCE Resolve {brain_dir} once per session (see Configuration Resolution). The resolved path is used for all operations. Don't re-ask unless the user wants to change the path.
RULE 6 — LANGUAGE SEPARATION Conversation (briefings, confirmations, questions) → respond in the same language the user used. Brain document content (what gets written to file) → always in English, regardless of conversation language. Technical artifacts must be consistent across sessions.
RULE 7 — NO SILENT DEFAULTS When {brain_dir} has not been resolved, you MUST ask the user via AskUserQuestion before proceeding. Never silently choose the default staging path. The user must actively confirm their preferred directory.

Configuration Resolution

{brain_dir} is the directory where project-brain stores brain documents. Resolve it once per session:

  1. User message context — If the user's message contains file paths, extract {brain_dir} from those paths
  2. Auto-discover — Scan for .agents/project-brain/ in {cwd}, or look for existing brain documents
  3. Ask the user — If nothing found, ask where to store brain documents via AskUserQuestion. Default suggestion: .agents/project-brain/{scope}/

No AGENTS.md. No branded blocks. The brain directory is resolved at runtime.

Full resolution algorithm: see assets/helpers/brain-resolve.md


Mode Detection

ModeEN SignalsES SignalsWhat It Does
LOAD"load brain", "restore context", "brief me", "pick up where we left off""carga el brain", "recupera el contexto", "ponme al dia"Auto-discovers brain, reads it, delivers context briefing
SAVE"save brain", "save session", "update brain", "persist session""guarda el brain", "guarda la sesion", "actualiza el brain"Gathers session data, creates or updates brain document

Disambiguation: If the user's intent is unclear, ask:

"Do you want me to load a brain document (restore context) or save the current session (capture what we did)?"

Asset Loading (Mode-Gated)

After detecting the mode, read ONLY the assets listed for that mode. Do NOT read assets for other modes — they waste context tokens.

ModeRead These AssetsDo NOT Read
LOADassets/modes/LOAD.md, assets/helpers/brain-resolve.mdSAVE.md, brain-config.md, incremental-merge.md, BRAIN-DOCUMENT.md
SAVE INITassets/modes/SAVE.md, assets/helpers/brain-config.md, assets/templates/BRAIN-DOCUMENT.mdLOAD.md, brain-resolve.md, incremental-merge.md
SAVE UPDATEassets/modes/SAVE.md, assets/helpers/brain-config.md, assets/helpers/incremental-merge.mdLOAD.md, brain-resolve.md, BRAIN-DOCUMENT.md

Read the mode asset first, then follow its internal references to helpers/templates as needed.


Quick Start

LOAD Mode

Use at the start of a session to restore context:

Load the project brain.

This will: resolve {brain_dir}, scan for existing documents, read the brain, parse sections, and deliver a context briefing.

Assets to read now: assets/modes/LOAD.md + brain-resolve.md

SAVE Mode

Use at the end of a session to persist what happened:

Save the session to the brain.

This will: detect if a brain exists (UPDATE) or not (INIT), gather session data, confirm with you, and write or merge the brain document.

Assets to read now: assets/modes/SAVE.md + brain-config.md (SAVE.md references additional helpers per sub-mode)


Capabilities Matrix

CapabilityLOADSAVE (INIT)SAVE (UPDATE)
Resolve {brain_dir}YesYesYes
Auto-discover brain documentsYesNoYes
Read brain from Obsidian vaultYesNoNo
Read brain from filesystemYesNoNo
Parse v2.0, v1.0, free-formYesNoYes
Deliver context briefingYesNoNo
Create new brain documentNoYesNo
Incremental mergeNoNoYes
Gather session contextNoYesYes
Offer format migrationNoNoYes

Integration with Other Skills

SkillIntegration
sprint-forgeLOAD reads sprint-forge re-entry prompts. SAVE captures sprint progress as session entries.
obsidianLOAD can read brain documents from vault via obsidian READ mode. Invoke via Skill("obsidian") or say "read from obsidian". Subagent fallback: read obsidian SKILL.md directly.
universal-plannerLOAD reads planning documents. SAVE captures planning decisions.

Composition patterns:

session start  → project-brain LOAD  → agent is briefed → work happens
session end    → project-brain SAVE  → session persisted → next agent can LOAD
sprint-forge INIT  → generates findings + roadmap
project-brain SAVE → captures sprint-forge session → brain document created
new session        → project-brain LOAD → full context restored

Limitations

  1. Markdown only: Handles .md files; does not parse .yaml, .json, or other formats
  2. Single file: One brain document per project — not a recursive folder reader
  3. No synthesis: If the brain document is outdated, the briefing reflects that
  4. Obsidian integration in LOAD only: SAVE always writes to filesystem. To sync to Obsidian, use the obsidian skill after SAVE.
  5. Session Log size: Compacted at 15+ entries — older sessions are archived to {brain_dir}/archive/ and replaced with a summary paragraph
  6. No auto-save: SAVE must be explicitly invoked — the agent doesn't auto-save on exit

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.06%
按下载量换算84

Claude

30.13%
按下载量换算67

Cursor

19.66%
按下载量换算44

Gemini CLI

8.89%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills