← Back to Skills Marketplace
codezz

BrainRepo

by codezz · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
2583
Downloads
4
Stars
9
Active Installs
1
Versions
Install in OpenClaw
/install brainrepo
Description
Your personal knowledge repository — capture, organize, and retrieve everything using PARA + Zettelkasten. Triggers on: "save this", "remember", "note", "capture", "brain dump", daily/weekly reviews, searching stored knowledge, managing projects/areas/people. Works with any AI agent that reads markdown. Stores everything as .md files in a Git repo for Obsidian, VS Code, or any editor.
README (SKILL.md)

BrainRepo

Your personal knowledge repository. Capture fast, organize automatically, retrieve instantly.

Brain Location

Fixed path: ~/Documents/brainrepo/

This is not configurable. All brain data lives here.

First Run Check

Before any action, check if brainrepo is initialized:

  1. Check if ~/Documents/brainrepo/ exists with expected structure (Inbox/, Projects/, Areas/)
  2. If NOT found → Run onboarding automatically
  3. If found → Proceed with user request

Onboarding

Triggers automatically on first interaction, or when user says "set up brainrepo":

  1. Create brain at ~/Documents/brainrepo/
  2. Create the folder structure:
mkdir -p \x3Cpath>/{Inbox,Projects,Areas/personal-growth,Areas/family,Notes,Resources,Journal,People,Tasks,Archive}
  1. Create initial files from templates in assets/templates/:

    • Tasks/index.md — task hub
    • Areas/personal-growth/index.md — personal growth area
    • Areas/family/index.md — family area
  2. Initialize git (optional):

cd \x3Cpath> && git init && git add -A && git commit -m "init: brainrepo"
  1. Confirm setup and show quick start commands

Core Concept

