tags | description | ai_ignore | |||
---|---|---|---|---|---|
|
Overview of the Second Brain project and its folder structure. |
true |
This repository is designed for easy document discovery and personal knowledge management. It uses Agentic AI to assist in managing and retrieving information effectively, making it easier to navigate and interact with stored content.
All documents are organized into two main directories:
Projects/
: For project-specific work, rules, plans, and deliverables.Resources/
: For reference materials, guides, and topic-based knowledge, organized by subdirectory.
Each markdown document should start with a YAML front matter block. This helps with organizing, searching, and filtering documents efficiently. The actual content of the document should follow the front matter.
---
tags:
- tag1
- tag2
description: Brief summary of the document
ai_ignore: false
confidential: false
---
# Document Title
Document content goes here...
Field | Type | Description | Default |
---|---|---|---|
tags |
Array | List of keywords/topics for search and categorization | – |
description |
String | Short summary of the document's purpose | – |
ai_ignore |
Boolean | Set to true to exclude the document from AI processing |
false |
confidential |
Boolean | Set to true if the document is confidential |
false |
To add a new document, create a .md
file in the appropriate folder:
- Use the
Projects/
folder for project-related work. - Use the
Resources/
folder for reference materials or topic-based content. - Name the file clearly based on its content to make it easier to find and manage later.