# Send BrainRepo to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "brainrepo",
    "name": "BrainRepo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/codezz/brainrepo",
    "canonicalUrl": "https://clawhub.ai/codezz/brainrepo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/brainrepo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brainrepo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/templates/note.md",
      "assets/templates/project.md",
      "assets/templates/daily.md",
      "assets/templates/person.md",
      "assets/templates/resource.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/brainrepo"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/brainrepo",
    "downloadUrl": "https://openagent3.xyz/downloads/brainrepo",
    "agentUrl": "https://openagent3.xyz/skills/brainrepo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/brainrepo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/brainrepo/agent.md"
  }
}
```
## Documentation

### 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:

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

### Onboarding

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

Create brain at ~/Documents/brainrepo/
Create the folder structure:

mkdir -p <path>/{Inbox,Projects,Areas/personal-growth,Areas/family,Notes,Resources,Journal,People,Tasks,Archive}

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



Initialize git (optional):

cd <path> && git init && git add -A && git commit -m "init: brainrepo"

Confirm setup and show quick start commands

### Core Concept

DUMP → PROCESS → RETRIEVE

Dump — Capture everything to Inbox/ (don't organize yet)
Process — Evening review: Inbox → permanent home
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.

### What to Capture (Immediately)

TypeDestinationExampleQuick thoughtInbox/"Maybe we should..."Decision madeInbox/ or Notes/"Decided to use Next.js"Person infoPeople/New contact or updateProject updateProjects/<name>/Meeting notes, progressTask/TodoTasks/index.md"Need to finish X"Link/ArticleResources/ or Inbox/URL with contextPersonal growthAreas/personal-growth/Health, habits, learningFamily infoAreas/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.

### During Day

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

### Evening (5-10 min)

Process Inbox/:

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

### Weekly Review (Sunday, 15 min)

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

See references/workflows.md for detailed workflows.

### Commands

User saysAction"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

ProjectsAreasHave deadlinesNo end dateCan be "done"Maintained foreverSpecific outcomeStandard to uphold

### File Naming

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

### References

Structure Guide — Detailed folder breakdown
Workflows — Daily/weekly/monthly workflows
Templates — Note templates
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: codezz
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/brainrepo)
- [Send to Agent page](https://openagent3.xyz/skills/brainrepo/agent)
- [JSON manifest](https://openagent3.xyz/skills/brainrepo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/brainrepo/agent.md)
- [Download page](https://openagent3.xyz/downloads/brainrepo)