DUMP → PROCESS → RETRIEVE

  1. Dump — Capture everything to Inbox/ (don't organize yet)
  2. Process — Evening review: Inbox → permanent home
  3. Retrieve — Ask AI to find anything

Repository Structure

brainrepo/
├── Inbox/          # Quick capture (clear daily)
├── Projects/       # Active work with deadlines
├── Areas/          # Ongoing responsibilities (no deadline)
├── Notes/          # Permanent atomic knowledge
├── Resources/      # External links, articles, references
├── Journal/        # Daily notes (YYYY-MM-DD.md)
├── People/         # One note per person
├── Tasks/          # Centralized task tracking
└── Archive/        # Completed projects

See references/structure.md for detailed breakdown.

Capture Rules

What to Capture (Immediately)

Type Destination Example
Quick thought Inbox/ "Maybe we should..."
Decision made Inbox/ or Notes/ "Decided to use Next.js"
Person info People/ New contact or update
Project update Projects/\x3Cname>/ Meeting notes, progress
Task/Todo Tasks/index.md "Need to finish X"
Link/Article Resources/ or Inbox/ URL with context
Personal growth Areas/personal-growth/ Health, habits, learning
Family info Areas/family/ Important dates, notes

What NOT to Capture

  • Casual chat without information value
  • Temporary queries ("what time is it")
  • Information easily searchable online

Note Format

Every note uses minimal frontmatter:

---
created: YYYY-MM-DD
tags: [tag1, tag2]
related: ["[[Other Note]]"]
---

# Title

Content here. Link to [[Related Notes]] freely.

Use templates from assets/templates/ when creating new notes.

Daily Workflow

During Day

  • Dump everything to Inbox/
  • Don't organize — just capture

Evening (5-10 min)

Process Inbox/:

  1. Each item → permanent home or delete
  2. Update Journal/YYYY-MM-DD.md with summary
  3. git commit -am "daily processing"

Weekly Review (Sunday, 15 min)

  1. Review all Projects/ — still active?
  2. Check Areas/ — anything neglected?
  3. Move completed projects to Archive/
  4. Update Tasks/index.md

See references/workflows.md for detailed workflows.

Commands

User says Action
"Set up brainrepo" Run onboarding, create structure
"Save this: [text]" Capture to Inbox/
"New project: [name]" Create Projects/name/ with template
"Add person: [name]" Create People/name.md with template
"What do I know about X?" Search & retrieve
"Daily review" Process Inbox/, update Journal/
"Weekly review" Full system review

Linking

Use [[wiki-links]] to connect notes:

Met with [[People/john]] about [[Projects/acme/index|ACME Project]].
Relevant insight: [[Notes/negotiation-tactics]]

Projects vs Areas

Projects Areas
Have deadlines No end date
Can be "done" Maintained forever
Specific outcome Standard to uphold

File Naming

  • Folders: kebab-case/
  • Files: kebab-case.md
  • Dates: YYYY-MM-DD.md
  • People: firstname-lastname.md

References

Usage Guidance
What to consider before installing: 1) Backup or inspect ~/Documents/brainrepo/ if it already exists — the skill uses that exact, non-configurable path and may create/overwrite files. 2) Prefer running onboarding manually the first time rather than letting the agent auto-run it, so you can review created files and templates. 3) Check your git remotes and credentials: daily/weekly workflows call git commit and git push which could transmit repository contents to configured remotes. If you keep sensitive data, remove or avoid pushing it. 4) If you want less risk, request a configurable path or run the skill in a sandbox folder you control. 5) Consider limiting autonomous invocation or monitoring the agent's first runs to confirm behavior matches expectations.
Capability Analysis
Type: OpenClaw Skill Name: brainrepo Version: 1.0.0 The OpenClaw AgentSkills skill bundle is designed to manage a personal knowledge repository using markdown files and Git. It requires file system operations (creating, reading, writing, moving files) and Git commands (`git init`, `git add -A`, `git commit`, `git push`, `git pull`). All these operations are explicitly confined to the `~/Documents/brainrepo/` directory, which is a user-owned, dedicated location for this skill. While `git add -A` is a broad command, its scope is strictly limited to the `brainrepo` directory, making it a necessary and appropriate action for managing a Git-backed knowledge base. There is no evidence of intentional harmful behavior, data exfiltration, or prompt injection aiming to subvert the agent beyond its stated purpose. The instructions in `SKILL.md` and `references/workflows.md` are clear, specific, and aligned with the skill's functionality.
Capability Assessment
Purpose & Capability
Name/description match behavior: captures, organizes, and retrieves notes as .md files in a git-backed repository. No unrelated binaries, env vars, or external endpoints are requested.
Instruction Scope
SKILL.md instructs the agent to check for and, if missing, automatically create ~/Documents/brainrepo/ (non-configurable), populate templates, initialize git, and run commits/pushes as part of workflows — which can overwrite or create files in the user's home without explicit, per-run confirmation.
Install Mechanism
Instruction-only skill with no install spec or downloads; lowest install risk because nothing is written by an installer. All behavior is via runtime file operations.
Credentials
No env vars or external credentials are requested, which is appropriate. However, the skill relies on git commands (commit/push) that may use the user's git credentials/config or attempt network pushes to configured remotes — this is proportional to a git-backed repo but has privacy/exfiltration implications if remotes are present.
Persistence & Privilege
Does not request always:true and is user-invocable. It does write persistent files under a fixed path and performs git operations; autonomous invocation combined with automatic onboarding could let the agent create/modify files without explicit user approval each time.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install brainrepo
  3. After installation, invoke the skill by name or use /brainrepo
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: Second Brain skill(PARA + Zettelkasten)
Metadata
Slug brainrepo
Version 1.0.0
License
All-time Installs 10
Active Installs 9
Total Versions 1
Frequently Asked Questions

What is BrainRepo?

Your personal knowledge repository — capture, organize, and retrieve everything using PARA + Zettelkasten. Triggers on: "save this", "remember", "note", "capture", "brain dump", daily/weekly reviews, searching stored knowledge, managing projects/areas/people. Works with any AI agent that reads markdown. Stores everything as .md files in a Git repo for Obsidian, VS Code, or any editor. It is an AI Agent Skill for Claude Code / OpenClaw, with 2583 downloads so far.

How do I install BrainRepo?

Run "/install brainrepo" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is BrainRepo free?

Yes, BrainRepo is completely free (open-source). You can download, install and use it at no cost.

Which platforms does BrainRepo support?

BrainRepo is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created BrainRepo?

It is built and maintained by codezz (@codezz); the current version is v1.0.0.

💬 Comments