Folder Structure Reference

This document outlines the current folder structure of this MyContextLibrary. It combines the core MCL conventions with specific operational directories used in this instance.


High-Level Structure

MyContextLibrary/
β”œβ”€β”€ agents/         # πŸ€– Agent configurations, prompts, and specific instructions.
β”œβ”€β”€ export/         # πŸ“€ Generated artifacts (PDFs, reports, decks) - "Outputs".
β”œβ”€β”€ import/         # πŸ“₯ Raw ingest folder (JSON dumps, PDFs, loose notes) - "Inputs".
β”œβ”€β”€ library/        # 🧠 The Core Knowledge Base. Source of Truth.
β”‚   β”œβ”€β”€ me/         #    - Personal context (Brand, Bio, Facts).
β”‚   β”œβ”€β”€ projects/   #    - Active and archived projects.
β”‚   └── work/       #    - Professional context (Companies, Products).
β”œβ”€β”€ playbooks/      # πŸ“– Standardized templates and guides (formerly 'templates').
β”‚   β”œβ”€β”€ company-playbook/         # Scaling & Ops (Strategy, Sales, Hiring).
β”‚   β”œβ”€β”€ product-investor-narrative/ # Investor & Product Strategy.
β”‚   └── social-media/             # Content creation guides.
β”œβ”€β”€ routines/       # πŸ”„ Recurring workflows (Daily standups, Weekly reviews).
β”œβ”€β”€ tools/          # πŸ› οΈ Executable scripts (Python, Bash) for automation.
└── .settings/      # βš™οΈ System configurations (Header definitions).

Detailed Directory Breakdown

πŸ“‚ agents/

πŸ“‚ export/

πŸ“‚ import/

πŸ“‚ library/

πŸ“‚ playbooks/

πŸ“‚ routines/

πŸ“‚ tools/

πŸ“‚ .settings/


Deep Dive Example: Personal Context (library/me/)

This is a comprehensive example of how the library/me/ folder can be structured to capture a holistic personal context.

library/
└── me/
    β”œβ”€β”€ _index.md                          # What β€œme/” contains + quick nav links
    β”œβ”€β”€ profile.md                         # One-screen bio; public-safe version
    β”œβ”€β”€ fast-facts.md                      # Age, city, time zone, roles
    β”œβ”€β”€ values-goals/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ personal-values.md
    β”‚   β”œβ”€β”€ annual-goals-2025.md
    β”‚   └── bucket-list.md
    β”œβ”€β”€ timeline/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ life-timeline.md                 # major milestones
    β”‚   └── highlights-2025.md
    β”œβ”€β”€ family/
    β”‚   β”œβ”€β”€ _index.md                        # who’s who + contact links
    β”‚   β”œβ”€β”€ partner.md
    β”‚   β”œβ”€β”€ parents.md
    β”‚   └── kids/
    β”‚       β”œβ”€β”€ _index.md
    β”‚       β”œβ”€β”€ child-a/
    β”‚       β”‚   β”œβ”€β”€ _index.md
    β”‚       β”‚   β”œβ”€β”€ school.md
    β”‚       β”‚   └── health.md
    β”‚       └── child-b/
    β”‚           β”œβ”€β”€ _index.md
    β”‚           β”œβ”€β”€ school.md
    β”‚           └── health.md
    β”œβ”€β”€ health/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ overview.md                      # conditions, allergies, blood type
    β”‚   β”œβ”€β”€ medications.md                   # current meds + dosages
    β”‚   β”œβ”€β”€ providers.md                     # doctors, clinics, portals
    β”‚   β”œβ”€β”€ insurance.md
    β”‚   β”œβ”€β”€ lab-results/
    β”‚   β”‚   β”œβ”€β”€ _index.md
    β”‚   β”‚   └── 2025-06-labs.md
    β”‚   └── emergency-sheet.md               # 1-page β€œgrab this first” info
    β”œβ”€β”€ finances/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ overview.md                      # accounts by institution (no secrets)
    β”‚   β”œβ”€β”€ budget-2025.md
    β”‚   β”œβ”€β”€ investments.md
    β”‚   └── taxes/
    β”‚       └── 2024-summary.md
    β”œβ”€β”€ identity-legal/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ will-and-poa.md
    β”‚   └── contracts-log.md
    β”œβ”€β”€ work-education/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ resume.md
    β”‚   β”œβ”€β”€ skills.md
    β”‚   └── certifications.md
    β”œβ”€β”€ home-life/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ addresses.md
    β”‚   β”œβ”€β”€ home-inventory.md
    β”‚   └── maintenance-log.md
    β”œβ”€β”€ travel/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ packing-list.md
    β”‚   β”œβ”€β”€ visas-and-permits.md
    β”‚   └── trips-log.md
    β”œβ”€β”€ tech/
    β”‚   β”œβ”€β”€ _index.md
    β”‚   β”œβ”€β”€ devices.md                       # device list + serials
    β”‚   └── software-licenses.md
    β”œβ”€β”€ scratch/                            # ephemeral notes; safe to purge
    └── _files/                             # PDFs, scans, images referenced by above