From 4a8a3ea15efa24ff3719703fd7584313d2f5fcec Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 19 May 2026 00:48:13 +0000 Subject: [PATCH 01/26] fix: expand ledger scan roots and path handling --- build_ledger.py | 6 +++++ ledger_config.json | 55 ++++++++++++++++++++++++++++++++-------------- 2 files changed, 44 insertions(+), 17 deletions(-) diff --git a/build_ledger.py b/build_ledger.py index 65ce593..b0fe3f8 100644 --- a/build_ledger.py +++ b/build_ledger.py @@ -5,6 +5,7 @@ import csv import hashlib import json +import ntpath import os import platform import re @@ -227,6 +228,11 @@ def repo_name_from_remote(remote_url: str) -> str: def markdown_target(target: Path, base_dir: Path) -> str: + target_text = str(target) + base_text = str(base_dir) + if re.match(r"^[A-Za-z]:[\\/]", target_text) and re.match(r"^[A-Za-z]:[\\/]", base_text): + relative = ntpath.relpath(target_text, base_text) + return quote(relative.replace("\\", "/"), safe="/-_.()") relative = os.path.relpath(target, base_dir) return quote(Path(relative).as_posix(), safe="/-_.()") diff --git a/ledger_config.json b/ledger_config.json index 37dc923..9b294c1 100644 --- a/ledger_config.json +++ b/ledger_config.json @@ -20,25 +20,46 @@ }, "roots": [ { - "path": "..", - "label": "documents-top", - "discovery": "children", - "exclude_names": [ - ".tmp.driveupload", - "Custom Office Templates", - "My Data Sources", - "My Games", - "Outlook Files", - "Saved Games", - "WindowsPowerShell", - "project-ledger", - "repos" - ], - "min_score": 2 + "path": "/central/repos/apps", + "label": "central-apps", + "discovery": "git_repos", + "max_depth": 6 + }, + { + "path": "/central/repos/infra", + "label": "central-infra", + "discovery": "git_repos", + "max_depth": 6 + }, + { + "path": "/central/services", + "label": "central-services", + "discovery": "children" + }, + { + "path": "/central/git", + "label": "central-git", + "discovery": "git_repos", + "max_depth": 6 + }, + { + "path": "/central/proxy-lead", + "label": "proxy-lead", + "discovery": "self" + }, + { + "path": "/central/white-rabbit", + "label": "white-rabbit", + "discovery": "self" + }, + { + "path": "/opt/homelab", + "label": "opt-homelab", + "discovery": "children" }, { - "path": "../repos", - "label": "repos", + "path": "/central/archive/root-backups/central.root-backup-20260416T012657Z/repos", + "label": "backup-20260416-repos", "discovery": "git_repos", "max_depth": 6 } From c2b436ebe80c4cb38199acd46c06c996d155cd3e Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 19 May 2026 01:43:29 +0000 Subject: [PATCH 02/26] Expand project ledger coverage --- build_ledger.py | 17 ++++++++++------- ledger_config.json | 38 ++++++++++++++++++++++++++++++++++++-- 2 files changed, 46 insertions(+), 9 deletions(-) diff --git a/build_ledger.py b/build_ledger.py index b0fe3f8..1984094 100644 --- a/build_ledger.py +++ b/build_ledger.py @@ -449,13 +449,16 @@ def load_sidecar(sidecar_path: Path | None) -> dict: def git_output(directory: Path, *args: str) -> str: - proc = subprocess.run( - ["git", "-C", str(directory), *args], - capture_output=True, - text=True, - check=False, - timeout=10, - ) + try: + proc = subprocess.run( + ["git", "-C", str(directory), *args], + capture_output=True, + text=True, + check=False, + timeout=30, + ) + except subprocess.TimeoutExpired: + return "" if proc.returncode != 0: return "" return proc.stdout.strip() diff --git a/ledger_config.json b/ledger_config.json index 9b294c1..693d105 100644 --- a/ledger_config.json +++ b/ledger_config.json @@ -22,8 +22,7 @@ { "path": "/central/repos/apps", "label": "central-apps", - "discovery": "git_repos", - "max_depth": 6 + "discovery": "children" }, { "path": "/central/repos/infra", @@ -42,6 +41,16 @@ "discovery": "git_repos", "max_depth": 6 }, + { + "path": "/central/projects", + "label": "central-projects", + "discovery": "children" + }, + { + "path": "/central/repos/active", + "label": "central-active", + "discovery": "children" + }, { "path": "/central/proxy-lead", "label": "proxy-lead", @@ -52,6 +61,31 @@ "label": "white-rabbit", "discovery": "self" }, + { + "path": "/home/matt/project-ledger", + "label": "project-ledger", + "discovery": "self" + }, + { + "path": "/home/matt/GoogleDrive/Projects", + "label": "gdrive-projects", + "discovery": "children" + }, + { + "path": "/home/matt/GoogleDrive/repos-MS", + "label": "gdrive-repos-ms", + "discovery": "children" + }, + { + "path": "/home/matt/GoogleDrive/repos-other", + "label": "gdrive-repos-other", + "discovery": "children" + }, + { + "path": "/home/matt/GoogleDrive/backups", + "label": "gdrive-backups", + "discovery": "children" + }, { "path": "/opt/homelab", "label": "opt-homelab", From fda06a91873d91000e15d10672bd9c96903de1f3 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 19 May 2026 04:48:20 +0000 Subject: [PATCH 03/26] feat: ingest Google Drive projects from inventory policy roots --- README.md | 10 +- RUNBOOK.md | 8 + build_ledger.py | 334 ++++++++++++++++++++++++++++++++++++- ledger_config.json | 29 ++-- tests/test_build_ledger.py | 192 ++++++++++++++++++++- 5 files changed, 546 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 2d75ce6..65d3921 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,21 @@ python build_ledger.py --config ledger_config.json --output-dir output - `children`: inspect each direct child directory and keep the ones that look project-like - `git_repos`: recursively find directories that contain `.git` - `self`: treat the root itself as one ledger entry +- `inventory_policy`: read a durable inventory artifact plus a policy file, then promote only the roots marked for ledger ingestion The default config scans: - the top-level children of `Documents` - nested git repos under `Documents/repos` -Adjust the roots and excludes as needed for other machines, synced folders, or backup dumps. +Adjust the roots and excludes as needed for other machines, synced folders, backup dumps, or inventory-backed cloud surfaces. + +For Google Drive or similar cloud-drive inventories, prefer a policy-backed root instead of recursive mount discovery. Point one root at the mounted folder for operator navigation, but drive candidate selection from: +- `inventory_jsonl`: durable metadata inventory +- `policy_path`: root classification policy +- `policy_crawl_treatments`: usually `["project_discovery"]` + +That keeps project-ledger ingestion aligned with the homelab control-plane rule: inventory first, policy second, project promotion third. If a directory matters but does not have enough obvious signals, add it under `force_include_names` for that root. diff --git a/RUNBOOK.md b/RUNBOOK.md index 8e728c3..4926565 100644 --- a/RUNBOOK.md +++ b/RUNBOOK.md @@ -36,6 +36,14 @@ python -m unittest tests\test_build_ledger.py 5. Add `force_include_names` if important directories are low-signal. 6. Run the scanner and inspect the Markdown output before trusting the results. +For inventory-backed cloud roots: +1. Keep `path` pointed at the mounted folder only for operator navigation. +2. Set `discovery` to `inventory_policy`. +3. Point `inventory_jsonl` at the durable inventory artifact. +4. Point `policy_path` at the matching root-policy file. +5. Restrict `policy_crawl_treatments` to the intended promotion set, usually `project_discovery`. +6. Verify the resulting entries carry `google-drive:` style project keys and a source label that preserves the policy root. + ## When A Project Is Missing Check in this order: diff --git a/build_ledger.py b/build_ledger.py index 1984094..585dae0 100644 --- a/build_ledger.py +++ b/build_ledger.py @@ -301,6 +301,182 @@ def parse_readme_summary(readme_path: Path | None) -> tuple[str, str]: return title[:160], description[:240] +def parse_iso_datetime(value: str) -> float | None: + text = str(value).strip() + if not text: + return None + if text.endswith("Z"): + text = text[:-1] + "+00:00" + try: + return datetime.fromisoformat(text).timestamp() + except ValueError: + return None + + +def build_google_drive_url(remote_name: str, inventory_path: str) -> str: + remote = str(remote_name).strip().rstrip(":") or "googledrive" + normalized = "/".join(part for part in str(inventory_path).split("/") if part) + return f"gdrive://{remote}/{quote(normalized, safe='/-_.()')}" + + +def inventory_candidate_summary(records: list[dict]) -> dict: + latest_ts = None + markdown_count = 0 + code_count = 0 + has_special_file = False + has_readme = False + has_obsidian = False + has_git = False + + for record in records: + path_text = str(record.get("path", "")) + parts = [part for part in path_text.split("/") if part] + if record.get("is_dir"): + if ".obsidian" in parts: + has_obsidian = True + if ".git" in parts: + has_git = True + name = str(record.get("name") or (parts[-1] if parts else "")).strip() + if name in README_CANDIDATES: + has_readme = True + if name in SPECIAL_FILES: + has_special_file = True + suffix = Path(name).suffix.lower() + if not record.get("is_dir") and suffix == ".md": + markdown_count += 1 + if not record.get("is_dir") and suffix in CODE_EXTENSIONS: + code_count += 1 + ts = parse_iso_datetime(str(record.get("mod_time", ""))) + if ts is not None and (latest_ts is None or ts > latest_ts): + latest_ts = ts + + reasons: list[str] = ["inventory-policy"] + if has_readme: + reasons.append("inventory-readme") + if has_special_file: + reasons.append("inventory-project-files") + if has_obsidian: + reasons.append("inventory-obsidian") + if has_git: + reasons.append("inventory-git") + if markdown_count >= 4: + reasons.append(f"inventory-markdown:{markdown_count}") + if code_count >= 3: + reasons.append(f"inventory-code:{code_count}") + + return { + "latest_ts": latest_ts, + "markdown_count": markdown_count, + "code_count": code_count, + "has_special_file": has_special_file, + "has_readme": has_readme, + "has_obsidian": has_obsidian, + "has_git": has_git, + "reasons": reasons, + "truncated": False, + } + + +def load_inventory_jsonl(path: Path) -> list[dict]: + records: list[dict] = [] + with path.open("r", encoding="utf-8") as fh: + for line_no, raw in enumerate(fh, start=1): + text = raw.strip() + if not text: + continue + try: + record = json.loads(text) + except json.JSONDecodeError as exc: + raise ValueError(f"Invalid JSONL record at {path}:{line_no}: {exc}") from exc + if not isinstance(record, dict): + raise ValueError(f"Inventory record at {path}:{line_no} must be a JSON object.") + records.append(record) + return records + + +def discover_inventory_policy_candidates(root_cfg: dict, exclude_names: set[str]) -> list[dict]: + inventory_records = load_inventory_jsonl(root_cfg["_inventory_jsonl_path"]) + policy = read_json(root_cfg["_policy_path"]) + policy_roots = policy.get("roots", {}) + if not isinstance(policy_roots, dict): + raise ValueError(f"Policy file {root_cfg['_policy_path']} must contain a roots object.") + + treatments = { + str(item).strip() + for item in root_cfg.get("policy_crawl_treatments", ["project_discovery"]) + if str(item).strip() + } + require_project_candidate = bool(root_cfg.get("require_project_ledger_candidate", True)) + remote_name = str(root_cfg.get("remote_name", "googledrive")).strip().rstrip(":") or "googledrive" + + records_by_root: dict[str, list[dict]] = {} + for record in inventory_records: + root_label = str(record.get("root_label", "")).strip() + if not root_label: + continue + records_by_root.setdefault(root_label, []).append(record) + + candidates: list[dict] = [] + seen_inventory_paths: set[str] = set() + + def add_candidate(root_name: str, candidate_kind: str, inventory_path: str, root_meta: dict) -> None: + normalized_inventory_path = "/".join(part for part in str(inventory_path).split("/") if part) + if not normalized_inventory_path: + return + key = normalized_inventory_path.lower() + if key in seen_inventory_paths: + return + seen_inventory_paths.add(key) + + prefix = normalized_inventory_path + "/" + root_records = records_by_root.get(root_name, []) + scoped_records = [ + record + for record in root_records + if str(record.get("path", "")) == normalized_inventory_path + or str(record.get("path", "")).startswith(prefix) + ] + if not scoped_records: + scoped_records = [record for record in root_records if str(record.get("path", "")) == root_name] + + filesystem_path = root_cfg["_resolved_path"].joinpath(*normalized_inventory_path.split("/")) + candidates.append( + { + "candidate_kind": candidate_kind, + "filesystem_path": filesystem_path, + "inventory_path": normalized_inventory_path, + "path_key": f"inventory::{remote_name}::{normalized_inventory_path.lower()}", + "policy_root": dict(root_meta), + "records": scoped_records, + "root_label": root_name, + "summary": inventory_candidate_summary(scoped_records), + } + ) + + for root_name, root_meta_raw in sorted(policy_roots.items(), key=lambda item: item[0].lower()): + root_meta = dict(root_meta_raw) + if str(root_meta.get("crawl_treatment", "")).strip() not in treatments: + continue + if require_project_candidate and not root_meta.get("project_ledger_candidate", False): + continue + + add_candidate(root_name, "root", root_name, root_meta) + + for record in records_by_root.get(root_name, []): + if not record.get("is_dir"): + continue + candidate_path = str(record.get("path", "")).strip() + parts = [part for part in candidate_path.split("/") if part] + if len(parts) != 2 or parts[0] != root_name: + continue + child_name = parts[-1] + if child_name in exclude_names: + continue + add_candidate(root_name, "direct-child", candidate_path, root_meta) + + return sorted(candidates, key=lambda item: item["inventory_path"].lower()) + + def inspect_candidate(directory: Path, ignore_names: set[str]) -> dict: readme_path = find_first_existing(directory, README_CANDIDATES) sidecar_path = find_first_existing(directory, SIDECAR_CANDIDATES) @@ -683,6 +859,141 @@ def build_entry( } +def build_inventory_entry( + candidate: dict, + root_cfg: dict, + defaults: dict, + output_dir: Path, +) -> dict | None: + filesystem_path = Path(candidate["filesystem_path"]) + summary = candidate["summary"] + policy_root = candidate["policy_root"] + remote_name = str(root_cfg.get("remote_name", "googledrive")).strip().rstrip(":") or "googledrive" + + readme_path = None + sidecar_path = None + if filesystem_path.exists() and filesystem_path.is_dir(): + readme_path = find_first_existing(filesystem_path, README_CANDIDATES) + sidecar_path = find_first_existing(filesystem_path, SIDECAR_CANDIDATES) + sidecar = load_sidecar(sidecar_path) + git_meta = gather_git_metadata(filesystem_path) + + title, readme_description = parse_readme_summary(readme_path) + readme_sha256 = "" + if readme_path: + try: + readme_sha256 = sha256_hex(readme_path.read_bytes()) + except OSError: + readme_sha256 = "" + + canonical_url = ( + str(sidecar.get("canonical_url", "")).strip() + or build_google_drive_url(remote_name, candidate["inventory_path"]) + ) + storage_scope = ( + str(sidecar.get("storage_scope", "")).strip() + or str(root_cfg.get("storage_scope", "")).strip() + or "shared" + ) + shared = coerce_bool(sidecar.get("shared")) + if shared is None: + shared = True + + display_name = ( + str(sidecar.get("display_name", "")).strip() + or title + or filesystem_path.name + or candidate["inventory_path"].split("/")[-1] + ) + description = ( + str(sidecar.get("description", "")).strip() + or readme_description + or str(policy_root.get("rationale", "")).strip() + ) + repo_name = ( + str(sidecar.get("repo_name", "")).strip() + or git_meta["repo_name"] + or filesystem_path.name + ) + project_key = ( + str(sidecar.get("project_key", "")).strip() + or git_meta["normalized_remote_url"] + or f"google-drive:{candidate['inventory_path'].lower()}" + ) + project_hash = sha256_hex(project_key or candidate["path_key"]) + + obsidian_enabled = summary["has_obsidian"] + git_enabled = git_meta["git"] or summary["has_git"] + markdown_count = int(summary["markdown_count"]) + project_type = classify_project_type(git_enabled, obsidian_enabled, markdown_count) + machine_name = ( + str(sidecar.get("machine_name", "")).strip() + or str(root_cfg.get("machine_name", "")).strip() + or platform.node() + or os.environ.get("COMPUTERNAME", "") + ) + + base_source_label = str(root_cfg.get("label", "google-drive")).strip() or "google-drive" + root_label = str(candidate["root_label"]).strip() + source_label = f"{base_source_label}:{root_label}" if root_label else base_source_label + + inventory_path = str(candidate["inventory_path"]).strip() + path_value = str(filesystem_path.resolve()) if filesystem_path.exists() else f"{remote_name}:{inventory_path}" + + include_reasons = list(summary["reasons"]) + include_reasons.extend( + [ + f"policy-root:{root_label}", + f"policy-treatment:{policy_root.get('crawl_treatment', '')}", + f"candidate-kind:{candidate['candidate_kind']}", + ] + ) + if sidecar.get("_sidecar_error"): + include_reasons.append("sidecar-error") + + tags = normalize_tags(sidecar.get("tags")) + tags = normalize_tags(tags + ["google-drive", root_label, str(policy_root.get("root_class", ""))]) + + return { + "project_hash": project_hash, + "project_key": project_key, + "name": display_name, + "project_type": project_type, + "source_label": source_label, + "machine_name": machine_name, + "storage_scope": storage_scope, + "shared": shared, + "git": git_enabled, + "obsidian": obsidian_enabled, + "repo_name": repo_name, + "remote_url": git_meta["remote_url"], + "canonical_url": canonical_url, + "path": path_value, + "path_from_root": inventory_path, + "readme_path": str(readme_path.resolve()) if readme_path else "", + "readme_link_md": markdown_link(readme_path, output_dir, "README") if readme_path else "", + "path_link_md": "", + "last_touch_at": isoformat_from_ts(summary["latest_ts"]), + "head_branch": git_meta["head_branch"], + "head_commit": git_meta["head_commit"], + "head_commit_at": git_meta["head_commit_at"], + "last_remote_ref_at": git_meta["last_remote_ref_at"], + "last_push_at": str(sidecar.get("last_push_at", "")).strip(), + "markdown_file_count": markdown_count, + "obsidian_note_count": markdown_count if obsidian_enabled else 0, + "tree_scan_truncated": summary["truncated"], + "readme_sha256": readme_sha256, + "include_reason": ", ".join(sorted(set(part for part in include_reasons if part))), + "status": str(sidecar.get("status", "")).strip(), + "tags": tags, + "description": description, + "next_step": str(sidecar.get("next_step", "")).strip(), + "last_session_at": str(sidecar.get("last_session_at", "")).strip(), + "last_session_summary": str(sidecar.get("last_session_summary", "")).strip(), + "sidecar_path": str(sidecar_path.resolve()) if sidecar_path else "", + } + + def collect_entries(config: dict, config_dir: Path, output_dir: Path) -> list[dict]: defaults = config.get("defaults", {}) roots = config.get("roots", []) @@ -696,6 +1007,10 @@ def collect_entries(config: dict, config_dir: Path, output_dir: Path) -> list[di root_cfg = dict(root_cfg_raw) root_path = resolve_path(root_cfg["path"], config_dir) root_cfg["_resolved_path"] = root_path + if "inventory_jsonl" in root_cfg: + root_cfg["_inventory_jsonl_path"] = resolve_path(root_cfg["inventory_jsonl"], config_dir) + if "policy_path" in root_cfg: + root_cfg["_policy_path"] = resolve_path(root_cfg["policy_path"], config_dir) exclude_names = set(DEFAULT_EXCLUDES) exclude_names.update(defaults.get("exclude_names", [])) @@ -712,15 +1027,24 @@ def collect_entries(config: dict, config_dir: Path, output_dir: Path) -> list[di ) elif discovery == "self": candidates = [root_path] + elif discovery == "inventory_policy": + candidates = discover_inventory_policy_candidates(root_cfg, exclude_names) else: raise ValueError(f"Unsupported discovery mode: {discovery}") for candidate in candidates: - resolved = str(candidate.resolve()).lower() - if resolved in seen_paths: - continue - seen_paths.add(resolved) - entry = build_entry(candidate, root_cfg, defaults, output_dir) + if isinstance(candidate, dict): + resolved = str(candidate.get("path_key", candidate.get("inventory_path", ""))).lower() + if resolved in seen_paths: + continue + seen_paths.add(resolved) + entry = build_inventory_entry(candidate, root_cfg, defaults, output_dir) + else: + resolved = str(candidate.resolve()).lower() + if resolved in seen_paths: + continue + seen_paths.add(resolved) + entry = build_entry(candidate, root_cfg, defaults, output_dir) if entry: entries.append(entry) diff --git a/ledger_config.json b/ledger_config.json index 693d105..70d486f 100644 --- a/ledger_config.json +++ b/ledger_config.json @@ -67,24 +67,17 @@ "discovery": "self" }, { - "path": "/home/matt/GoogleDrive/Projects", - "label": "gdrive-projects", - "discovery": "children" - }, - { - "path": "/home/matt/GoogleDrive/repos-MS", - "label": "gdrive-repos-ms", - "discovery": "children" - }, - { - "path": "/home/matt/GoogleDrive/repos-other", - "label": "gdrive-repos-other", - "discovery": "children" - }, - { - "path": "/home/matt/GoogleDrive/backups", - "label": "gdrive-backups", - "discovery": "children" + "path": "/home/matt/GoogleDrive", + "label": "google-drive-policy", + "discovery": "inventory_policy", + "inventory_jsonl": "/central/registry/inventories/google_drive_inventory_latest.jsonl", + "policy_path": "/central/registry/inventories/google_drive_roots_policy.json", + "policy_crawl_treatments": [ + "project_discovery" + ], + "require_project_ledger_candidate": true, + "remote_name": "googledrive", + "storage_scope": "shared" }, { "path": "/opt/homelab", diff --git a/tests/test_build_ledger.py b/tests/test_build_ledger.py index 910b52a..c628dcc 100644 --- a/tests/test_build_ledger.py +++ b/tests/test_build_ledger.py @@ -56,7 +56,7 @@ def test_build_entry_reads_git_and_sidecar(self) -> None: "project_key": "sample-project", "display_name": "Sample Project", "status": "active", - "shared": True + "shared": True, } ), encoding="utf-8", @@ -71,11 +71,11 @@ def test_build_entry_reads_git_and_sidecar(self) -> None: root_cfg = { "label": "test-root", "discovery": "children", - "_resolved_path": root + "_resolved_path": root, } defaults = { "tree_scan_max_entries": 5000, - "tree_scan_max_depth": 8 + "tree_scan_max_depth": 8, } output_dir = root / "output" output_dir.mkdir() @@ -90,6 +90,192 @@ def test_build_entry_reads_git_and_sidecar(self) -> None: self.assertTrue(entry["shared"]) self.assertEqual(entry["project_type"], "git") + def test_inventory_policy_ingests_project_discovery_roots(self) -> None: + with ScratchDir() as root: + config_path = self._make_inventory_policy_fixture(root) + output_dir = root / "output" + output_dir.mkdir() + + config = build_ledger.read_json(config_path) + entries = build_ledger.collect_entries(config, config_path.parent, output_dir) + by_key = {entry["project_key"]: entry for entry in entries} + + self.assertIn("google-drive:projects", by_key) + self.assertIn("google-drive:projects/lmntl", by_key) + self.assertIn("google-drive:omi", by_key) + self.assertIn("google-drive:repos-other/gstack-main", by_key) + self.assertNotIn("google-drive:writing", by_key) + + lmntl = by_key["google-drive:projects/lmntl"] + self.assertEqual(lmntl["source_label"], "google-drive-policy:Projects") + self.assertTrue(lmntl["shared"]) + self.assertIn("google-drive", lmntl["tags"]) + self.assertEqual(lmntl["storage_scope"], "shared") + self.assertEqual(lmntl["path_from_root"], "Projects/LMNTL") + self.assertEqual(lmntl["canonical_url"], "gdrive://googledrive/Projects/LMNTL") + self.assertIn("policy-treatment:project_discovery", lmntl["include_reason"]) + + omi = by_key["google-drive:omi"] + self.assertEqual(omi["path_from_root"], "OMI") + self.assertEqual(omi["canonical_url"], "gdrive://googledrive/OMI") + + def test_inventory_policy_identity_is_stable_across_reruns(self) -> None: + with ScratchDir() as root: + config_path = self._make_inventory_policy_fixture(root) + output_dir = root / "output" + output_dir.mkdir() + config = build_ledger.read_json(config_path) + + first_entries = build_ledger.collect_entries(config, config_path.parent, output_dir) + second_entries = build_ledger.collect_entries(config, config_path.parent, output_dir) + + first = {entry["project_key"]: entry["project_hash"] for entry in first_entries} + second = {entry["project_key"]: entry["project_hash"] for entry in second_entries} + self.assertEqual(first, second) + self.assertEqual( + first["google-drive:projects/lmntl"], + build_ledger.sha256_hex("google-drive:projects/lmntl"), + ) + + def test_inventory_policy_preserves_long_paths_and_encodes_urls(self) -> None: + with ScratchDir() as root: + long_name = "Long Project Name With Spaces And Enough Characters To Exercise Path Handling 2026" + config_path = self._make_inventory_policy_fixture(root, extra_project_name=long_name) + output_dir = root / "output" + output_dir.mkdir() + config = build_ledger.read_json(config_path) + + entries = build_ledger.collect_entries(config, config_path.parent, output_dir) + target_key = f"google-drive:projects/{long_name.lower()}" + by_key = {entry["project_key"]: entry for entry in entries} + self.assertIn(target_key, by_key) + + entry = by_key[target_key] + self.assertEqual(entry["path_from_root"], f"Projects/{long_name}") + self.assertIn("Long%20Project%20Name%20With%20Spaces", entry["canonical_url"]) + self.assertTrue(entry["path"].endswith(long_name)) + + def _make_inventory_policy_fixture(self, root: Path, extra_project_name: str | None = None) -> Path: + mount_root = root / "GoogleDrive" + mount_root.mkdir() + + projects = mount_root / "Projects" + projects.mkdir() + (projects / "LMNTL").mkdir() + (projects / "LMNTL" / "README.md").write_text("# LMNTL\nLedger candidate\n", encoding="utf-8") + + if extra_project_name: + (projects / extra_project_name).mkdir() + (projects / extra_project_name / "README.md").write_text( + f"# {extra_project_name}\nLong path test\n", + encoding="utf-8", + ) + + repos_other = mount_root / "repos-other" + repos_other.mkdir() + (repos_other / "gstack-main").mkdir() + (repos_other / "gstack-main" / "README.md").write_text("# gstack\nRepo-like root\n", encoding="utf-8") + + (mount_root / "OMI").mkdir() + (mount_root / "Writing").mkdir() + + inventory_records = [ + self._inventory_record("Projects", True, "Projects"), + self._inventory_record("Projects/LMNTL", True, "Projects"), + self._inventory_record("Projects/LMNTL/README.md", False, "Projects"), + self._inventory_record("OMI", True, "OMI"), + self._inventory_record("repos-other", True, "repos-other"), + self._inventory_record("repos-other/gstack-main", True, "repos-other"), + self._inventory_record("repos-other/gstack-main/README.md", False, "repos-other"), + self._inventory_record("Writing", True, "Writing"), + ] + if extra_project_name: + inventory_records.extend( + [ + self._inventory_record(f"Projects/{extra_project_name}", True, "Projects"), + self._inventory_record(f"Projects/{extra_project_name}/README.md", False, "Projects"), + ] + ) + + inventory_path = root / "inventory.jsonl" + inventory_path.write_text( + "\n".join(json.dumps(record, sort_keys=True) for record in inventory_records) + "\n", + encoding="utf-8", + ) + + policy = { + "roots": { + "Projects": { + "crawl_treatment": "project_discovery", + "project_ledger_candidate": True, + "root_class": "project_roots", + "rationale": "Primary project bucket.", + }, + "OMI": { + "crawl_treatment": "project_discovery", + "project_ledger_candidate": True, + "root_class": "project_roots", + "rationale": "Named initiative root.", + }, + "repos-other": { + "crawl_treatment": "project_discovery", + "project_ledger_candidate": True, + "root_class": "repo_like", + "rationale": "Repository-like collection.", + }, + "Writing": { + "crawl_treatment": "content_extract", + "project_ledger_candidate": False, + "root_class": "knowledge_docs", + "rationale": "Document-focused root.", + }, + } + } + policy_path = root / "policy.json" + policy_path.write_text(json.dumps(policy, indent=2), encoding="utf-8") + + config = { + "defaults": { + "exclude_names": [".git", ".obsidian", "node_modules", "__pycache__"], + "min_score": 2, + "tree_scan_max_entries": 5000, + "tree_scan_max_depth": 8, + "git_repo_max_depth": 6, + }, + "roots": [ + { + "path": str(mount_root), + "label": "google-drive-policy", + "discovery": "inventory_policy", + "inventory_jsonl": str(inventory_path), + "policy_path": str(policy_path), + "policy_crawl_treatments": ["project_discovery"], + "require_project_ledger_candidate": True, + "remote_name": "googledrive", + "storage_scope": "shared", + } + ], + } + config_path = root / "ledger_config.json" + config_path.write_text(json.dumps(config, indent=2), encoding="utf-8") + return config_path + + def _inventory_record(self, path_text: str, is_dir: bool, root_label: str) -> dict: + name = Path(path_text).name + return { + "crawl_timestamp": "2026-05-19T01:54:47.846166+00:00", + "id": f"id-{path_text.replace('/', '-').replace(' ', '-').lower()}", + "is_dir": is_dir, + "mime_type": "inode/directory" if is_dir else "text/markdown", + "mod_time": "2026-05-19T01:54:47.846166+00:00", + "name": name, + "original_id": "", + "path": path_text, + "remote": "googledrive:", + "root_label": root_label, + "size": -1 if is_dir else 128, + } + if __name__ == "__main__": unittest.main() From 8c4cbaeb28740b5cef44844a8412e5c15ff8fedb Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Wed, 20 May 2026 02:04:43 +0000 Subject: [PATCH 04/26] Add Matty-PC project discovery inventory --- ledger_config.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ledger_config.json b/ledger_config.json index 70d486f..44ba903 100644 --- a/ledger_config.json +++ b/ledger_config.json @@ -66,6 +66,20 @@ "label": "project-ledger", "discovery": "self" }, + { + "path": "/central/registry/inventories/matty-pc-documents", + "label": "matty-pc", + "discovery": "inventory_policy", + "inventory_jsonl": "/central/registry/inventories/matty-pc-documents/matty_pc_documents_inventory_latest.jsonl", + "policy_path": "/central/registry/inventories/matty-pc-documents/matty_pc_documents_roots_policy.json", + "policy_crawl_treatments": [ + "project_discovery" + ], + "require_project_ledger_candidate": true, + "remote_name": "matty-pc", + "machine_name": "matty-pc", + "storage_scope": "local" + }, { "path": "/home/matt/GoogleDrive", "label": "google-drive-policy", From 880bc2efe6a47348940c88f311f1a89e661342f0 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Thu, 21 May 2026 22:30:38 +0000 Subject: [PATCH 05/26] Add MacBook mirror roots to project ledger --- build_ledger.py | 52 +++++++++++++++++++++++++++++++++++++++++++--- ledger_config.json | 24 +++++++++++++++++++++ 2 files changed, 73 insertions(+), 3 deletions(-) diff --git a/build_ledger.py b/build_ledger.py index 585dae0..bb185a7 100644 --- a/build_ledger.py +++ b/build_ledger.py @@ -1052,6 +1052,22 @@ def collect_entries(config: dict, config_dir: Path, output_dir: Path) -> list[di return entries +def summarize_roots(config: dict, config_dir: Path) -> list[dict]: + summaries: list[dict] = [] + for root_cfg_raw in config.get("roots", []): + root_cfg = dict(root_cfg_raw) + root_path = resolve_path(root_cfg["path"], config_dir) + summaries.append( + { + "label": str(root_cfg.get("label", "")).strip() or root_path.name, + "path": str(root_path), + "discovery": str(root_cfg.get("discovery", "children")).strip() or "children", + "exists": root_path.exists(), + } + ) + return summaries + + def write_csv(entries: list[dict], output_path: Path) -> None: with output_path.open("w", encoding="utf-8", newline="") as fh: writer = csv.DictWriter(fh, fieldnames=CSV_FIELDS) @@ -1083,7 +1099,7 @@ def render_last_push(entry: dict) -> str: return entry["last_push_at"] or entry["last_remote_ref_at"] -def write_markdown(entries: list[dict], output_path: Path) -> None: +def write_markdown(entries: list[dict], output_path: Path, root_summaries: list[dict] | None = None) -> None: git_count = sum(1 for entry in entries if entry["git"]) obsidian_count = sum(1 for entry in entries if entry["obsidian"]) shared_count = sum(1 for entry in entries if entry["shared"]) @@ -1100,9 +1116,38 @@ def write_markdown(entries: list[dict], output_path: Path) -> None: "", "> `Last Push` uses `last_push_at` from the sidecar when available; otherwise it falls back to the newest local remote-ref timestamp.", "", + ] + + if root_summaries is not None: + mirror_roots = [root for root in root_summaries if "/central/registry/mirrors/matthews-macbook-air-2/" in root["path"]] + missing_roots = [root for root in root_summaries if not root["exists"]] + lines.extend([ + "## Scan coverage and gaps", + "", + ]) + if mirror_roots: + lines.append("**MacBook mirror roots scanned this refresh:**") + for root in mirror_roots: + lines.append(f"- `{root['label']}` — `{root['path']}`") + lines.append("") + lines.append("**Configured roots:**") + for root in root_summaries: + status = "missing" if not root["exists"] else "present" + lines.append(f"- `{root['label']}` — `{root['path']}` — {status} ({root['discovery']})") + lines.append("") + if missing_roots: + lines.append("**Known gaps / inaccessible roots:**") + for root in missing_roots: + lines.append(f"- `{root['path']}` ({root['label']})") + lines.append("") + else: + lines.append("**Known gaps / inaccessible roots:** none detected in configured scan roots.") + lines.append("") + + lines.extend([ "| Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push |", "| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |", - ] + ]) for entry in entries: location_cell = render_location_cell(entry, output_path) @@ -1137,6 +1182,7 @@ def main() -> int: output_dir = ensure_output_dir(resolve_path(args.output_dir, script_dir)) config = read_json(config_path) entries = collect_entries(config, config_path.parent, output_dir) + root_summaries = summarize_roots(config, config_path.parent) csv_path = output_dir / "projects.csv" json_path = output_dir / "projects.json" @@ -1144,7 +1190,7 @@ def main() -> int: write_csv(entries, csv_path) write_json(entries, json_path, config_path) - write_markdown(entries, md_path) + write_markdown(entries, md_path, root_summaries) print(f"Wrote {len(entries)} entries") print(f" CSV: {csv_path}") diff --git a/ledger_config.json b/ledger_config.json index 44ba903..d34aeb7 100644 --- a/ledger_config.json +++ b/ledger_config.json @@ -66,6 +66,30 @@ "label": "project-ledger", "discovery": "self" }, + { + "path": "/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter", + "label": "matthews-macbook-air-2:hermes-paperclip-adapter", + "discovery": "self", + "machine_name": "matthews-macbook-air-2" + }, + { + "path": "/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project", + "label": "matthews-macbook-air-2:higgsfield-agent-project", + "discovery": "self", + "machine_name": "matthews-macbook-air-2" + }, + { + "path": "/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab", + "label": "matthews-macbook-air-2:homelab", + "discovery": "self", + "machine_name": "matthews-macbook-air-2" + }, + { + "path": "/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research", + "label": "matthews-macbook-air-2:local-deep-research", + "discovery": "self", + "machine_name": "matthews-macbook-air-2" + }, { "path": "/central/registry/inventories/matty-pc-documents", "label": "matty-pc", From c6427d6398b5255384bb424b1c016f3e44d6b9f3 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Fri, 22 May 2026 17:03:35 +0000 Subject: [PATCH 06/26] Refresh project ledger mirror --- README.md | 1 + docs/ledgers/projects-ledger.md | 205 ++++++++++++++++++++++++++++++++ 2 files changed, 206 insertions(+) create mode 100644 docs/ledgers/projects-ledger.md diff --git a/README.md b/README.md index 65d3921..2ec8204 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ The scanner is config-driven and emits: - `output/projects.csv` - `output/projects.json` - `output/projects.md` +- `docs/ledgers/projects-ledger.md` (canonical human-facing ledger mirror) ## Handoff Docs diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md new file mode 100644 index 0000000..a0ce510 --- /dev/null +++ b/docs/ledgers/projects-ledger.md @@ -0,0 +1,205 @@ +# Project Ledger + +Generated: 2026-05-22T17:01:57+00:00 + +- Entries: 163 +- Git repos: 61 +- Obsidian vaults: 42 +- Shared/synced: 104 + +> `Last Push` uses `last_push_at` from the sidecar when available; otherwise it falls back to the newest local remote-ref timestamp. + +## Scan coverage and gaps + +**MacBook mirror roots scanned this refresh:** +- `matthews-macbook-air-2:hermes-paperclip-adapter` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter` +- `matthews-macbook-air-2:higgsfield-agent-project` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project` +- `matthews-macbook-air-2:homelab` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab` +- `matthews-macbook-air-2:local-deep-research` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research` + +**Configured roots:** +- `central-apps` — `/central/repos/apps` — present (children) +- `central-infra` — `/central/repos/infra` — present (git_repos) +- `central-services` — `/central/services` — present (children) +- `central-git` — `/central/git` — present (git_repos) +- `central-projects` — `/central/projects` — present (children) +- `central-active` — `/central/repos/active` — present (children) +- `proxy-lead` — `/central/proxy-lead` — present (self) +- `white-rabbit` — `/central/white-rabbit` — present (self) +- `project-ledger` — `/home/matt/project-ledger` — present (self) +- `matthews-macbook-air-2:hermes-paperclip-adapter` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter` — present (self) +- `matthews-macbook-air-2:higgsfield-agent-project` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project` — present (self) +- `matthews-macbook-air-2:homelab` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab` — present (self) +- `matthews-macbook-air-2:local-deep-research` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research` — present (self) +- `matty-pc` — `/central/registry/inventories/matty-pc-documents` — present (inventory_policy) +- `google-drive-policy` — `/home/matt/GoogleDrive` — present (inventory_policy) +- `opt-homelab` — `/opt/homelab` — present (children) +- `backup-20260416-repos` — `/central/archive/root-backups/central.root-backup-20260416T012657Z/repos` — present (git_repos) + +**Known gaps / inaccessible roots:** none detected in configured scan roots. + +| Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | +| Project Ledger | git | shared | yes | | 2026-05-22T16:56:40+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-21T22:30:38+00:00 | +| Homelab Agent Platform | git | shared | yes | | 2026-05-22T12:01:17+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-22T00:56:40-06:00 | +| README.md - White Rabbit | git | shared | yes | | 2026-05-22T06:35:46+00:00 | [README](../../../../central/proxy-lead/README.md) | [url](https://github.com/mschwar/proxy-lead.git) | proxy-lead | 2026-05-22T06:19:50+00:00 | +| Higgsfield Agent Project | directory | local | | | 2026-05-21T22:23:02+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project/README.md) | [higgsfield-agent-project](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project) | higgsfield-agent-project | | +| Local Deep Research | git | shared | yes | | 2026-05-21T21:48:35+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research/README.md) | [url](https://github.com/LearningCircuit/local-deep-research.git) | local-deep-research | 2026-05-08T00:31:16+00:00 | +| OpenClaw Meta Research | notes | local | | | 2026-05-21T06:00:02+00:00 | [README](../../../../central/projects/openclaw-meta-research/README.md) | [openclaw-meta-research](../../../../central/projects/openclaw-meta-research) | openclaw-meta-research | | +| Open Higgsfield AI — Open-Source Alternative to Higgsfield AI | directory | local | | | 2026-05-21T05:44:44+00:00 | [README](../../../../central/repos/apps/Open-Higgsfield-AI-main/README.md) | [Open-Higgsfield-AI-main](../../../../central/repos/apps/Open-Higgsfield-AI-main) | Open-Higgsfield-AI-main | | +| Homelab Agent Platform | git | shared | yes | | 2026-05-21T05:40:28+00:00 | [README](../../../../central/repos/infra/homelab-repo/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-04-16T17:29:52+00:00 | +| Slop Cannon Agent OS | git | shared | yes | | 2026-05-21T00:32:26+00:00 | [README](../../../../central/repos/active/agent-os/README.md) | [url](https://github.com/mschwar/agent-os.git) | agent-os | 2026-05-21T00:33:26+00:00 | +| white-rabbit | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/white-rabbit) | white-rabbit | | +| url-collection | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/url-collection) | url-collection | | +| toned | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/toned) | toned | | +| substrate | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/substrate) | substrate | | +| song-clean | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/song-clean) | song-clean | | +| slopvault-sessions | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/slopvault-sessions) | slopvault-sessions | | +| slopvault | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/slopvault) | slopvault | | +| scrollytelling | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/scrollytelling) | scrollytelling | | +| reality-ledger | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/reality-ledger) | reality-ledger | | +| prompt-refinery | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/prompt-refinery) | prompt-refinery | | +| project-ledger | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/project-ledger) | project-ledger | | +| project-eidos | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/project-eidos) | project-eidos | | +| orgatlas | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/orgatlas) | orgatlas | | +| Open-Higgsfield-AI | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/Open-Higgsfield-AI) | Open-Higgsfield-AI | | +| Obsidian Vault | obsidian | local | | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/Obsidian%20Vault) | Obsidian Vault | | +| misc-docs | obsidian | local | | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/misc-docs) | misc-docs | | +| lee-grapple-hook | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/lee-grapple-hook) | lee-grapple-hook | | +| lee-ai-learning | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/lee-ai-learning) | lee-ai-learning | | +| ledger | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/ledger) | ledger | | +| homelab | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/homelab) | homelab | | +| gstack-main | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/gstack-main) | gstack-main | | +| flow | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/flow) | flow | | +| elemental-inc | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/elemental-inc) | elemental-inc | | +| cpr | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/cpr) | cpr | | +| context-project | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/context-project) | context-project | | +| common-project | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/common-project) | common-project | | +| civstrate | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/civstrate) | civstrate | | +| BitNet | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/BitNet) | BitNet | | +| bahai-consultation-guide | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/bahai-consultation-guide) | bahai-consultation-guide | | +| bahai-9yr-plan-kb | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/bahai-9yr-plan-kb) | bahai-9yr-plan-kb | | +| ai-field-briefing | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/ai-field-briefing) | ai-field-briefing | | +| agent-os | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/agent-os) | agent-os | | +| 2026.TSLE.TEAM_internal-MS | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/2026.TSLE.TEAM_internal-MS) | 2026.TSLE.TEAM_internal-MS | | +| White Rabbit v2 | git | shared | yes | | 2026-05-19T20:17:42+00:00 | [README](../../../../central/repos/active/white-rabbit/README.md) | [url](https://github.com/mschwar/white-rabbit.git) | white-rabbit | 2026-05-19T13:24:27-06:00 | +| LLM Council | directory | local | | | 2026-05-19T16:25:04+00:00 | [README](../../../../central/repos/apps/llm-council-master/README.md) | [llm-council-master](../../../../central/repos/apps/llm-council-master) | llm-council-master | | +| Homelab Agent Platform | git | shared | yes | | 2026-05-19T03:14:59+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-04-20T23:27:22-06:00 | +| Model Context Protocol servers | git | shared | yes | | 2026-05-19T00:43:20+00:00 | [README](../../../../central/services/mcp-servers/README.md) | [url](https://github.com/modelcontextprotocol/servers.git) | servers | 2026-04-14T11:12:18-04:00 | +| # Common Project: One Concept a Day | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/common-project/README.md) | [url](https://github.com/mschwar/common-project.git) | common-project | 2026-01-31T23:16:16-07:00 | +| White Rabbit | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/white-rabbit/README.md) | [url](https://github.com/mschwar/white-rabbit.git) | white-rabbit | 2026-05-09T13:21:28-06:00 | +| VibeCoding | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/VibeCoding/README.md) | [VibeCoding](../../../../central/repos/active/VibeCoding) | VibeCoding | | +| Turborepo starter | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/counterweight-tim/README.md) | [counterweight-tim](../../../../central/repos/active/counterweight-tim) | counterweight-tim | | +| Tsimane Oral Health Heatmap: A Data Visualization Project | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/data-visualization/README.md) | [url](https://github.com/mschwar/data-visualization.git) | data-visualization | 2026-02-16T13:50:17-07:00 | +| The Garden | git | local | yes | | 2026-05-19T00:19:56+00:00 | | [the_garden](../../../../central/git/the_garden) | the_garden | | +| Substrate | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/substrate.git) | substrate | 2026-02-16T13:50:23-07:00 | +| Song Clean | directory | local | | | 2026-05-19T00:19:56+00:00 | | [song-clean](../../../../central/projects/song-clean) | song-clean | | +| Sigil | directory | local | | | 2026-05-19T00:19:56+00:00 | | [sigil](../../../../central/projects/sigil) | sigil | | +| Scratch | notes | local | | | 2026-05-19T00:19:56+00:00 | | [scratch](../../../../central/projects/scratch) | scratch | | +| Repos | notes | local | | | 2026-05-19T00:19:56+00:00 | | [repos](../../../../central/projects/repos) | repos | | +| Reality Ledger | git | shared | yes | | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/reality-ledger.git) | reality-ledger | | +| Plots | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/plots/README.md) | [url](https://github.com/mschwar/plots.git) | plots | 2026-05-19T14:54:22-06:00 | +| Paper Repo | directory | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/paper-repo/README.md) | [paper-repo](../../../../central/projects/paper-repo) | paper-repo | | +| Notes | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [notes](../../../../central/projects/notes) | notes | | +| Northstar | directory | local | | | 2026-05-19T00:19:56+00:00 | | [northstar](../../../../central/projects/northstar) | northstar | | +| Mnemosyne | directory | local | | | 2026-05-19T00:19:56+00:00 | | [mnemosyne](../../../../central/projects/mnemosyne) | mnemosyne | | +| Lit | notes | local | | | 2026-05-19T00:19:56+00:00 | | [lit](../../../../central/projects/lit) | lit | | +| Lifestream | directory | local | | | 2026-05-19T00:19:56+00:00 | | [lifestream](../../../../central/projects/lifestream) | lifestream | | +| LetterOps | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/letters/README.md) | [url](https://github.com/mschwar/letters.git) | letters | 2026-02-16T13:50:31-07:00 | +| Isabel | directory | local | | | 2026-05-19T00:19:56+00:00 | | [isabel](../../../../central/projects/isabel) | isabel | | +| Interpret | directory | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/interpret/README.md) | [interpret](../../../../central/projects/interpret) | interpret | | +| Incubating | directory | local | | | 2026-05-19T00:19:56+00:00 | | [incubating](../../../../central/projects/incubating) | incubating | | +| Horizon Foundation Toolkit | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/foundation/README.md) | [foundation](../../../../central/projects/foundation) | foundation | | +| Hermes Maximization | directory | local | | | 2026-05-19T00:19:56+00:00 | | [hermes-maximization](../../../../central/projects/hermes-maximization) | hermes-maximization | | +| Greymatter | directory | local | | | 2026-05-19T00:19:56+00:00 | | [greymatter](../../../../central/projects/greymatter) | greymatter | | +| Entropy Project | directory | local | | | 2026-05-19T00:19:56+00:00 | | [entropy_project](../../../../central/projects/entropy_project) | entropy_project | | +| Directory Crawl: transcript_processing | directory | local | | | 2026-05-19T00:19:56+00:00 | | [transcript_processing](../../../../central/projects/transcript_processing) | transcript_processing | | +| Directory Crawl: reality-ledger | git | shared | yes | | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/reality-ledger.git) | reality-ledger | | +| Directory Crawl: email_processing | notes | local | | | 2026-05-19T00:19:56+00:00 | | [email_processing](../../../../central/projects/email_processing) | email_processing | | +| Directory Crawl: context-graph-engine | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [context-graph-engine](../../../../central/projects/context-graph-engine) | context-graph-engine | | +| ctx | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/context-project/README.md) | [url](https://github.com/mschwar/context-project.git) | context-project | 2026-03-22T16:08:27-06:00 | +| Csf | directory | local | | | 2026-05-19T00:19:56+00:00 | | [csf](../../../../central/projects/csf) | csf | | +| Convertwordto Pdf 1 | directory | local | | | 2026-05-19T00:19:56+00:00 | | [convertwordto-pdf-1](../../../../central/projects/convertwordto-pdf-1) | convertwordto-pdf-1 | | +| Constructive Understanding | directory | local | | | 2026-05-19T00:19:56+00:00 | | [constructive-understanding](../../../../central/projects/constructive-understanding) | constructive-understanding | | +| Completed | directory | local | | | 2026-05-19T00:19:56+00:00 | | [completed](../../../../central/projects/completed) | completed | | +| Common Projects | notes | local | | | 2026-05-19T00:19:56+00:00 | | [common-projects](../../../../central/projects/common-projects) | common-projects | | +| Coherence-Refinement Physics | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/coherence/README.md) | [coherence](../../../../central/projects/coherence) | coherence | | +| Coherence-Antigravity (Generative Physics) | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/coherence-antigravity/README.md) | [coherence-antigravity](../../../../central/projects/coherence-antigravity) | coherence-antigravity | | +| Cohere: CFF Validation Framework | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/cohere-dump/README.md) | [cohere-dump](../../../../central/projects/cohere-dump) | cohere-dump | | +| Codex Agent Visibility (Hardcoded) | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [structure](../../../../central/projects/structure) | structure | | +| Claw Code | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/claw-code/README.md) | [url](https://github.com/ultraworkers/claw-code.git) | claw-code | 2026-05-06T15:41:25+09:00 | +| Calc | notes | local | | | 2026-05-19T00:19:56+00:00 | | [calc](../../../../central/projects/calc) | calc | | +| Central Git test from Windows | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/test-repo/README.md) | [test-repo](../../../../central/repos/active/test-repo) | test-repo | | +| bible-homepage | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bible-homepage/README.md) | [url](https://github.com/mschwar/bible-homepage.git) | bible-homepage | 2026-02-16T13:50:12-07:00 | +| Bahá’í Daily Homepage | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bahai-homepage/README.md) | [url](https://github.com/mschwar/bahai-homepage.git) | bahai-homepage | 2026-02-07T19:15:10-06:00 | +| AI_SYSTEM_SPEC | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/braindump/README.md) | [braindump](../../../../central/projects/braindump) | braindump | | +| AI Compute "Phase Shift" Scrollytelling Visualization | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/scrollytelling/README.md) | [url](https://github.com/mschwar/scrollytelling.git) | scrollytelling | 2026-02-01T02:00:41-07:00 | +| AI Companion | git+obsidian | local | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bridgeai/README.md) | [bridgeai](../../../../central/repos/active/bridgeai) | bridgeai | | +| AGENTS.md - Your Workspace | git | local | yes | | 2026-05-19T00:19:56+00:00 | | [the_garden](../../../../central/repos/active/the_garden) | the_garden | | +| Agent Master Repository | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/agent-master-dump/README.md) | [agent-master-dump](../../../../central/projects/agent-master-dump) | agent-master-dump | | +| Active | directory | local | | | 2026-05-19T00:19:56+00:00 | | [active](../../../../central/projects/active) | active | | +| A Practical Guide to Baha'i Consultation | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bahai-consultation-guide/README.md) | [url](https://github.com/mschwar/bahai-consultation-guide.git) | bahai-consultation-guide | 2026-02-16T13:50:04-07:00 | +| A Garden of Wisdom | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/Garden-of-Wisdom/README.md) | [url](https://github.com/mschwar/Garden-of-Wisdom.git) | Garden-of-Wisdom | 2025-07-09T00:17:30-06:00 | +| paperclip | directory | shared | | | 2026-05-11T20:47:40+00:00 | | [url](gdrive://googledrive/paperclip) | paperclip | | +| backups | directory | shared | | | 2026-05-11T20:47:40+00:00 | | [url](gdrive://googledrive/paperclip/backups) | backups | | +| Paperclip Adapter for Hermes Agent | git | shared | yes | | 2026-05-07T06:58:56+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter/README.md) | [url](https://github.com/NousResearch/hermes-paperclip-adapter.git) | hermes-paperclip-adapter | 2026-04-03T22:44:23-07:00 | +| OMI | directory | shared | | | 2026-04-26T00:00:26+00:00 | | [url](gdrive://googledrive/OMI) | OMI | | +| Hermes ops workflows | directory | local | | | 2026-04-25T04:21:00+00:00 | [README](../../../../central/repos/active/hermes-ops-workflows/README.md) | [hermes-ops-workflows](../../../../central/repos/active/hermes-ops-workflows) | hermes-ops-workflows | | +| repos-other | git+obsidian | shared | yes | yes | 2026-04-20T23:24:24+00:00 | | [url](gdrive://googledrive/repos-other) | repos-other | | +| repos-MS | directory | shared | | | 2026-04-20T22:15:24+00:00 | | [url](gdrive://googledrive/repos-MS) | repos-MS | | +| What this is | git | shared | yes | | 2026-04-20T18:54:38+00:00 | [README](../../GoogleDrive/repos-other/claude-overhaul/README.md) | [url](gdrive://googledrive/repos-other/claude-overhaul) | claude-overhaul | 2026-03-24T00:51:41-06:00 | +| Projects | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects) | Projects | | +| LMNTL | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/LMNTL) | LMNTL | | +| legal | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/legal) | legal | | +| CV-Resume | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/CV-Resume) | CV-Resume | | +| EDI | obsidian | shared | | yes | 2026-04-20T18:38:33+00:00 | | [url](gdrive://googledrive/EDI) | EDI | | +| _EDI-stuff | directory | shared | | | 2026-04-20T18:37:55+00:00 | | [url](gdrive://googledrive/EDI/_EDI-stuff) | _EDI-stuff | | +| README.md | directory | shared | | | 2026-04-20T18:37:50+00:00 | [README](../../GoogleDrive/EDI/email-marketing/readme.md) | [url](gdrive://googledrive/EDI/email-marketing) | email-marketing | | +| Karina_Share | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/Karina_Share) | Karina_Share | | +| docs | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/docs) | docs | | +| assets | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/assets) | assets | | +| accounting | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/accounting) | accounting | | +| _archive | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/_archive) | _archive | | +| nano-build | obsidian | shared | | yes | 2026-04-20T02:51:28+00:00 | [README](../../GoogleDrive/repos-other/nano-build/README.md) | [url](gdrive://googledrive/repos-other/nano-build) | nano-build | | +| marketing-skills-main | directory | shared | | | 2026-04-17T01:43:54+00:00 | | [url](gdrive://googledrive/repos-other/marketing-skills-main) | marketing-skills-main | | +| gstack-main | directory | shared | | | 2026-04-17T01:43:54+00:00 | | [url](gdrive://googledrive/repos-other/gstack-main) | gstack-main | | +| AI Agents Platform | directory | local | | | 2026-04-16T16:32:29+00:00 | [README](../../../../central/repos/apps/ai-agents-platform/README.md) | [ai-agents-platform](../../../../central/repos/apps/ai-agents-platform) | ai-agents-platform | | +| ELEMENTAL | directory | shared | | | 2026-04-12T01:39:33+00:00 | | [url](gdrive://googledrive/EDI/ELEMENTAL) | ELEMENTAL | | +| EDI | obsidian | shared | | yes | 2026-03-24T02:58:56+00:00 | | [url](gdrive://googledrive/EDI/EDI) | EDI | | +| Content | directory | shared | | | 2026-03-24T02:58:56+00:00 | | [url](gdrive://googledrive/EDI/Content) | Content | | +| meetings | directory | shared | | | 2026-03-18T23:04:54+00:00 | | [url](gdrive://googledrive/EDI/meetings) | meetings | | +| sensiblewords-master | directory | shared | | | 2026-03-11T03:28:39+00:00 | [README](../../GoogleDrive/repos-other/sensiblewords-master/README.md) | [url](gdrive://googledrive/repos-other/sensiblewords-master) | sensiblewords-master | | +| | notes | local | | | 2026-03-03T14:50:16+00:00 | [README](../../../../central/repos/apps/open-notebook-main/README.md) | [open-notebook-main](../../../../central/repos/apps/open-notebook-main) | open-notebook-main | | +| _empty | notes | shared | | | 2026-02-27T17:32:34+00:00 | | [url](gdrive://googledrive/EDI/_empty) | _empty | | +| MATLAB Toolbox for Handling 2D and 3D FEM Meshes | directory | shared | | | 2026-02-27T00:46:36+00:00 | [README](../../GoogleDrive/repos-other/fem_mesh_matlab-master/README.md) | [url](gdrive://googledrive/repos-other/fem_mesh_matlab-master) | fem_mesh_matlab-master | | +| bahaiwritings | directory | local | | | 2026-02-20T18:19:22+00:00 | [README](../../../../central/repos/active/bahaiwritings-main/README.md) | [bahaiwritings-main](../../../../central/repos/active/bahaiwritings-main) | bahaiwritings-main | | +|
| directory | local | | | 2026-02-19T06:41:32+00:00 | [README](../../../../central/repos/active/consultlink---baha%27i-consultation-guide/README.md) | [consultlink---baha'i-consultation-guide](../../../../central/repos/active/consultlink---baha%27i-consultation-guide) | consultlink---baha'i-consultation-guide | | +| Design & Assets | directory | shared | | | 2026-01-22T20:01:58+00:00 | | [url](gdrive://googledrive/EDI/Design%20%26%20Assets) | Design & Assets | | +| Business Development & Partners | directory | shared | | | 2026-01-22T20:01:58+00:00 | | [url](gdrive://googledrive/EDI/Business%20Development%20%26%20Partners) | Business Development & Partners | | +| Strategy & Brand | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/Strategy%20%26%20Brand) | Strategy & Brand | | +| Product Testing & Compliance | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/Product%20Testing%20%26%20Compliance) | Product Testing & Compliance | | +| HR & Internships | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/HR%20%26%20Internships) | HR & Internships | | +| Sourcing & COGS | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Sourcing%20%26%20COGS) | Sourcing & COGS | | +| Operations & Culture | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Operations%20%26%20Culture) | Operations & Culture | | +| Customer Service | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Customer%20Service) | Customer Service | | +| Corporate & Legal | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Corporate%20%26%20Legal) | Corporate & Legal | | +| Prompts | directory | local | | | 2026-01-14T01:42:10+00:00 | [README](../../../../central/repos/active/prompts/README.md) | [prompts](../../../../central/repos/active/prompts) | prompts | | +| Agents | notes | local | | | 2026-01-13T16:40:38+00:00 | [README](../../../../central/repos/active/agents/README.md) | [agents](../../../../central/repos/active/agents) | agents | | +| vibe_brain | obsidian | local | | yes | 2026-01-13T16:33:47+00:00 | | [vibe_brain](../../../../central/repos/active/vibe_brain) | vibe_brain | | +| projects | notes | local | | | 2026-01-13T16:33:43+00:00 | | [projects](../../../../central/repos/active/projects) | projects | | +| Templates | directory | local | | | 2026-01-13T16:32:44+00:00 | [README](../../../../central/repos/active/templates/README.md) | [templates](../../../../central/repos/active/templates) | templates | | +| Protocols | directory | local | | | 2026-01-13T16:32:44+00:00 | [README](../../../../central/repos/active/protocols/README.md) | [protocols](../../../../central/repos/active/protocols) | protocols | | +| Workflows | notes | local | | | 2026-01-13T16:32:06+00:00 | [README](../../../../central/repos/active/workflows/README.md) | [workflows](../../../../central/repos/active/workflows) | workflows | | +| Tools | directory | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/tools/README.md) | [tools](../../../../central/repos/active/tools) | tools | | +| Contexts | notes | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/contexts/README.md) | [contexts](../../../../central/repos/active/contexts) | contexts | | +| Blueprints | directory | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/blueprints/README.md) | [blueprints](../../../../central/repos/active/blueprints) | blueprints | | +| agent runtime | obsidian | local | | yes | 2026-01-13T01:10:59+00:00 | | [agent runtime](../../../../central/repos/active/agent%20runtime) | agent runtime | | +| EDI - AI dumps | directory | shared | | | 2025-08-09T00:45:46+00:00 | | [url](gdrive://googledrive/EDI/EDI%20-%20AI%20dumps) | EDI - AI dumps | | +| Customer Database | directory | shared | | | 2025-08-09T00:45:46+00:00 | | [url](gdrive://googledrive/EDI/Customer%20Database) | Customer Database | | +| testimonials | directory | shared | | | 2025-06-11T20:25:01+00:00 | | [url](gdrive://googledrive/EDI/testimonials) | testimonials | | +| sales | directory | shared | | | 2025-06-11T20:22:14+00:00 | | [url](gdrive://googledrive/EDI/sales) | sales | | +| QC | directory | shared | | | 2025-06-10T01:59:02+00:00 | | [url](gdrive://googledrive/EDI/QC) | QC | | +| tracking | directory | shared | | | 2025-06-10T01:57:31+00:00 | | [url](gdrive://googledrive/EDI/tracking) | tracking | | +| market-research | directory | shared | | | 2025-06-10T01:54:56+00:00 | | [url](gdrive://googledrive/EDI/market-research) | market-research | | +| Financials | directory | shared | | | 2024-11-12T15:43:43+00:00 | | [url](gdrive://googledrive/EDI/Financials) | Financials | | +| Elemental x FFF docs | directory | shared | | | 2024-05-18T20:12:09+00:00 | | [url](gdrive://googledrive/EDI/Elemental%20x%20FFF%20docs) | Elemental x FFF docs | | From 577cdb1adbca480096a87ea21b70fc02e42454df Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Fri, 22 May 2026 23:09:09 +0000 Subject: [PATCH 07/26] Refresh project ledger snapshot --- docs/ledgers/projects-ledger.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index a0ce510..484a7c1 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Generated: 2026-05-22T17:01:57+00:00 +Generated: 2026-05-22T23:07:53+00:00 - Entries: 163 - Git repos: 61 @@ -40,8 +40,8 @@ Generated: 2026-05-22T17:01:57+00:00 | Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push | | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| Project Ledger | git | shared | yes | | 2026-05-22T16:56:40+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-21T22:30:38+00:00 | -| Homelab Agent Platform | git | shared | yes | | 2026-05-22T12:01:17+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-22T00:56:40-06:00 | +| Homelab Agent Platform | git | shared | yes | | 2026-05-22T18:00:57+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-22T11:28:24-06:00 | +| Project Ledger | git | shared | yes | | 2026-05-22T17:02:30+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-22T17:03:35+00:00 | | README.md - White Rabbit | git | shared | yes | | 2026-05-22T06:35:46+00:00 | [README](../../../../central/proxy-lead/README.md) | [url](https://github.com/mschwar/proxy-lead.git) | proxy-lead | 2026-05-22T06:19:50+00:00 | | Higgsfield Agent Project | directory | local | | | 2026-05-21T22:23:02+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project/README.md) | [higgsfield-agent-project](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project) | higgsfield-agent-project | | | Local Deep Research | git | shared | yes | | 2026-05-21T21:48:35+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research/README.md) | [url](https://github.com/LearningCircuit/local-deep-research.git) | local-deep-research | 2026-05-08T00:31:16+00:00 | From b16f079c711315f9078414d7f86d192214d978f3 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Sat, 23 May 2026 11:23:56 +0000 Subject: [PATCH 08/26] Refresh project ledger mirror --- docs/ledgers/projects-ledger.md | 380 ++++++++++++++++---------------- 1 file changed, 188 insertions(+), 192 deletions(-) diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 484a7c1..82b8db3 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,205 +1,201 @@ # Project Ledger -Generated: 2026-05-22T23:07:53+00:00 +Last refreshed: 2026-05-23T11:19:56+00:00 + +## Scope and coverage + +- Source of truth: live build from `/home/matt/project-ledger/output/projects.json`. +- Coverage: 3 machine sources covered — ai-server, matthews-macbook-air-2, matty-pc. +- Durable mirrors: `/home/matt/project-ledger/output/` and `/central/repos/active/homelab/docs/ledgers/projects-ledger.md`. +- Canonical mirror: `/central/repos/active/homelab/docs/ledgers/projects-ledger.md`. + +## Summary - Entries: 163 +- Unique project keys: 160 +- Machines covered: 3 (ai-server, matthews-macbook-air-2, matty-pc) +- Shared/synced: 104 +- Local: 92 - Git repos: 61 - Obsidian vaults: 42 -- Shared/synced: 104 +- Git + Obsidian: 27 > `Last Push` uses `last_push_at` from the sidecar when available; otherwise it falls back to the newest local remote-ref timestamp. -## Scan coverage and gaps +## What changed in this refresh + +- Refreshed the project-ledger scan at 2026-05-23T11:19:56+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. +- No new project roots or repo families surfaced in this pass; the refresh updated live timestamps and preserved the existing coverage set. +- The four MacBook mirror roots remain in the canonical scan set. -**MacBook mirror roots scanned this refresh:** -- `matthews-macbook-air-2:hermes-paperclip-adapter` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter` -- `matthews-macbook-air-2:higgsfield-agent-project` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project` -- `matthews-macbook-air-2:homelab` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab` -- `matthews-macbook-air-2:local-deep-research` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research` +## Known gaps / unscanned roots -**Configured roots:** -- `central-apps` — `/central/repos/apps` — present (children) -- `central-infra` — `/central/repos/infra` — present (git_repos) -- `central-services` — `/central/services` — present (children) -- `central-git` — `/central/git` — present (git_repos) -- `central-projects` — `/central/projects` — present (children) -- `central-active` — `/central/repos/active` — present (children) -- `proxy-lead` — `/central/proxy-lead` — present (self) -- `white-rabbit` — `/central/white-rabbit` — present (self) -- `project-ledger` — `/home/matt/project-ledger` — present (self) -- `matthews-macbook-air-2:hermes-paperclip-adapter` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter` — present (self) -- `matthews-macbook-air-2:higgsfield-agent-project` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project` — present (self) -- `matthews-macbook-air-2:homelab` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab` — present (self) -- `matthews-macbook-air-2:local-deep-research` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research` — present (self) -- `matty-pc` — `/central/registry/inventories/matty-pc-documents` — present (inventory_policy) -- `google-drive-policy` — `/home/matt/GoogleDrive` — present (inventory_policy) -- `opt-homelab` — `/opt/homelab` — present (children) -- `backup-20260416-repos` — `/central/archive/root-backups/central.root-backup-20260416T012657Z/repos` — present (git_repos) +- None detected in the configured scan roots. -**Known gaps / inaccessible roots:** none detected in configured scan roots. +## Project index -| Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push | -| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| Homelab Agent Platform | git | shared | yes | | 2026-05-22T18:00:57+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-22T11:28:24-06:00 | -| Project Ledger | git | shared | yes | | 2026-05-22T17:02:30+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-22T17:03:35+00:00 | -| README.md - White Rabbit | git | shared | yes | | 2026-05-22T06:35:46+00:00 | [README](../../../../central/proxy-lead/README.md) | [url](https://github.com/mschwar/proxy-lead.git) | proxy-lead | 2026-05-22T06:19:50+00:00 | -| Higgsfield Agent Project | directory | local | | | 2026-05-21T22:23:02+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project/README.md) | [higgsfield-agent-project](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project) | higgsfield-agent-project | | -| Local Deep Research | git | shared | yes | | 2026-05-21T21:48:35+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research/README.md) | [url](https://github.com/LearningCircuit/local-deep-research.git) | local-deep-research | 2026-05-08T00:31:16+00:00 | -| OpenClaw Meta Research | notes | local | | | 2026-05-21T06:00:02+00:00 | [README](../../../../central/projects/openclaw-meta-research/README.md) | [openclaw-meta-research](../../../../central/projects/openclaw-meta-research) | openclaw-meta-research | | -| Open Higgsfield AI — Open-Source Alternative to Higgsfield AI | directory | local | | | 2026-05-21T05:44:44+00:00 | [README](../../../../central/repos/apps/Open-Higgsfield-AI-main/README.md) | [Open-Higgsfield-AI-main](../../../../central/repos/apps/Open-Higgsfield-AI-main) | Open-Higgsfield-AI-main | | -| Homelab Agent Platform | git | shared | yes | | 2026-05-21T05:40:28+00:00 | [README](../../../../central/repos/infra/homelab-repo/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-04-16T17:29:52+00:00 | -| Slop Cannon Agent OS | git | shared | yes | | 2026-05-21T00:32:26+00:00 | [README](../../../../central/repos/active/agent-os/README.md) | [url](https://github.com/mschwar/agent-os.git) | agent-os | 2026-05-21T00:33:26+00:00 | -| white-rabbit | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/white-rabbit) | white-rabbit | | -| url-collection | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/url-collection) | url-collection | | -| toned | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/toned) | toned | | -| substrate | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/substrate) | substrate | | -| song-clean | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/song-clean) | song-clean | | -| slopvault-sessions | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/slopvault-sessions) | slopvault-sessions | | -| slopvault | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/slopvault) | slopvault | | -| scrollytelling | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/scrollytelling) | scrollytelling | | -| reality-ledger | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/reality-ledger) | reality-ledger | | -| prompt-refinery | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/prompt-refinery) | prompt-refinery | | -| project-ledger | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/project-ledger) | project-ledger | | -| project-eidos | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/project-eidos) | project-eidos | | -| orgatlas | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/orgatlas) | orgatlas | | -| Open-Higgsfield-AI | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/Open-Higgsfield-AI) | Open-Higgsfield-AI | | -| Obsidian Vault | obsidian | local | | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/Obsidian%20Vault) | Obsidian Vault | | -| misc-docs | obsidian | local | | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/misc-docs) | misc-docs | | -| lee-grapple-hook | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/lee-grapple-hook) | lee-grapple-hook | | -| lee-ai-learning | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/lee-ai-learning) | lee-ai-learning | | -| ledger | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/ledger) | ledger | | -| homelab | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/homelab) | homelab | | -| gstack-main | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/gstack-main) | gstack-main | | -| flow | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/flow) | flow | | -| elemental-inc | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/elemental-inc) | elemental-inc | | -| cpr | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/cpr) | cpr | | -| context-project | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/context-project) | context-project | | -| common-project | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/common-project) | common-project | | -| civstrate | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/civstrate) | civstrate | | -| BitNet | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/BitNet) | BitNet | | -| bahai-consultation-guide | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/bahai-consultation-guide) | bahai-consultation-guide | | -| bahai-9yr-plan-kb | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/bahai-9yr-plan-kb) | bahai-9yr-plan-kb | | -| ai-field-briefing | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/ai-field-briefing) | ai-field-briefing | | -| agent-os | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/agent-os) | agent-os | | -| 2026.TSLE.TEAM_internal-MS | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/2026.TSLE.TEAM_internal-MS) | 2026.TSLE.TEAM_internal-MS | | -| White Rabbit v2 | git | shared | yes | | 2026-05-19T20:17:42+00:00 | [README](../../../../central/repos/active/white-rabbit/README.md) | [url](https://github.com/mschwar/white-rabbit.git) | white-rabbit | 2026-05-19T13:24:27-06:00 | -| LLM Council | directory | local | | | 2026-05-19T16:25:04+00:00 | [README](../../../../central/repos/apps/llm-council-master/README.md) | [llm-council-master](../../../../central/repos/apps/llm-council-master) | llm-council-master | | -| Homelab Agent Platform | git | shared | yes | | 2026-05-19T03:14:59+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-04-20T23:27:22-06:00 | -| Model Context Protocol servers | git | shared | yes | | 2026-05-19T00:43:20+00:00 | [README](../../../../central/services/mcp-servers/README.md) | [url](https://github.com/modelcontextprotocol/servers.git) | servers | 2026-04-14T11:12:18-04:00 | -| # Common Project: One Concept a Day | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/common-project/README.md) | [url](https://github.com/mschwar/common-project.git) | common-project | 2026-01-31T23:16:16-07:00 | -| White Rabbit | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/white-rabbit/README.md) | [url](https://github.com/mschwar/white-rabbit.git) | white-rabbit | 2026-05-09T13:21:28-06:00 | -| VibeCoding | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/VibeCoding/README.md) | [VibeCoding](../../../../central/repos/active/VibeCoding) | VibeCoding | | -| Turborepo starter | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/counterweight-tim/README.md) | [counterweight-tim](../../../../central/repos/active/counterweight-tim) | counterweight-tim | | -| Tsimane Oral Health Heatmap: A Data Visualization Project | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/data-visualization/README.md) | [url](https://github.com/mschwar/data-visualization.git) | data-visualization | 2026-02-16T13:50:17-07:00 | -| The Garden | git | local | yes | | 2026-05-19T00:19:56+00:00 | | [the_garden](../../../../central/git/the_garden) | the_garden | | -| Substrate | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/substrate.git) | substrate | 2026-02-16T13:50:23-07:00 | -| Song Clean | directory | local | | | 2026-05-19T00:19:56+00:00 | | [song-clean](../../../../central/projects/song-clean) | song-clean | | -| Sigil | directory | local | | | 2026-05-19T00:19:56+00:00 | | [sigil](../../../../central/projects/sigil) | sigil | | -| Scratch | notes | local | | | 2026-05-19T00:19:56+00:00 | | [scratch](../../../../central/projects/scratch) | scratch | | -| Repos | notes | local | | | 2026-05-19T00:19:56+00:00 | | [repos](../../../../central/projects/repos) | repos | | -| Reality Ledger | git | shared | yes | | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/reality-ledger.git) | reality-ledger | | -| Plots | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/plots/README.md) | [url](https://github.com/mschwar/plots.git) | plots | 2026-05-19T14:54:22-06:00 | -| Paper Repo | directory | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/paper-repo/README.md) | [paper-repo](../../../../central/projects/paper-repo) | paper-repo | | -| Notes | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [notes](../../../../central/projects/notes) | notes | | -| Northstar | directory | local | | | 2026-05-19T00:19:56+00:00 | | [northstar](../../../../central/projects/northstar) | northstar | | -| Mnemosyne | directory | local | | | 2026-05-19T00:19:56+00:00 | | [mnemosyne](../../../../central/projects/mnemosyne) | mnemosyne | | -| Lit | notes | local | | | 2026-05-19T00:19:56+00:00 | | [lit](../../../../central/projects/lit) | lit | | -| Lifestream | directory | local | | | 2026-05-19T00:19:56+00:00 | | [lifestream](../../../../central/projects/lifestream) | lifestream | | -| LetterOps | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/letters/README.md) | [url](https://github.com/mschwar/letters.git) | letters | 2026-02-16T13:50:31-07:00 | -| Isabel | directory | local | | | 2026-05-19T00:19:56+00:00 | | [isabel](../../../../central/projects/isabel) | isabel | | -| Interpret | directory | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/interpret/README.md) | [interpret](../../../../central/projects/interpret) | interpret | | -| Incubating | directory | local | | | 2026-05-19T00:19:56+00:00 | | [incubating](../../../../central/projects/incubating) | incubating | | -| Horizon Foundation Toolkit | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/foundation/README.md) | [foundation](../../../../central/projects/foundation) | foundation | | -| Hermes Maximization | directory | local | | | 2026-05-19T00:19:56+00:00 | | [hermes-maximization](../../../../central/projects/hermes-maximization) | hermes-maximization | | -| Greymatter | directory | local | | | 2026-05-19T00:19:56+00:00 | | [greymatter](../../../../central/projects/greymatter) | greymatter | | -| Entropy Project | directory | local | | | 2026-05-19T00:19:56+00:00 | | [entropy_project](../../../../central/projects/entropy_project) | entropy_project | | -| Directory Crawl: transcript_processing | directory | local | | | 2026-05-19T00:19:56+00:00 | | [transcript_processing](../../../../central/projects/transcript_processing) | transcript_processing | | -| Directory Crawl: reality-ledger | git | shared | yes | | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/reality-ledger.git) | reality-ledger | | -| Directory Crawl: email_processing | notes | local | | | 2026-05-19T00:19:56+00:00 | | [email_processing](../../../../central/projects/email_processing) | email_processing | | -| Directory Crawl: context-graph-engine | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [context-graph-engine](../../../../central/projects/context-graph-engine) | context-graph-engine | | -| ctx | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/context-project/README.md) | [url](https://github.com/mschwar/context-project.git) | context-project | 2026-03-22T16:08:27-06:00 | -| Csf | directory | local | | | 2026-05-19T00:19:56+00:00 | | [csf](../../../../central/projects/csf) | csf | | -| Convertwordto Pdf 1 | directory | local | | | 2026-05-19T00:19:56+00:00 | | [convertwordto-pdf-1](../../../../central/projects/convertwordto-pdf-1) | convertwordto-pdf-1 | | -| Constructive Understanding | directory | local | | | 2026-05-19T00:19:56+00:00 | | [constructive-understanding](../../../../central/projects/constructive-understanding) | constructive-understanding | | -| Completed | directory | local | | | 2026-05-19T00:19:56+00:00 | | [completed](../../../../central/projects/completed) | completed | | -| Common Projects | notes | local | | | 2026-05-19T00:19:56+00:00 | | [common-projects](../../../../central/projects/common-projects) | common-projects | | -| Coherence-Refinement Physics | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/coherence/README.md) | [coherence](../../../../central/projects/coherence) | coherence | | -| Coherence-Antigravity (Generative Physics) | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/coherence-antigravity/README.md) | [coherence-antigravity](../../../../central/projects/coherence-antigravity) | coherence-antigravity | | -| Cohere: CFF Validation Framework | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/cohere-dump/README.md) | [cohere-dump](../../../../central/projects/cohere-dump) | cohere-dump | | -| Codex Agent Visibility (Hardcoded) | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [structure](../../../../central/projects/structure) | structure | | -| Claw Code | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/claw-code/README.md) | [url](https://github.com/ultraworkers/claw-code.git) | claw-code | 2026-05-06T15:41:25+09:00 | -| Calc | notes | local | | | 2026-05-19T00:19:56+00:00 | | [calc](../../../../central/projects/calc) | calc | | -| Central Git test from Windows | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/test-repo/README.md) | [test-repo](../../../../central/repos/active/test-repo) | test-repo | | -| bible-homepage | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bible-homepage/README.md) | [url](https://github.com/mschwar/bible-homepage.git) | bible-homepage | 2026-02-16T13:50:12-07:00 | -| Bahá’í Daily Homepage | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bahai-homepage/README.md) | [url](https://github.com/mschwar/bahai-homepage.git) | bahai-homepage | 2026-02-07T19:15:10-06:00 | -| AI_SYSTEM_SPEC | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/braindump/README.md) | [braindump](../../../../central/projects/braindump) | braindump | | -| AI Compute "Phase Shift" Scrollytelling Visualization | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/scrollytelling/README.md) | [url](https://github.com/mschwar/scrollytelling.git) | scrollytelling | 2026-02-01T02:00:41-07:00 | -| AI Companion | git+obsidian | local | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bridgeai/README.md) | [bridgeai](../../../../central/repos/active/bridgeai) | bridgeai | | -| AGENTS.md - Your Workspace | git | local | yes | | 2026-05-19T00:19:56+00:00 | | [the_garden](../../../../central/repos/active/the_garden) | the_garden | | -| Agent Master Repository | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/agent-master-dump/README.md) | [agent-master-dump](../../../../central/projects/agent-master-dump) | agent-master-dump | | -| Active | directory | local | | | 2026-05-19T00:19:56+00:00 | | [active](../../../../central/projects/active) | active | | -| A Practical Guide to Baha'i Consultation | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bahai-consultation-guide/README.md) | [url](https://github.com/mschwar/bahai-consultation-guide.git) | bahai-consultation-guide | 2026-02-16T13:50:04-07:00 | -| A Garden of Wisdom | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/Garden-of-Wisdom/README.md) | [url](https://github.com/mschwar/Garden-of-Wisdom.git) | Garden-of-Wisdom | 2025-07-09T00:17:30-06:00 | -| paperclip | directory | shared | | | 2026-05-11T20:47:40+00:00 | | [url](gdrive://googledrive/paperclip) | paperclip | | -| backups | directory | shared | | | 2026-05-11T20:47:40+00:00 | | [url](gdrive://googledrive/paperclip/backups) | backups | | -| Paperclip Adapter for Hermes Agent | git | shared | yes | | 2026-05-07T06:58:56+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter/README.md) | [url](https://github.com/NousResearch/hermes-paperclip-adapter.git) | hermes-paperclip-adapter | 2026-04-03T22:44:23-07:00 | -| OMI | directory | shared | | | 2026-04-26T00:00:26+00:00 | | [url](gdrive://googledrive/OMI) | OMI | | -| Hermes ops workflows | directory | local | | | 2026-04-25T04:21:00+00:00 | [README](../../../../central/repos/active/hermes-ops-workflows/README.md) | [hermes-ops-workflows](../../../../central/repos/active/hermes-ops-workflows) | hermes-ops-workflows | | -| repos-other | git+obsidian | shared | yes | yes | 2026-04-20T23:24:24+00:00 | | [url](gdrive://googledrive/repos-other) | repos-other | | -| repos-MS | directory | shared | | | 2026-04-20T22:15:24+00:00 | | [url](gdrive://googledrive/repos-MS) | repos-MS | | -| What this is | git | shared | yes | | 2026-04-20T18:54:38+00:00 | [README](../../GoogleDrive/repos-other/claude-overhaul/README.md) | [url](gdrive://googledrive/repos-other/claude-overhaul) | claude-overhaul | 2026-03-24T00:51:41-06:00 | -| Projects | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects) | Projects | | -| LMNTL | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/LMNTL) | LMNTL | | -| legal | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/legal) | legal | | -| CV-Resume | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/CV-Resume) | CV-Resume | | -| EDI | obsidian | shared | | yes | 2026-04-20T18:38:33+00:00 | | [url](gdrive://googledrive/EDI) | EDI | | -| _EDI-stuff | directory | shared | | | 2026-04-20T18:37:55+00:00 | | [url](gdrive://googledrive/EDI/_EDI-stuff) | _EDI-stuff | | -| README.md | directory | shared | | | 2026-04-20T18:37:50+00:00 | [README](../../GoogleDrive/EDI/email-marketing/readme.md) | [url](gdrive://googledrive/EDI/email-marketing) | email-marketing | | -| Karina_Share | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/Karina_Share) | Karina_Share | | -| docs | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/docs) | docs | | -| assets | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/assets) | assets | | -| accounting | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/accounting) | accounting | | -| _archive | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/_archive) | _archive | | -| nano-build | obsidian | shared | | yes | 2026-04-20T02:51:28+00:00 | [README](../../GoogleDrive/repos-other/nano-build/README.md) | [url](gdrive://googledrive/repos-other/nano-build) | nano-build | | -| marketing-skills-main | directory | shared | | | 2026-04-17T01:43:54+00:00 | | [url](gdrive://googledrive/repos-other/marketing-skills-main) | marketing-skills-main | | -| gstack-main | directory | shared | | | 2026-04-17T01:43:54+00:00 | | [url](gdrive://googledrive/repos-other/gstack-main) | gstack-main | | -| AI Agents Platform | directory | local | | | 2026-04-16T16:32:29+00:00 | [README](../../../../central/repos/apps/ai-agents-platform/README.md) | [ai-agents-platform](../../../../central/repos/apps/ai-agents-platform) | ai-agents-platform | | -| ELEMENTAL | directory | shared | | | 2026-04-12T01:39:33+00:00 | | [url](gdrive://googledrive/EDI/ELEMENTAL) | ELEMENTAL | | -| EDI | obsidian | shared | | yes | 2026-03-24T02:58:56+00:00 | | [url](gdrive://googledrive/EDI/EDI) | EDI | | -| Content | directory | shared | | | 2026-03-24T02:58:56+00:00 | | [url](gdrive://googledrive/EDI/Content) | Content | | -| meetings | directory | shared | | | 2026-03-18T23:04:54+00:00 | | [url](gdrive://googledrive/EDI/meetings) | meetings | | -| sensiblewords-master | directory | shared | | | 2026-03-11T03:28:39+00:00 | [README](../../GoogleDrive/repos-other/sensiblewords-master/README.md) | [url](gdrive://googledrive/repos-other/sensiblewords-master) | sensiblewords-master | | -| | notes | local | | | 2026-03-03T14:50:16+00:00 | [README](../../../../central/repos/apps/open-notebook-main/README.md) | [open-notebook-main](../../../../central/repos/apps/open-notebook-main) | open-notebook-main | | -| _empty | notes | shared | | | 2026-02-27T17:32:34+00:00 | | [url](gdrive://googledrive/EDI/_empty) | _empty | | -| MATLAB Toolbox for Handling 2D and 3D FEM Meshes | directory | shared | | | 2026-02-27T00:46:36+00:00 | [README](../../GoogleDrive/repos-other/fem_mesh_matlab-master/README.md) | [url](gdrive://googledrive/repos-other/fem_mesh_matlab-master) | fem_mesh_matlab-master | | -| bahaiwritings | directory | local | | | 2026-02-20T18:19:22+00:00 | [README](../../../../central/repos/active/bahaiwritings-main/README.md) | [bahaiwritings-main](../../../../central/repos/active/bahaiwritings-main) | bahaiwritings-main | | -|
| directory | local | | | 2026-02-19T06:41:32+00:00 | [README](../../../../central/repos/active/consultlink---baha%27i-consultation-guide/README.md) | [consultlink---baha'i-consultation-guide](../../../../central/repos/active/consultlink---baha%27i-consultation-guide) | consultlink---baha'i-consultation-guide | | -| Design & Assets | directory | shared | | | 2026-01-22T20:01:58+00:00 | | [url](gdrive://googledrive/EDI/Design%20%26%20Assets) | Design & Assets | | -| Business Development & Partners | directory | shared | | | 2026-01-22T20:01:58+00:00 | | [url](gdrive://googledrive/EDI/Business%20Development%20%26%20Partners) | Business Development & Partners | | -| Strategy & Brand | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/Strategy%20%26%20Brand) | Strategy & Brand | | -| Product Testing & Compliance | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/Product%20Testing%20%26%20Compliance) | Product Testing & Compliance | | -| HR & Internships | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/HR%20%26%20Internships) | HR & Internships | | -| Sourcing & COGS | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Sourcing%20%26%20COGS) | Sourcing & COGS | | -| Operations & Culture | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Operations%20%26%20Culture) | Operations & Culture | | -| Customer Service | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Customer%20Service) | Customer Service | | -| Corporate & Legal | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Corporate%20%26%20Legal) | Corporate & Legal | | -| Prompts | directory | local | | | 2026-01-14T01:42:10+00:00 | [README](../../../../central/repos/active/prompts/README.md) | [prompts](../../../../central/repos/active/prompts) | prompts | | -| Agents | notes | local | | | 2026-01-13T16:40:38+00:00 | [README](../../../../central/repos/active/agents/README.md) | [agents](../../../../central/repos/active/agents) | agents | | -| vibe_brain | obsidian | local | | yes | 2026-01-13T16:33:47+00:00 | | [vibe_brain](../../../../central/repos/active/vibe_brain) | vibe_brain | | -| projects | notes | local | | | 2026-01-13T16:33:43+00:00 | | [projects](../../../../central/repos/active/projects) | projects | | -| Templates | directory | local | | | 2026-01-13T16:32:44+00:00 | [README](../../../../central/repos/active/templates/README.md) | [templates](../../../../central/repos/active/templates) | templates | | -| Protocols | directory | local | | | 2026-01-13T16:32:44+00:00 | [README](../../../../central/repos/active/protocols/README.md) | [protocols](../../../../central/repos/active/protocols) | protocols | | -| Workflows | notes | local | | | 2026-01-13T16:32:06+00:00 | [README](../../../../central/repos/active/workflows/README.md) | [workflows](../../../../central/repos/active/workflows) | workflows | | -| Tools | directory | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/tools/README.md) | [tools](../../../../central/repos/active/tools) | tools | | -| Contexts | notes | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/contexts/README.md) | [contexts](../../../../central/repos/active/contexts) | contexts | | -| Blueprints | directory | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/blueprints/README.md) | [blueprints](../../../../central/repos/active/blueprints) | blueprints | | -| agent runtime | obsidian | local | | yes | 2026-01-13T01:10:59+00:00 | | [agent runtime](../../../../central/repos/active/agent%20runtime) | agent runtime | | -| EDI - AI dumps | directory | shared | | | 2025-08-09T00:45:46+00:00 | | [url](gdrive://googledrive/EDI/EDI%20-%20AI%20dumps) | EDI - AI dumps | | -| Customer Database | directory | shared | | | 2025-08-09T00:45:46+00:00 | | [url](gdrive://googledrive/EDI/Customer%20Database) | Customer Database | | -| testimonials | directory | shared | | | 2025-06-11T20:25:01+00:00 | | [url](gdrive://googledrive/EDI/testimonials) | testimonials | | -| sales | directory | shared | | | 2025-06-11T20:22:14+00:00 | | [url](gdrive://googledrive/EDI/sales) | sales | | -| QC | directory | shared | | | 2025-06-10T01:59:02+00:00 | | [url](gdrive://googledrive/EDI/QC) | QC | | -| tracking | directory | shared | | | 2025-06-10T01:57:31+00:00 | | [url](gdrive://googledrive/EDI/tracking) | tracking | | -| market-research | directory | shared | | | 2025-06-10T01:54:56+00:00 | | [url](gdrive://googledrive/EDI/market-research) | market-research | | -| Financials | directory | shared | | | 2024-11-12T15:43:43+00:00 | | [url](gdrive://googledrive/EDI/Financials) | Financials | | -| Elemental x FFF docs | directory | shared | | | 2024-05-18T20:12:09+00:00 | | [url](gdrive://googledrive/EDI/Elemental%20x%20FFF%20docs) | Elemental x FFF docs | | +| project_key | display_name | tags | status | notes | path | node/source | last touch | +| --- | --- | --- | --- | --- | --- | --- | --- | +| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T06:00:55+00:00 | +| openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-23T06:00:24+00:00 | +| github.com/mschwar/project-ledger | Project Ledger | | | This project builds a ledger for mixed project roots: plain directories, git repos, and Obsidian vaults. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T05:12:54+00:00 | +| github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | +| higgsfield-agent-project | Higgsfield Agent Project | higgsfield, agent-workspace, pipeline | active | Agent-managed Higgsfield production pipeline with inbox-driven ingestion and dated batch processing. | /central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project | matthews-macbook-air-2 / matthews-macbook-air-2:higgsfield-agent-project | 2026-05-21T22:23:02+00:00 | +| github.com/LearningCircuit/local-deep-research | Local Deep Research | | |
| /central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research | matthews-macbook-air-2 / matthews-macbook-air-2:local-deep-research | 2026-05-21T21:48:35+00:00 | +| open-higgsfield-ai-open-source-alternative-to-higgsfield-ai | Open Higgsfield AI — Open-Source Alternative to Higgsfield AI | | | > The free, open-source alternative to Higgsfield AI. Generate AI images and videos using 200+ state-of-the-art models — without the closed ecosystem or subscription fees. | /central/repos/apps/Open-Higgsfield-AI-main | ai-server / central-apps | 2026-05-21T05:44:44+00:00 | +| homelab | Homelab Agent Platform | git, shared, homelab | active | A local-first AI platform running across 7 machines (2 Mac laptops, 4 Windows desktops, 1 Ubuntu Linux hub), unified by Tailscale into a private mesh network with centralized storage, compute routing, and LLM inference. | /central/repos/infra/homelab-repo | ai-server / central-infra | 2026-05-21T05:40:28+00:00 | +| github.com/mschwar/agent-os | Slop Cannon Agent OS | | | Slop Cannon is a repo-local operating system for agent-first feature buildout. | /central/repos/active/agent-os | ai-server / central-active | 2026-05-21T00:32:26+00:00 | +| google-drive:white-rabbit | white-rabbit | google-drive, white-rabbit, repo_like | | Repository with git, README, and Obsidian signals. | matty-pc:white-rabbit | matty-pc / matty-pc:white-rabbit | 2026-05-20T01:57:31+00:00 | +| google-drive:url-collection | url-collection | google-drive, url-collection, project_roots | | Collection workspace with README signal. | matty-pc:url-collection | matty-pc / matty-pc:url-collection | 2026-05-20T01:57:31+00:00 | +| google-drive:toned | toned | google-drive, toned, repo_like | | Project repository with git and README signals. | matty-pc:toned | matty-pc / matty-pc:toned | 2026-05-20T01:57:31+00:00 | +| google-drive:substrate | substrate | google-drive, substrate, repo_like | | Repository with git, README, and Obsidian signals. | matty-pc:substrate | matty-pc / matty-pc:substrate | 2026-05-20T01:57:31+00:00 | +| google-drive:song-clean | song-clean | google-drive, song-clean, repo_like | | Project repository with git and README signals. | matty-pc:song-clean | matty-pc / matty-pc:song-clean | 2026-05-20T01:57:31+00:00 | +| google-drive:slopvault-sessions | slopvault-sessions | google-drive, slopvault-sessions, repo_like | | Session workspace with git and README signals. | matty-pc:slopvault-sessions | matty-pc / matty-pc:slopvault-sessions | 2026-05-20T01:57:31+00:00 | +| google-drive:slopvault | slopvault | google-drive, slopvault, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:slopvault | matty-pc / matty-pc:slopvault | 2026-05-20T01:57:31+00:00 | +| google-drive:scrollytelling | scrollytelling | google-drive, scrollytelling, repo_like | | Repository with git, README, and Obsidian signals. | matty-pc:scrollytelling | matty-pc / matty-pc:scrollytelling | 2026-05-20T01:57:31+00:00 | +| google-drive:reality-ledger | reality-ledger | google-drive, reality-ledger, repo_like | | Repository with git signal. | matty-pc:reality-ledger | matty-pc / matty-pc:reality-ledger | 2026-05-20T01:57:31+00:00 | +| google-drive:prompt-refinery | prompt-refinery | google-drive, prompt-refinery, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:prompt-refinery | matty-pc / matty-pc:prompt-refinery | 2026-05-20T01:57:31+00:00 | +| google-drive:project-ledger | project-ledger | google-drive, project-ledger, repo_like | | Project-ledger repository with git and README signals. | matty-pc:project-ledger | matty-pc / matty-pc:project-ledger | 2026-05-20T01:57:31+00:00 | +| google-drive:project-eidos | project-eidos | google-drive, project-eidos, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:project-eidos | matty-pc / matty-pc:project-eidos | 2026-05-20T01:57:31+00:00 | +| google-drive:orgatlas | orgatlas | google-drive, orgatlas, repo_like | | Org atlas repository with git, README, and Obsidian signals. | matty-pc:orgatlas | matty-pc / matty-pc:orgatlas | 2026-05-20T01:57:31+00:00 | +| google-drive:open-higgsfield-ai | Open-Higgsfield-AI | google-drive, Open-Higgsfield-AI, repo_like | | Project repository with git and README signals. | matty-pc:Open-Higgsfield-AI | matty-pc / matty-pc:Open-Higgsfield-AI | 2026-05-20T01:57:31+00:00 | +| google-drive:obsidian vault | Obsidian Vault | google-drive, Obsidian Vault, project_roots | | Obsidian vault with notes-only signals. | matty-pc:Obsidian Vault | matty-pc / matty-pc:Obsidian Vault | 2026-05-20T01:57:31+00:00 | +| google-drive:misc-docs | misc-docs | google-drive, misc-docs, project_roots | | Documentation vault signal without git metadata. | matty-pc:misc-docs | matty-pc / matty-pc:misc-docs | 2026-05-20T01:57:31+00:00 | +| google-drive:lee-grapple-hook | lee-grapple-hook | google-drive, lee-grapple-hook, repo_like | | Repository with git and README signals. | matty-pc:lee-grapple-hook | matty-pc / matty-pc:lee-grapple-hook | 2026-05-20T01:57:31+00:00 | +| google-drive:lee-ai-learning | lee-ai-learning | google-drive, lee-ai-learning, project_roots | | Learning workspace with README signal. | matty-pc:lee-ai-learning | matty-pc / matty-pc:lee-ai-learning | 2026-05-20T01:57:31+00:00 | +| google-drive:ledger | ledger | google-drive, ledger, repo_like | | Ledger repository with git, README, and Obsidian signals. | matty-pc:ledger | matty-pc / matty-pc:ledger | 2026-05-20T01:57:31+00:00 | +| google-drive:homelab | homelab | google-drive, homelab, repo_like | | Homelab repository with git, README, and Obsidian signals. | matty-pc:homelab | matty-pc / matty-pc:homelab | 2026-05-20T01:57:31+00:00 | +| google-drive:gstack-main | gstack-main | google-drive, gstack-main, project_roots | | Repository-like project folder with README signal. | matty-pc:gstack-main | matty-pc / matty-pc:gstack-main | 2026-05-20T01:57:31+00:00 | +| google-drive:flow | flow | google-drive, flow, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:flow | matty-pc / matty-pc:flow | 2026-05-20T01:57:31+00:00 | +| google-drive:elemental-inc | elemental-inc | google-drive, elemental-inc, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:elemental-inc | matty-pc / matty-pc:elemental-inc | 2026-05-20T01:57:31+00:00 | +| google-drive:cpr | cpr | google-drive, cpr, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:cpr | matty-pc / matty-pc:cpr | 2026-05-20T01:57:31+00:00 | +| google-drive:context-project | context-project | google-drive, context-project, repo_like | | Context project repository with git, README, and Obsidian signals. | matty-pc:context-project | matty-pc / matty-pc:context-project | 2026-05-20T01:57:31+00:00 | +| google-drive:common-project | common-project | google-drive, common-project, repo_like | | Common project repository with git, README, and Obsidian signals. | matty-pc:common-project | matty-pc / matty-pc:common-project | 2026-05-20T01:57:31+00:00 | +| google-drive:civstrate | civstrate | google-drive, civstrate, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:civstrate | matty-pc / matty-pc:civstrate | 2026-05-20T01:57:31+00:00 | +| google-drive:bitnet | BitNet | google-drive, BitNet, project_roots | | Project root with git and README signals. | matty-pc:BitNet | matty-pc / matty-pc:BitNet | 2026-05-20T01:57:31+00:00 | +| google-drive:bahai-consultation-guide | bahai-consultation-guide | google-drive, bahai-consultation-guide, repo_like | | Consultation guide repository with git and Obsidian signals. | matty-pc:bahai-consultation-guide | matty-pc / matty-pc:bahai-consultation-guide | 2026-05-20T01:57:31+00:00 | +| google-drive:bahai-9yr-plan-kb | bahai-9yr-plan-kb | google-drive, bahai-9yr-plan-kb, project_roots | | Named knowledge/project root with README signal. | matty-pc:bahai-9yr-plan-kb | matty-pc / matty-pc:bahai-9yr-plan-kb | 2026-05-20T01:57:31+00:00 | +| google-drive:ai-field-briefing | ai-field-briefing | google-drive, ai-field-briefing, repo_like | | Briefing workspace with git, README, and Obsidian signals. | matty-pc:ai-field-briefing | matty-pc / matty-pc:ai-field-briefing | 2026-05-20T01:57:31+00:00 | +| google-drive:agent-os | agent-os | google-drive, agent-os, repo_like | | Agent operating-system style workspace with git, README, and Obsidian signals. | matty-pc:agent-os | matty-pc / matty-pc:agent-os | 2026-05-20T01:57:31+00:00 | +| google-drive:2026.tsle.team_internal-ms | 2026.TSLE.TEAM_internal-MS | google-drive, 2026.TSLE.TEAM_internal-MS, repo_like | | Internal team workspace with git and Obsidian signals. | matty-pc:2026.TSLE.TEAM_internal-MS | matty-pc / matty-pc:2026.TSLE.TEAM_internal-MS | 2026-05-20T01:57:31+00:00 | +| github.com/mschwar/white-rabbit | White Rabbit v2 | | | Internal-first B2B lead research tool for Matt, Thomas, and Lee. | /central/repos/active/white-rabbit | ai-server / central-active | 2026-05-19T20:17:42+00:00 | +| llm-council | LLM Council | | | ![llmcouncil](header.jpg) | /central/repos/apps/llm-council-master | ai-server / central-apps | 2026-05-19T16:25:04+00:00 | +| github.com/mschwar/homelab | Homelab Agent Platform | | | A local-first AI platform running across 7 machines (2 Mac laptops, 4 Windows desktops, 1 Ubuntu Linux hub), unified by Tailscale into a private mesh network with centralized storage, compute routing, and LLM inference. | /central/registry/mirrors/matthews-macbook-air-2/Documents/homelab | matthews-macbook-air-2 / matthews-macbook-air-2:homelab | 2026-05-19T03:14:59+00:00 | +| github.com/modelcontextprotocol/servers | Model Context Protocol servers | git, shared, mcp | active | This repository is a collection of reference implementations for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP), as well as references to community-built servers and additional resources. | /central/services/mcp-servers | ai-server / central-services | 2026-05-19T00:43:20+00:00 | +| common-project | # Common Project: One Concept a Day | dirty, git | active | [Visit the Website](https://mschwar.github.io/common-project/) \| Progress: 5 of 50 concepts completed | /central/repos/active/common-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| white-rabbit | White Rabbit | clean, git | active | Internal-first B2B prospecting workbench. Three operators (Matt, Thomas, Lee). Self-serve from day 1. Recipes, not lists. | /central/white-rabbit | ai-server / white-rabbit | 2026-05-19T00:19:56+00:00 | +| vibecoding | VibeCoding | dirty, git, vibe | active | A comprehensive AI-driven development framework for building projects with agentic AI assistance. Provides project-agnostic agents, workflows, context graphs, protocols, and templates. | /central/repos/active/VibeCoding | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| counterweight-tim | Turborepo starter | dirty, git | active | This Turborepo starter is maintained by the Turborepo core team. | /central/repos/active/counterweight-tim | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| data-visualization | Tsimane Oral Health Heatmap: A Data Visualization Project | data, dirty, git | active | This repository showcases a data visualization project designed to represent the complete oral health status of the Tsimane population of Bolivia. The heatmap synthesizes over 32,000 data points from 1,176 individuals into a single, intuiti | /central/repos/active/data-visualization | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| the-garden | The Garden | dirty, garden, git | active | git, markdown:7, project-files, sidecar | /central/git/the_garden | ai-server / central-git | 2026-05-19T00:19:56+00:00 | +| substrate | Substrate | dirty, git | active | code:25, docs+code, git, markdown:13, obsidian, project-files, readme, sidecar | /central/repos/active/substrate | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| song-clean | Song Clean | project | active | sidecar | /central/projects/song-clean | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| sigil | Sigil | project, sigil | active | sidecar | /central/projects/sigil | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| scratch | Scratch | collection | active | markdown:8, sidecar | /central/projects/scratch | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| repos | Repos | collection | active | markdown:33, project-files, readme, sidecar | /central/projects/repos | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| reality-ledger | Reality Ledger | dirty, git, ledger, reality | active | git, sidecar | /central/repos/active/reality-ledger | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| plots | Plots | dirty, git, plot | active | Interactive timelines of exponential tech progress – showing growth, compression, and scaling laws enabling modern AI. | /central/repos/active/plots | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| paper-repo | Paper Repo | paper, project | active | Flat markdown repository for scientific/white papers with linked metadata in SQLite. | /central/projects/paper-repo | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| notes | Notes | collection, notes | active | markdown:3014, obsidian, sidecar | /central/projects/notes | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| northstar | Northstar | northstar, project | active | sidecar | /central/projects/northstar | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| mnemosyne | Mnemosyne | mnemosyne, project | active | sidecar | /central/projects/mnemosyne | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| lit | Lit | project | active | sidecar | /central/projects/lit | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| lifestream | Lifestream | project | active | sidecar | /central/projects/lifestream | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| letters | LetterOps | dirty, git | active | Local-first document intelligence system for managing Bahá’í letters. See canonical-docs-v2.md for the authoritative PRD, flows, tech stack, and operating rules. | /central/repos/active/letters | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| isabel | Isabel | project | active | sidecar | /central/projects/isabel | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| interpret | Interpret | interpret, project | active | Local-first prompt interpretation and delegation system for analyzing codebases at scale. | /central/projects/interpret | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| incubating | Incubating | collection | active | sidecar | /central/projects/incubating | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| foundation | Horizon Foundation Toolkit | project | active | This repository contains the Horizon protocol, workflow docs, and supporting scripts for multi-agent prompt runs. | /central/projects/foundation | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| hermes-maximization | Hermes Maximization | project | active | sidecar | /central/projects/hermes-maximization | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| greymatter | Greymatter | greymatter, project | active | sidecar | /central/projects/greymatter | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| entropy-project | Entropy Project | project | active | sidecar | /central/projects/entropy_project | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| transcript-processing | Directory Crawl: transcript_processing | project, transcript | active | code:4, docs+code, sidecar | /central/projects/transcript_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| reality-ledger | Directory Crawl: reality-ledger | dirty, git, ledger, reality | active | git, markdown:10, project-files, readme, sidecar | /central/projects/reality-ledger | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| email-processing | Directory Crawl: email_processing | email, project | active | docs+code, markdown:206, sidecar | /central/projects/email_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| context-graph-engine | Directory Crawl: context-graph-engine | graph, project | active | markdown:16, obsidian, project-files, sidecar | /central/projects/context-graph-engine | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| context-project | ctx | dirty, git | active | Filesystem-native context layer for AI agents. | /central/repos/active/context-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| csf | Csf | project | active | sidecar | /central/projects/csf | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| convertwordto-pdf-1 | Convertwordto Pdf 1 | project | active | sidecar | /central/projects/convertwordto-pdf-1 | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| constructive-understanding | Constructive Understanding | project | active | sidecar | /central/projects/constructive-understanding | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| completed | Completed | collection | active | sidecar | /central/projects/completed | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| common-projects | Common Projects | project | active | docs+code, markdown:7, project-files, readme, sidecar | /central/projects/common-projects | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| coherence | Coherence-Refinement Physics | coherence, project | active | Axiom Framework: v5.2 (AXIOMS.txt) | /central/projects/coherence | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| coherence-antigravity | Coherence-Antigravity (Generative Physics) | coherence, project | active | Status: Experimental (v5.1 "TikTok v3 Aligned") | /central/projects/coherence-antigravity | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| cohere-dump | Cohere: CFF Validation Framework | project | active | A production-grade theoretical physics research framework for validating the Causal Futures Framework (CFF) hypothesis on measure collapse and quantum-like phase transitions. | /central/projects/cohere-dump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| structure | Codex Agent Visibility (Hardcoded) | project | active | code:3, docs+code, markdown:9, obsidian, project-files, readme, sidecar | /central/projects/structure | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| claw-code | Claw Code | dirty, git | active |

| /central/repos/active/claw-code | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| calc | Calc | calc, project | active | sidecar | /central/projects/calc | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| test-repo | Central Git test from Windows | clean, git | active | | /central/repos/active/test-repo | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| bible-homepage | bible-homepage | bible, dirty, git | active | A minimalist personal homepage that displays a daily Bible verse each time you open your browser. It is designed to support scriptural reflection and a centered start to your day. | /central/repos/active/bible-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| bahai-homepage | Bahá’í Daily Homepage | bahai, dirty, git | active | A minimalist personal homepage that displays the current Badíʿ date and a daily selection from The Hidden Words by Bahá’u’lláh. It is designed to support spiritual reflection and a centered start to digital interactions. | /central/repos/active/bahai-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| braindump | AI_SYSTEM_SPEC | brain, project | active | A project-agnostic, auditable, agent-based AI system specification designed for clarity, scalability, and epistemic hygiene. | /central/projects/braindump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| scrollytelling | AI Compute "Phase Shift" Scrollytelling Visualization | dirty, git | active | > An interactive data visualization proving AI training compute broke Moore's Law in 2012. | /central/repos/active/scrollytelling | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| bridgeai | AI Companion | dirty, git | active | A mobile app that onboards professionals into practical AI usage through quick actions, a guided chatbot, and a lightweight library. | /central/repos/active/bridgeai | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| the-garden | AGENTS.md - Your Workspace | dirty, garden, git | active | git, markdown:8, project-files, sidecar | /central/repos/active/the_garden | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| agent-master-dump | Agent Master Repository | project | active | A comprehensive collection of 99 specialized AI agents organized into 69 plugins across 21 categories, with 112 modular skills for Claude Code workflow orchestration. | /central/projects/agent-master-dump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| active | Active | collection | active | sidecar | /central/projects/active | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| bahai-consultation-guide | A Practical Guide to Baha'i Consultation | bahai, dirty, git | active | Welcome to the Baha'i Consultation Guide! | /central/repos/active/bahai-consultation-guide | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| garden-of-wisdom | A Garden of Wisdom | dirty, garden, git | active | This is a personal collection of impactful quotes from various world religions and philosophies, curated for memorization and reflection. | /central/repos/active/Garden-of-Wisdom | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| google-drive:paperclip | paperclip | google-drive, paperclip, project_roots | active | Named project root that should surface in project-ledger ingestion before broader content extraction. | /home/matt/GoogleDrive/paperclip | ai-server / google-drive-policy:paperclip | 2026-05-11T20:47:40+00:00 | +| google-drive:paperclip/backups | backups | google-drive, paperclip, project_roots | | Named project root that should surface in project-ledger ingestion before broader content extraction. | /home/matt/GoogleDrive/paperclip/backups | ai-server / google-drive-policy:paperclip | 2026-05-11T20:47:40+00:00 | +| github.com/NousResearch/hermes-paperclip-adapter | Paperclip Adapter for Hermes Agent | | | A [Paperclip](https://paperclip.ing) adapter that lets you run [Hermes Agent](https://github.com/NousResearch/hermes-agent) as a managed employee in a Paperclip company. | /central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter | matthews-macbook-air-2 / matthews-macbook-air-2:hermes-paperclip-adapter | 2026-05-07T06:58:56+00:00 | +| google-drive:omi | OMI | google-drive, OMI, project_roots, timed-out-crawl | active | Named initiative root; treat as a project surface even though the first bounded crawl timed out. | /home/matt/GoogleDrive/OMI | ai-server / google-drive-policy:OMI | 2026-04-26T00:00:26+00:00 | +| hermes-ops-workflows | Hermes ops workflows | | | Small durable wrappers for repeated Hermes/local-ops workflows. | /central/repos/active/hermes-ops-workflows | ai-server / central-active | 2026-04-25T04:21:00+00:00 | +| google-drive:repos-other | repos-other | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other | ai-server / google-drive-policy:repos-other | 2026-04-20T23:24:24+00:00 | +| google-drive:repos-ms | repos-MS | google-drive, repos-MS, repo_like | | Repository-like root; classify and promote repo/project subroots before any expensive content ingestion. | /home/matt/GoogleDrive/repos-MS | ai-server / google-drive-policy:repos-MS | 2026-04-20T22:15:24+00:00 | +| github.com/mschwar/claude-overhaul | What this is | google-drive, repos-other, repo_like | | A versioned, deployable configuration for Claude Code's global ~/.claude/ directory. Every file in this repo maps to a file that gets deployed to ~/.claude/. The goal: every Claude Code session — regardless of project, language, or task — s | /home/matt/GoogleDrive/repos-other/claude-overhaul | ai-server / google-drive-policy:repos-other | 2026-04-20T18:54:38+00:00 | +| google-drive:projects | Projects | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | +| google-drive:projects/lmntl | LMNTL | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/LMNTL | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | +| google-drive:projects/legal | legal | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/legal | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | +| google-drive:projects/cv-resume | CV-Resume | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/CV-Resume | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | +| google-drive:edi | EDI | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI | ai-server / google-drive-policy:EDI | 2026-04-20T18:38:33+00:00 | +| google-drive:edi/_edi-stuff | _EDI-stuff | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/_EDI-stuff | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:55+00:00 | +| google-drive:edi/email-marketing | README.md | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/email-marketing | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | +| google-drive:edi/karina_share | Karina_Share | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Karina_Share | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | +| google-drive:edi/docs | docs | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/docs | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | +| google-drive:edi/assets | assets | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/assets | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | +| google-drive:edi/accounting | accounting | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/accounting | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | +| google-drive:edi/_archive | _archive | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/_archive | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | +| google-drive:repos-other/nano-build | nano-build | google-drive, repos-other, repo_like | | Personal learning vault for ML/deep learning, centered on Andrej Karpathy's | /home/matt/GoogleDrive/repos-other/nano-build | ai-server / google-drive-policy:repos-other | 2026-04-20T02:51:28+00:00 | +| google-drive:repos-other/marketing-skills-main | marketing-skills-main | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other/marketing-skills-main | ai-server / google-drive-policy:repos-other | 2026-04-17T01:43:54+00:00 | +| google-drive:repos-other/gstack-main | gstack-main | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other/gstack-main | ai-server / google-drive-policy:repos-other | 2026-04-17T01:43:54+00:00 | +| ai-agents-platform | AI Agents Platform | | | A unified deployment platform for LangGraph and CrewAI agents, exposed via a FastAPI service and containerized with Docker. | /central/repos/apps/ai-agents-platform | ai-server / central-apps | 2026-04-16T16:32:29+00:00 | +| google-drive:edi/elemental | ELEMENTAL | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/ELEMENTAL | ai-server / google-drive-policy:EDI | 2026-04-12T01:39:33+00:00 | +| google-drive:edi/edi | EDI | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/EDI | ai-server / google-drive-policy:EDI | 2026-03-24T02:58:56+00:00 | +| google-drive:edi/content | Content | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Content | ai-server / google-drive-policy:EDI | 2026-03-24T02:58:56+00:00 | +| google-drive:edi/meetings | meetings | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/meetings | ai-server / google-drive-policy:EDI | 2026-03-18T23:04:54+00:00 | +| google-drive:repos-other/sensiblewords-master | sensiblewords-master | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other/sensiblewords-master | ai-server / google-drive-policy:repos-other | 2026-03-11T03:28:39+00:00 | +| a-id-readme-top-a | | | | | /central/repos/apps/open-notebook-main | ai-server / central-apps | 2026-03-03T14:50:16+00:00 | +| google-drive:edi/_empty | _empty | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/_empty | ai-server / google-drive-policy:EDI | 2026-02-27T17:32:34+00:00 | +| google-drive:repos-other/fem_mesh_matlab-master | MATLAB Toolbox for Handling 2D and 3D FEM Meshes | google-drive, repos-other, repo_like | | ![license - BSD](https://img.shields.io/badge/license-BSD-green) | /home/matt/GoogleDrive/repos-other/fem_mesh_matlab-master | ai-server / google-drive-policy:repos-other | 2026-02-27T00:46:36+00:00 | +| bahaiwritings | bahaiwritings | | | The Bahá'í Writings in JSON format with supporting JSON Schema | /central/repos/active/bahaiwritings-main | ai-server / central-active | 2026-02-20T18:19:22+00:00 | +| div-align-center |

| | | GHBanner | /central/repos/active/consultlink---baha'i-consultation-guide | ai-server / central-active | 2026-02-19T06:41:32+00:00 | +| google-drive:edi/design & assets | Design & Assets | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Design & Assets | ai-server / google-drive-policy:EDI | 2026-01-22T20:01:58+00:00 | +| google-drive:edi/business development & partners | Business Development & Partners | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Business Development & Partners | ai-server / google-drive-policy:EDI | 2026-01-22T20:01:58+00:00 | +| google-drive:edi/strategy & brand | Strategy & Brand | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Strategy & Brand | ai-server / google-drive-policy:EDI | 2026-01-22T20:00:54+00:00 | +| google-drive:edi/product testing & compliance | Product Testing & Compliance | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Product Testing & Compliance | ai-server / google-drive-policy:EDI | 2026-01-22T20:00:54+00:00 | +| google-drive:edi/hr & internships | HR & Internships | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/HR & Internships | ai-server / google-drive-policy:EDI | 2026-01-22T20:00:54+00:00 | +| google-drive:edi/sourcing & cogs | Sourcing & COGS | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Sourcing & COGS | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | +| google-drive:edi/operations & culture | Operations & Culture | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Operations & Culture | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | +| google-drive:edi/customer service | Customer Service | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Customer Service | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | +| google-drive:edi/corporate & legal | Corporate & Legal | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Corporate & Legal | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | +| prompts | Prompts | | | Project-agnostic prompts that apply across all VibeCoding projects. | /central/repos/active/prompts | ai-server / central-active | 2026-01-14T01:42:10+00:00 | +| agents | Agents | | | Project-agnostic agent definitions for VibeCoding. | /central/repos/active/agents | ai-server / central-active | 2026-01-13T16:40:38+00:00 | +| vibe_brain | vibe_brain | | | obsidian | /central/repos/active/vibe_brain | ai-server / central-active | 2026-01-13T16:33:47+00:00 | +| projects | projects | | | docs+code, project-files, readme | /central/repos/active/projects | ai-server / central-active | 2026-01-13T16:33:43+00:00 | +| templates | Templates | | | Project-agnostic file templates for consistent documentation and workflows. | /central/repos/active/templates | ai-server / central-active | 2026-01-13T16:32:44+00:00 | +| protocols | Protocols | | | Project-agnostic standards and conventions for consistent development practices. | /central/repos/active/protocols | ai-server / central-active | 2026-01-13T16:32:44+00:00 | +| workflows | Workflows | | | Project-agnostic workflow phases for the Vibe Coding methodology. | /central/repos/active/workflows | ai-server / central-active | 2026-01-13T16:32:06+00:00 | +| tools | Tools | | | CLI utilities for managing VibeCoding projects. | /central/repos/active/tools | ai-server / central-active | 2026-01-13T16:30:05+00:00 | +| contexts | Contexts | | | Project-agnostic context documents and knowledge graph patterns for AI-assisted development. | /central/repos/active/contexts | ai-server / central-active | 2026-01-13T16:30:05+00:00 | +| blueprints | Blueprints | | | Project Requirements Documents (PRDs) and architectural blueprints for VibeCoding projects. | /central/repos/active/blueprints | ai-server / central-active | 2026-01-13T16:30:05+00:00 | +| agent-runtime | agent runtime | | | obsidian | /central/repos/active/agent runtime | ai-server / central-active | 2026-01-13T01:10:59+00:00 | +| google-drive:edi/edi - ai dumps | EDI - AI dumps | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/EDI - AI dumps | ai-server / google-drive-policy:EDI | 2025-08-09T00:45:46+00:00 | +| google-drive:edi/customer database | Customer Database | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Customer Database | ai-server / google-drive-policy:EDI | 2025-08-09T00:45:46+00:00 | +| google-drive:edi/testimonials | testimonials | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/testimonials | ai-server / google-drive-policy:EDI | 2025-06-11T20:25:01+00:00 | +| google-drive:edi/sales | sales | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/sales | ai-server / google-drive-policy:EDI | 2025-06-11T20:22:14+00:00 | +| google-drive:edi/qc | QC | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/QC | ai-server / google-drive-policy:EDI | 2025-06-10T01:59:02+00:00 | +| google-drive:edi/tracking | tracking | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/tracking | ai-server / google-drive-policy:EDI | 2025-06-10T01:57:31+00:00 | +| google-drive:edi/market-research | market-research | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/market-research | ai-server / google-drive-policy:EDI | 2025-06-10T01:54:56+00:00 | +| google-drive:edi/financials | Financials | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Financials | ai-server / google-drive-policy:EDI | 2024-11-12T15:43:43+00:00 | +| google-drive:edi/elemental x fff docs | Elemental x FFF docs | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Elemental x FFF docs | ai-server / google-drive-policy:EDI | 2024-05-18T20:12:09+00:00 | From fd84508cdcb5d3a3d22671cf31a7d5974deaeb16 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Sat, 23 May 2026 17:34:59 +0000 Subject: [PATCH 09/26] Refresh project ledger mirror --- docs/ledgers/projects-ledger.md | 80 ++++++++++++++++----------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 82b8db3..204e6e9 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Last refreshed: 2026-05-23T11:19:56+00:00 +Last refreshed: 2026-05-23T17:30:55+00:00 ## Scope and coverage @@ -15,7 +15,7 @@ Last refreshed: 2026-05-23T11:19:56+00:00 - Unique project keys: 160 - Machines covered: 3 (ai-server, matthews-macbook-air-2, matty-pc) - Shared/synced: 104 -- Local: 92 +- Local: 59 - Git repos: 61 - Obsidian vaults: 42 - Git + Obsidian: 27 @@ -24,7 +24,7 @@ Last refreshed: 2026-05-23T11:19:56+00:00 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-23T11:19:56+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. +- Refreshed the project-ledger scan at 2026-05-23T17:30:55+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. - No new project roots or repo families surfaced in this pass; the refresh updated live timestamps and preserved the existing coverage set. - The four MacBook mirror roots remain in the canonical scan set. @@ -36,9 +36,9 @@ Last refreshed: 2026-05-23T11:19:56+00:00 | project_key | display_name | tags | status | notes | path | node/source | last touch | | --- | --- | --- | --- | --- | --- | --- | --- | -| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T06:00:55+00:00 | +| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T12:00:55+00:00 | +| github.com/mschwar/project-ledger | Project Ledger | | | This project builds a ledger for mixed project roots: plain directories, git repos, and Obsidian vaults. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T11:23:29+00:00 | | openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-23T06:00:24+00:00 | -| github.com/mschwar/project-ledger | Project Ledger | | | This project builds a ledger for mixed project roots: plain directories, git repos, and Obsidian vaults. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T05:12:54+00:00 | | github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | | higgsfield-agent-project | Higgsfield Agent Project | higgsfield, agent-workspace, pipeline | active | Agent-managed Higgsfield production pipeline with inbox-driven ingestion and dated batch processing. | /central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project | matthews-macbook-air-2 / matthews-macbook-air-2:higgsfield-agent-project | 2026-05-21T22:23:02+00:00 | | github.com/LearningCircuit/local-deep-research | Local Deep Research | | |
| /central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research | matthews-macbook-air-2 / matthews-macbook-air-2:local-deep-research | 2026-05-21T21:48:35+00:00 | @@ -82,58 +82,58 @@ Last refreshed: 2026-05-23T11:19:56+00:00 | llm-council | LLM Council | | | ![llmcouncil](header.jpg) | /central/repos/apps/llm-council-master | ai-server / central-apps | 2026-05-19T16:25:04+00:00 | | github.com/mschwar/homelab | Homelab Agent Platform | | | A local-first AI platform running across 7 machines (2 Mac laptops, 4 Windows desktops, 1 Ubuntu Linux hub), unified by Tailscale into a private mesh network with centralized storage, compute routing, and LLM inference. | /central/registry/mirrors/matthews-macbook-air-2/Documents/homelab | matthews-macbook-air-2 / matthews-macbook-air-2:homelab | 2026-05-19T03:14:59+00:00 | | github.com/modelcontextprotocol/servers | Model Context Protocol servers | git, shared, mcp | active | This repository is a collection of reference implementations for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP), as well as references to community-built servers and additional resources. | /central/services/mcp-servers | ai-server / central-services | 2026-05-19T00:43:20+00:00 | -| common-project | # Common Project: One Concept a Day | dirty, git | active | [Visit the Website](https://mschwar.github.io/common-project/) \| Progress: 5 of 50 concepts completed | /central/repos/active/common-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| common-project | # Common Project: One Concept a Day | dirty, git | active | [Visit the Website](https://mschwar.github.io/common-project/) \| Progress: 5 of 50 concepts completed | /central/repos/active/common-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | white-rabbit | White Rabbit | clean, git | active | Internal-first B2B prospecting workbench. Three operators (Matt, Thomas, Lee). Self-serve from day 1. Recipes, not lists. | /central/white-rabbit | ai-server / white-rabbit | 2026-05-19T00:19:56+00:00 | | vibecoding | VibeCoding | dirty, git, vibe | active | A comprehensive AI-driven development framework for building projects with agentic AI assistance. Provides project-agnostic agents, workflows, context graphs, protocols, and templates. | /central/repos/active/VibeCoding | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | counterweight-tim | Turborepo starter | dirty, git | active | This Turborepo starter is maintained by the Turborepo core team. | /central/repos/active/counterweight-tim | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | data-visualization | Tsimane Oral Health Heatmap: A Data Visualization Project | data, dirty, git | active | This repository showcases a data visualization project designed to represent the complete oral health status of the Tsimane population of Bolivia. The heatmap synthesizes over 32,000 data points from 1,176 individuals into a single, intuiti | /central/repos/active/data-visualization | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| the-garden | The Garden | dirty, garden, git | active | git, markdown:7, project-files, sidecar | /central/git/the_garden | ai-server / central-git | 2026-05-19T00:19:56+00:00 | -| substrate | Substrate | dirty, git | active | code:25, docs+code, git, markdown:13, obsidian, project-files, readme, sidecar | /central/repos/active/substrate | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| song-clean | Song Clean | project | active | sidecar | /central/projects/song-clean | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| sigil | Sigil | project, sigil | active | sidecar | /central/projects/sigil | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| scratch | Scratch | collection | active | markdown:8, sidecar | /central/projects/scratch | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| repos | Repos | collection | active | markdown:33, project-files, readme, sidecar | /central/projects/repos | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| reality-ledger | Reality Ledger | dirty, git, ledger, reality | active | git, sidecar | /central/repos/active/reality-ledger | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| the-garden | The Garden | dirty, garden, git | active | | /central/git/the_garden | ai-server / central-git | 2026-05-19T00:19:56+00:00 | +| substrate | Substrate | dirty, git | active | | /central/repos/active/substrate | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| song-clean | Song Clean | project | active | | /central/projects/song-clean | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| sigil | Sigil | project, sigil | active | | /central/projects/sigil | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| scratch | Scratch | collection | active | | /central/projects/scratch | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| repos | Repos | collection | active | | /central/projects/repos | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| reality-ledger | Reality Ledger | dirty, git, ledger, reality | active | | /central/repos/active/reality-ledger | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | plots | Plots | dirty, git, plot | active | Interactive timelines of exponential tech progress – showing growth, compression, and scaling laws enabling modern AI. | /central/repos/active/plots | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | paper-repo | Paper Repo | paper, project | active | Flat markdown repository for scientific/white papers with linked metadata in SQLite. | /central/projects/paper-repo | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| notes | Notes | collection, notes | active | markdown:3014, obsidian, sidecar | /central/projects/notes | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| northstar | Northstar | northstar, project | active | sidecar | /central/projects/northstar | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| mnemosyne | Mnemosyne | mnemosyne, project | active | sidecar | /central/projects/mnemosyne | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| lit | Lit | project | active | sidecar | /central/projects/lit | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| lifestream | Lifestream | project | active | sidecar | /central/projects/lifestream | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| notes | Notes | collection, notes | active | | /central/projects/notes | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| northstar | Northstar | northstar, project | active | | /central/projects/northstar | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| mnemosyne | Mnemosyne | mnemosyne, project | active | | /central/projects/mnemosyne | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| lit | Lit | project | active | | /central/projects/lit | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| lifestream | Lifestream | project | active | | /central/projects/lifestream | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | letters | LetterOps | dirty, git | active | Local-first document intelligence system for managing Bahá’í letters. See canonical-docs-v2.md for the authoritative PRD, flows, tech stack, and operating rules. | /central/repos/active/letters | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| isabel | Isabel | project | active | sidecar | /central/projects/isabel | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| isabel | Isabel | project | active | | /central/projects/isabel | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | interpret | Interpret | interpret, project | active | Local-first prompt interpretation and delegation system for analyzing codebases at scale. | /central/projects/interpret | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| incubating | Incubating | collection | active | sidecar | /central/projects/incubating | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| incubating | Incubating | collection | active | | /central/projects/incubating | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | foundation | Horizon Foundation Toolkit | project | active | This repository contains the Horizon protocol, workflow docs, and supporting scripts for multi-agent prompt runs. | /central/projects/foundation | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| hermes-maximization | Hermes Maximization | project | active | sidecar | /central/projects/hermes-maximization | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| greymatter | Greymatter | greymatter, project | active | sidecar | /central/projects/greymatter | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| entropy-project | Entropy Project | project | active | sidecar | /central/projects/entropy_project | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| transcript-processing | Directory Crawl: transcript_processing | project, transcript | active | code:4, docs+code, sidecar | /central/projects/transcript_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| reality-ledger | Directory Crawl: reality-ledger | dirty, git, ledger, reality | active | git, markdown:10, project-files, readme, sidecar | /central/projects/reality-ledger | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| email-processing | Directory Crawl: email_processing | email, project | active | docs+code, markdown:206, sidecar | /central/projects/email_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| context-graph-engine | Directory Crawl: context-graph-engine | graph, project | active | markdown:16, obsidian, project-files, sidecar | /central/projects/context-graph-engine | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| hermes-maximization | Hermes Maximization | project | active | | /central/projects/hermes-maximization | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| greymatter | Greymatter | greymatter, project | active | | /central/projects/greymatter | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| entropy-project | Entropy Project | project | active | | /central/projects/entropy_project | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| transcript-processing | Directory Crawl: transcript_processing | project, transcript | active | | /central/projects/transcript_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| reality-ledger | Directory Crawl: reality-ledger | dirty, git, ledger, reality | active | | /central/projects/reality-ledger | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| email-processing | Directory Crawl: email_processing | email, project | active | | /central/projects/email_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| context-graph-engine | Directory Crawl: context-graph-engine | graph, project | active | | /central/projects/context-graph-engine | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | context-project | ctx | dirty, git | active | Filesystem-native context layer for AI agents. | /central/repos/active/context-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| csf | Csf | project | active | sidecar | /central/projects/csf | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| convertwordto-pdf-1 | Convertwordto Pdf 1 | project | active | sidecar | /central/projects/convertwordto-pdf-1 | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| constructive-understanding | Constructive Understanding | project | active | sidecar | /central/projects/constructive-understanding | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| completed | Completed | collection | active | sidecar | /central/projects/completed | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| common-projects | Common Projects | project | active | docs+code, markdown:7, project-files, readme, sidecar | /central/projects/common-projects | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| csf | Csf | project | active | | /central/projects/csf | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| convertwordto-pdf-1 | Convertwordto Pdf 1 | project | active | | /central/projects/convertwordto-pdf-1 | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| constructive-understanding | Constructive Understanding | project | active | | /central/projects/constructive-understanding | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| completed | Completed | collection | active | | /central/projects/completed | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| common-projects | Common Projects | project | active | | /central/projects/common-projects | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | coherence | Coherence-Refinement Physics | coherence, project | active | Axiom Framework: v5.2 (AXIOMS.txt) | /central/projects/coherence | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | coherence-antigravity | Coherence-Antigravity (Generative Physics) | coherence, project | active | Status: Experimental (v5.1 "TikTok v3 Aligned") | /central/projects/coherence-antigravity | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | cohere-dump | Cohere: CFF Validation Framework | project | active | A production-grade theoretical physics research framework for validating the Causal Futures Framework (CFF) hypothesis on measure collapse and quantum-like phase transitions. | /central/projects/cohere-dump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| structure | Codex Agent Visibility (Hardcoded) | project | active | code:3, docs+code, markdown:9, obsidian, project-files, readme, sidecar | /central/projects/structure | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| structure | Codex Agent Visibility (Hardcoded) | project | active | | /central/projects/structure | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | claw-code | Claw Code | dirty, git | active |

| /central/repos/active/claw-code | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| calc | Calc | calc, project | active | sidecar | /central/projects/calc | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| test-repo | Central Git test from Windows | clean, git | active | | /central/repos/active/test-repo | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| calc | Calc | calc, project | active | | /central/projects/calc | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| test-repo | Central Git test from Windows | clean, git | active | | /central/repos/active/test-repo | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | bible-homepage | bible-homepage | bible, dirty, git | active | A minimalist personal homepage that displays a daily Bible verse each time you open your browser. It is designed to support scriptural reflection and a centered start to your day. | /central/repos/active/bible-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | bahai-homepage | Bahá’í Daily Homepage | bahai, dirty, git | active | A minimalist personal homepage that displays the current Badíʿ date and a daily selection from The Hidden Words by Bahá’u’lláh. It is designed to support spiritual reflection and a centered start to digital interactions. | /central/repos/active/bahai-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | braindump | AI_SYSTEM_SPEC | brain, project | active | A project-agnostic, auditable, agent-based AI system specification designed for clarity, scalability, and epistemic hygiene. | /central/projects/braindump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | scrollytelling | AI Compute "Phase Shift" Scrollytelling Visualization | dirty, git | active | > An interactive data visualization proving AI training compute broke Moore's Law in 2012. | /central/repos/active/scrollytelling | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | bridgeai | AI Companion | dirty, git | active | A mobile app that onboards professionals into practical AI usage through quick actions, a guided chatbot, and a lightweight library. | /central/repos/active/bridgeai | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| the-garden | AGENTS.md - Your Workspace | dirty, garden, git | active | git, markdown:8, project-files, sidecar | /central/repos/active/the_garden | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| the-garden | AGENTS.md - Your Workspace | dirty, garden, git | active | | /central/repos/active/the_garden | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | agent-master-dump | Agent Master Repository | project | active | A comprehensive collection of 99 specialized AI agents organized into 69 plugins across 21 categories, with 112 modular skills for Claude Code workflow orchestration. | /central/projects/agent-master-dump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| active | Active | collection | active | sidecar | /central/projects/active | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | +| active | Active | collection | active | | /central/projects/active | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | bahai-consultation-guide | A Practical Guide to Baha'i Consultation | bahai, dirty, git | active | Welcome to the Baha'i Consultation Guide! | /central/repos/active/bahai-consultation-guide | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | garden-of-wisdom | A Garden of Wisdom | dirty, garden, git | active | This is a personal collection of impactful quotes from various world religions and philosophies, curated for memorization and reflection. | /central/repos/active/Garden-of-Wisdom | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | google-drive:paperclip | paperclip | google-drive, paperclip, project_roots | active | Named project root that should surface in project-ledger ingestion before broader content extraction. | /home/matt/GoogleDrive/paperclip | ai-server / google-drive-policy:paperclip | 2026-05-11T20:47:40+00:00 | @@ -181,15 +181,15 @@ Last refreshed: 2026-05-23T11:19:56+00:00 | google-drive:edi/corporate & legal | Corporate & Legal | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Corporate & Legal | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | | prompts | Prompts | | | Project-agnostic prompts that apply across all VibeCoding projects. | /central/repos/active/prompts | ai-server / central-active | 2026-01-14T01:42:10+00:00 | | agents | Agents | | | Project-agnostic agent definitions for VibeCoding. | /central/repos/active/agents | ai-server / central-active | 2026-01-13T16:40:38+00:00 | -| vibe_brain | vibe_brain | | | obsidian | /central/repos/active/vibe_brain | ai-server / central-active | 2026-01-13T16:33:47+00:00 | -| projects | projects | | | docs+code, project-files, readme | /central/repos/active/projects | ai-server / central-active | 2026-01-13T16:33:43+00:00 | +| vibe_brain | vibe_brain | | | | /central/repos/active/vibe_brain | ai-server / central-active | 2026-01-13T16:33:47+00:00 | +| projects | projects | | | | /central/repos/active/projects | ai-server / central-active | 2026-01-13T16:33:43+00:00 | | templates | Templates | | | Project-agnostic file templates for consistent documentation and workflows. | /central/repos/active/templates | ai-server / central-active | 2026-01-13T16:32:44+00:00 | | protocols | Protocols | | | Project-agnostic standards and conventions for consistent development practices. | /central/repos/active/protocols | ai-server / central-active | 2026-01-13T16:32:44+00:00 | | workflows | Workflows | | | Project-agnostic workflow phases for the Vibe Coding methodology. | /central/repos/active/workflows | ai-server / central-active | 2026-01-13T16:32:06+00:00 | | tools | Tools | | | CLI utilities for managing VibeCoding projects. | /central/repos/active/tools | ai-server / central-active | 2026-01-13T16:30:05+00:00 | | contexts | Contexts | | | Project-agnostic context documents and knowledge graph patterns for AI-assisted development. | /central/repos/active/contexts | ai-server / central-active | 2026-01-13T16:30:05+00:00 | | blueprints | Blueprints | | | Project Requirements Documents (PRDs) and architectural blueprints for VibeCoding projects. | /central/repos/active/blueprints | ai-server / central-active | 2026-01-13T16:30:05+00:00 | -| agent-runtime | agent runtime | | | obsidian | /central/repos/active/agent runtime | ai-server / central-active | 2026-01-13T01:10:59+00:00 | +| agent-runtime | agent runtime | | | | /central/repos/active/agent runtime | ai-server / central-active | 2026-01-13T01:10:59+00:00 | | google-drive:edi/edi - ai dumps | EDI - AI dumps | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/EDI - AI dumps | ai-server / google-drive-policy:EDI | 2025-08-09T00:45:46+00:00 | | google-drive:edi/customer database | Customer Database | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Customer Database | ai-server / google-drive-policy:EDI | 2025-08-09T00:45:46+00:00 | | google-drive:edi/testimonials | testimonials | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/testimonials | ai-server / google-drive-policy:EDI | 2025-06-11T20:25:01+00:00 | From 6a69b4a13dd8b9ac4da38c0a85bc8014c149ff4f Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Sat, 23 May 2026 23:42:54 +0000 Subject: [PATCH 10/26] Refresh canonical project ledger summary --- docs/ledgers/projects-ledger.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 204e6e9..eacd37e 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Last refreshed: 2026-05-23T17:30:55+00:00 +Last refreshed: 2026-05-23T23:38:57+00:00 ## Scope and coverage @@ -14,8 +14,8 @@ Last refreshed: 2026-05-23T17:30:55+00:00 - Entries: 163 - Unique project keys: 160 - Machines covered: 3 (ai-server, matthews-macbook-air-2, matty-pc) -- Shared/synced: 104 -- Local: 59 +- Shared/synced: 71 +- Local: 92 - Git repos: 61 - Obsidian vaults: 42 - Git + Obsidian: 27 @@ -24,7 +24,7 @@ Last refreshed: 2026-05-23T17:30:55+00:00 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-23T17:30:55+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. +- Refreshed the project-ledger scan at 2026-05-23T23:38:57+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. - No new project roots or repo families surfaced in this pass; the refresh updated live timestamps and preserved the existing coverage set. - The four MacBook mirror roots remain in the canonical scan set. @@ -36,8 +36,8 @@ Last refreshed: 2026-05-23T17:30:55+00:00 | project_key | display_name | tags | status | notes | path | node/source | last touch | | --- | --- | --- | --- | --- | --- | --- | --- | -| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T12:00:55+00:00 | -| github.com/mschwar/project-ledger | Project Ledger | | | This project builds a ledger for mixed project roots: plain directories, git repos, and Obsidian vaults. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T11:23:29+00:00 | +| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T18:00:57+00:00 | +| github.com/mschwar/project-ledger | Project Ledger | | | This project builds a ledger for mixed project roots: plain directories, git repos, and Obsidian vaults. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T17:33:59+00:00 | | openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-23T06:00:24+00:00 | | github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | | higgsfield-agent-project | Higgsfield Agent Project | higgsfield, agent-workspace, pipeline | active | Agent-managed Higgsfield production pipeline with inbox-driven ingestion and dated batch processing. | /central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project | matthews-macbook-air-2 / matthews-macbook-air-2:higgsfield-agent-project | 2026-05-21T22:23:02+00:00 | @@ -82,7 +82,7 @@ Last refreshed: 2026-05-23T17:30:55+00:00 | llm-council | LLM Council | | | ![llmcouncil](header.jpg) | /central/repos/apps/llm-council-master | ai-server / central-apps | 2026-05-19T16:25:04+00:00 | | github.com/mschwar/homelab | Homelab Agent Platform | | | A local-first AI platform running across 7 machines (2 Mac laptops, 4 Windows desktops, 1 Ubuntu Linux hub), unified by Tailscale into a private mesh network with centralized storage, compute routing, and LLM inference. | /central/registry/mirrors/matthews-macbook-air-2/Documents/homelab | matthews-macbook-air-2 / matthews-macbook-air-2:homelab | 2026-05-19T03:14:59+00:00 | | github.com/modelcontextprotocol/servers | Model Context Protocol servers | git, shared, mcp | active | This repository is a collection of reference implementations for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP), as well as references to community-built servers and additional resources. | /central/services/mcp-servers | ai-server / central-services | 2026-05-19T00:43:20+00:00 | -| common-project | # Common Project: One Concept a Day | dirty, git | active | [Visit the Website](https://mschwar.github.io/common-project/) \| Progress: 5 of 50 concepts completed | /central/repos/active/common-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| common-project | # Common Project: One Concept a Day | dirty, git | active | [Visit the Website](https://mschwar.github.io/common-project/) \| Progress: 5 of 50 concepts completed | /central/repos/active/common-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | white-rabbit | White Rabbit | clean, git | active | Internal-first B2B prospecting workbench. Three operators (Matt, Thomas, Lee). Self-serve from day 1. Recipes, not lists. | /central/white-rabbit | ai-server / white-rabbit | 2026-05-19T00:19:56+00:00 | | vibecoding | VibeCoding | dirty, git, vibe | active | A comprehensive AI-driven development framework for building projects with agentic AI assistance. Provides project-agnostic agents, workflows, context graphs, protocols, and templates. | /central/repos/active/VibeCoding | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | counterweight-tim | Turborepo starter | dirty, git | active | This Turborepo starter is maintained by the Turborepo core team. | /central/repos/active/counterweight-tim | ai-server / central-active | 2026-05-19T00:19:56+00:00 | From 1391003069c64ec18e6ad60ba235a8dd2ee8b4c7 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Sat, 23 May 2026 23:46:39 +0000 Subject: [PATCH 11/26] Add project-ledger sidecar and refresh ledger --- .project-ledger.json | 19 +++++++++++++++++++ docs/ledgers/projects-ledger.md | 11 ++++++----- 2 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 .project-ledger.json diff --git a/.project-ledger.json b/.project-ledger.json new file mode 100644 index 0000000..9a4a7af --- /dev/null +++ b/.project-ledger.json @@ -0,0 +1,19 @@ +{ + "project_key": "github.com/mschwar/project-ledger", + "display_name": "Project Ledger", + "description": "Ledger scanner for mixed project roots across machines and storage surfaces.", + "status": "active", + "tags": [ + "ledger", + "git", + "tooling" + ], + "canonical_url": "https://github.com/mschwar/project-ledger.git", + "repo_name": "project-ledger", + "shared": true, + "storage_scope": "shared", + "last_session_at": "2026-05-23T23:38:57+00:00", + "last_session_summary": "Refreshed project-ledger outputs and canonical ledger mirror.", + "next_step": "Keep the scanner synced with new roots and identity sidecars.", + "last_push_at": "" +} diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index eacd37e..b2102fd 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Last refreshed: 2026-05-23T23:38:57+00:00 +Last refreshed: 2026-05-23T23:45:52+00:00 ## Scope and coverage @@ -24,8 +24,9 @@ Last refreshed: 2026-05-23T23:38:57+00:00 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-23T23:38:57+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. +- Refreshed the project-ledger scan at 2026-05-23T23:45:52+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. - No new project roots or repo families surfaced in this pass; the refresh updated live timestamps and preserved the existing coverage set. +- Added a stable `.project-ledger.json` sidecar for `/home/matt/project-ledger` so future refreshes can preserve the repository's identity without relying only on the remote URL. - The four MacBook mirror roots remain in the canonical scan set. ## Known gaps / unscanned roots @@ -36,8 +37,8 @@ Last refreshed: 2026-05-23T23:38:57+00:00 | project_key | display_name | tags | status | notes | path | node/source | last touch | | --- | --- | --- | --- | --- | --- | --- | --- | -| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T18:00:57+00:00 | -| github.com/mschwar/project-ledger | Project Ledger | | | This project builds a ledger for mixed project roots: plain directories, git repos, and Obsidian vaults. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T17:33:59+00:00 | +| github.com/mschwar/project-ledger | Project Ledger | ledger, git, tooling | active | Ledger scanner for mixed project roots across machines and storage surfaces. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T23:43:51+00:00 | +| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T23:42:26+00:00 | | openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-23T06:00:24+00:00 | | github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | | higgsfield-agent-project | Higgsfield Agent Project | higgsfield, agent-workspace, pipeline | active | Agent-managed Higgsfield production pipeline with inbox-driven ingestion and dated batch processing. | /central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project | matthews-macbook-air-2 / matthews-macbook-air-2:higgsfield-agent-project | 2026-05-21T22:23:02+00:00 | @@ -143,7 +144,7 @@ Last refreshed: 2026-05-23T23:38:57+00:00 | hermes-ops-workflows | Hermes ops workflows | | | Small durable wrappers for repeated Hermes/local-ops workflows. | /central/repos/active/hermes-ops-workflows | ai-server / central-active | 2026-04-25T04:21:00+00:00 | | google-drive:repos-other | repos-other | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other | ai-server / google-drive-policy:repos-other | 2026-04-20T23:24:24+00:00 | | google-drive:repos-ms | repos-MS | google-drive, repos-MS, repo_like | | Repository-like root; classify and promote repo/project subroots before any expensive content ingestion. | /home/matt/GoogleDrive/repos-MS | ai-server / google-drive-policy:repos-MS | 2026-04-20T22:15:24+00:00 | -| github.com/mschwar/claude-overhaul | What this is | google-drive, repos-other, repo_like | | A versioned, deployable configuration for Claude Code's global ~/.claude/ directory. Every file in this repo maps to a file that gets deployed to ~/.claude/. The goal: every Claude Code session — regardless of project, language, or task — s | /home/matt/GoogleDrive/repos-other/claude-overhaul | ai-server / google-drive-policy:repos-other | 2026-04-20T18:54:38+00:00 | +| google-drive:repos-other/claude-overhaul | What this is | google-drive, repos-other, repo_like | | A versioned, deployable configuration for Claude Code's global ~/.claude/ directory. Every file in this repo maps to a file that gets deployed to ~/.claude/. The goal: every Claude Code session — regardless of project, language, or task — s | /home/matt/GoogleDrive/repos-other/claude-overhaul | ai-server / google-drive-policy:repos-other | 2026-04-20T18:54:38+00:00 | | google-drive:projects | Projects | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | | google-drive:projects/lmntl | LMNTL | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/LMNTL | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | | google-drive:projects/legal | legal | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/legal | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | From 640d797b7c327085d9bfbec4ece14f55cf74c2df Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Sun, 24 May 2026 05:56:58 +0000 Subject: [PATCH 12/26] refresh identity sidecar --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 9a4a7af..850e75b 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-23T23:38:57+00:00", - "last_session_summary": "Refreshed project-ledger outputs and canonical ledger mirror.", + "last_session_at": "2026-05-24T05:51:03+00:00", + "last_session_summary": "Refreshed project-ledger outputs, regenerated the canonical ledger, and verified the live coverage set.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } From 1d6874a53806f26a6d0c612a544c02066f3abbbe Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Sun, 24 May 2026 18:15:57 +0000 Subject: [PATCH 13/26] Refresh project-ledger session metadata --- .project-ledger.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.project-ledger.json b/.project-ledger.json index 850e75b..f095c01 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,7 +12,7 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-24T05:51:03+00:00", + "last_session_at": "2026-05-24T18:12:18+00:00", "last_session_summary": "Refreshed project-ledger outputs, regenerated the canonical ledger, and verified the live coverage set.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" From 020256f9822fdb237c2506cbe977cb5224a0d9af Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Mon, 25 May 2026 06:32:45 +0000 Subject: [PATCH 14/26] docs: refresh project ledger mirror --- .project-ledger.json | 4 ++-- docs/ledgers/projects-ledger.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index f095c01..6c74a29 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-24T18:12:18+00:00", - "last_session_summary": "Refreshed project-ledger outputs, regenerated the canonical ledger, and verified the live coverage set.", + "last_session_at": "2026-05-25T06:29:11+00:00", + "last_session_summary": "Refreshed project-ledger outputs after a live tailnet poll; no new projects found, and Mac SSH access still needs follow-up.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index b2102fd..2a08f55 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Last refreshed: 2026-05-23T23:45:52+00:00 +Last refreshed: 2026-05-25T06:29:42+00:00 ## Scope and coverage @@ -24,20 +24,20 @@ Last refreshed: 2026-05-23T23:45:52+00:00 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-23T23:45:52+00:00 from live ai-server, matthews-macbook-air-2, and matty-pc evidence. -- No new project roots or repo families surfaced in this pass; the refresh updated live timestamps and preserved the existing coverage set. -- Added a stable `.project-ledger.json` sidecar for `/home/matt/project-ledger` so future refreshes can preserve the repository's identity without relying only on the remote URL. +- Refreshed the project-ledger scan at 2026-05-25T06:29:42+00:00 from live ai-server and matthews-macbook-air-2 evidence plus matty-pc inventory artifacts. +- No new project roots or repo families surfaced in this pass; the refresh updated the repository's own sidecar and preserved the existing coverage set. - The four MacBook mirror roots remain in the canonical scan set. +- Direct SSH probing of the MacBook from ai-server timed out during this pass, so live filesystem validation on that peer was not re-run. ## Known gaps / unscanned roots -- None detected in the configured scan roots. +- Direct SSH validation of `matthews-macbook-air-2` timed out from ai-server during this pass; the mirrored Documents roots were still covered through `/central/registry/mirrors/...`. ## Project index | project_key | display_name | tags | status | notes | path | node/source | last touch | | --- | --- | --- | --- | --- | --- | --- | --- | -| github.com/mschwar/project-ledger | Project Ledger | ledger, git, tooling | active | Ledger scanner for mixed project roots across machines and storage surfaces. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-23T23:43:51+00:00 | +| github.com/mschwar/project-ledger | Project Ledger | ledger, git, tooling | active | Ledger scanner for mixed project roots across machines and storage surfaces. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-25T06:29:16+00:00 | | homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T23:42:26+00:00 | | openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-23T06:00:24+00:00 | | github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | From 9bd42d388f93474e2adb380ac7123574aa07f57b Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Mon, 25 May 2026 18:47:28 +0000 Subject: [PATCH 15/26] chore: refresh project ledger sidecar --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 6c74a29..40ca9cf 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-25T06:29:11+00:00", - "last_session_summary": "Refreshed project-ledger outputs after a live tailnet poll; no new projects found, and Mac SSH access still needs follow-up.", + "last_session_at": "2026-05-25T18:45:52+00:00", + "last_session_summary": "Refreshed project-ledger outputs after a live scan; no new projects found.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } From e6ebe1725f8ffe59d521d1432b02c70ffffaddc4 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 26 May 2026 00:58:01 +0000 Subject: [PATCH 16/26] Refresh project ledger snapshot --- .project-ledger.json | 4 ++-- docs/ledgers/projects-ledger.md | 27 ++++++++++++++------------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 40ca9cf..4ced0ec 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-25T18:45:52+00:00", - "last_session_summary": "Refreshed project-ledger outputs after a live scan; no new projects found.", + "last_session_at": "2026-05-26T00:53:07Z", + "last_session_summary": "Refreshed the live project-ledger scan; MacBook SSH was reachable, matty-pc timed out, and no new project roots surfaced.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 2a08f55..8223a33 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Last refreshed: 2026-05-25T06:29:42+00:00 +Last refreshed: 2026-05-26T00:55:53+00:00 ## Scope and coverage @@ -14,8 +14,8 @@ Last refreshed: 2026-05-25T06:29:42+00:00 - Entries: 163 - Unique project keys: 160 - Machines covered: 3 (ai-server, matthews-macbook-air-2, matty-pc) -- Shared/synced: 71 -- Local: 92 +- Shared/synced: 104 +- Local: 59 - Git repos: 61 - Obsidian vaults: 42 - Git + Obsidian: 27 @@ -24,22 +24,23 @@ Last refreshed: 2026-05-25T06:29:42+00:00 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-25T06:29:42+00:00 from live ai-server and matthews-macbook-air-2 evidence plus matty-pc inventory artifacts. -- No new project roots or repo families surfaced in this pass; the refresh updated the repository's own sidecar and preserved the existing coverage set. -- The four MacBook mirror roots remain in the canonical scan set. -- Direct SSH probing of the MacBook from ai-server timed out during this pass, so live filesystem validation on that peer was not re-run. +- Refreshed the project-ledger scan at 2026-05-26T00:55:53+00:00 from live ai-server and matthews-macbook-air-2 evidence plus matty-pc inventory artifacts. +- MacBook SSH/tailscale were reachable in this pass. +- matty-pc tailnet/SSH probes timed out during this pass, so that machine's latest project coverage continues to rely on the durable inventory-backed roots under `/central/registry/inventories/matty-pc-documents`. +- No new project roots or repo families surfaced; the project set remained at 163 entries. +- Updated `/home/matt/project-ledger/.project-ledger.json` so the repository sidecar tracks the current session. ## Known gaps / unscanned roots -- Direct SSH validation of `matthews-macbook-air-2` timed out from ai-server during this pass; the mirrored Documents roots were still covered through `/central/registry/mirrors/...`. +- `matty-pc` live probe timed out from ai-server during this pass (`tailscale ping`/SSH), but the inventory-backed root coverage remained available through `/central/registry/inventories/matty-pc-documents`. ## Project index | project_key | display_name | tags | status | notes | path | node/source | last touch | | --- | --- | --- | --- | --- | --- | --- | --- | -| github.com/mschwar/project-ledger | Project Ledger | ledger, git, tooling | active | Ledger scanner for mixed project roots across machines and storage surfaces. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-25T06:29:16+00:00 | -| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-23T23:42:26+00:00 | -| openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-23T06:00:24+00:00 | +| github.com/mschwar/project-ledger | Project Ledger | ledger, git, tooling | active | Ledger scanner for mixed project roots across machines and storage surfaces. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-26T00:53:12+00:00 | +| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-26T00:30:26+00:00 | +| openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-25T06:00:06+00:00 | | github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | | higgsfield-agent-project | Higgsfield Agent Project | higgsfield, agent-workspace, pipeline | active | Agent-managed Higgsfield production pipeline with inbox-driven ingestion and dated batch processing. | /central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project | matthews-macbook-air-2 / matthews-macbook-air-2:higgsfield-agent-project | 2026-05-21T22:23:02+00:00 | | github.com/LearningCircuit/local-deep-research | Local Deep Research | | |

| /central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research | matthews-macbook-air-2 / matthews-macbook-air-2:local-deep-research | 2026-05-21T21:48:35+00:00 | @@ -126,7 +127,7 @@ Last refreshed: 2026-05-25T06:29:42+00:00 | structure | Codex Agent Visibility (Hardcoded) | project | active | | /central/projects/structure | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | | claw-code | Claw Code | dirty, git | active |

| /central/repos/active/claw-code | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | calc | Calc | calc, project | active | | /central/projects/calc | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| test-repo | Central Git test from Windows | clean, git | active | | /central/repos/active/test-repo | ai-server / central-active | 2026-05-19T00:19:56+00:00 | +| test-repo | Central Git test from Windows | clean, git | active | | /central/repos/active/test-repo | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | bible-homepage | bible-homepage | bible, dirty, git | active | A minimalist personal homepage that displays a daily Bible verse each time you open your browser. It is designed to support scriptural reflection and a centered start to your day. | /central/repos/active/bible-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | bahai-homepage | Bahá’í Daily Homepage | bahai, dirty, git | active | A minimalist personal homepage that displays the current Badíʿ date and a daily selection from The Hidden Words by Bahá’u’lláh. It is designed to support spiritual reflection and a centered start to digital interactions. | /central/repos/active/bahai-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | | braindump | AI_SYSTEM_SPEC | brain, project | active | A project-agnostic, auditable, agent-based AI system specification designed for clarity, scalability, and epistemic hygiene. | /central/projects/braindump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | @@ -144,7 +145,7 @@ Last refreshed: 2026-05-25T06:29:42+00:00 | hermes-ops-workflows | Hermes ops workflows | | | Small durable wrappers for repeated Hermes/local-ops workflows. | /central/repos/active/hermes-ops-workflows | ai-server / central-active | 2026-04-25T04:21:00+00:00 | | google-drive:repos-other | repos-other | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other | ai-server / google-drive-policy:repos-other | 2026-04-20T23:24:24+00:00 | | google-drive:repos-ms | repos-MS | google-drive, repos-MS, repo_like | | Repository-like root; classify and promote repo/project subroots before any expensive content ingestion. | /home/matt/GoogleDrive/repos-MS | ai-server / google-drive-policy:repos-MS | 2026-04-20T22:15:24+00:00 | -| google-drive:repos-other/claude-overhaul | What this is | google-drive, repos-other, repo_like | | A versioned, deployable configuration for Claude Code's global ~/.claude/ directory. Every file in this repo maps to a file that gets deployed to ~/.claude/. The goal: every Claude Code session — regardless of project, language, or task — s | /home/matt/GoogleDrive/repos-other/claude-overhaul | ai-server / google-drive-policy:repos-other | 2026-04-20T18:54:38+00:00 | +| github.com/mschwar/claude-overhaul | What this is | google-drive, repos-other, repo_like | | A versioned, deployable configuration for Claude Code's global ~/.claude/ directory. Every file in this repo maps to a file that gets deployed to ~/.claude/. The goal: every Claude Code session — regardless of project, language, or task — s | /home/matt/GoogleDrive/repos-other/claude-overhaul | ai-server / google-drive-policy:repos-other | 2026-04-20T18:54:38+00:00 | | google-drive:projects | Projects | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | | google-drive:projects/lmntl | LMNTL | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/LMNTL | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | | google-drive:projects/legal | legal | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/legal | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | From cd2fa9919491efc77729c8adbda109a7190b3c5e Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 26 May 2026 07:07:33 +0000 Subject: [PATCH 17/26] chore: refresh project ledger session metadata --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 4ced0ec..fb3cbc0 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-26T00:53:07Z", - "last_session_summary": "Refreshed the live project-ledger scan; MacBook SSH was reachable, matty-pc timed out, and no new project roots surfaced.", + "last_session_at": "2026-05-26T07:04:56Z", + "last_session_summary": "Refreshed the live project-ledger scan; no new project roots surfaced, MacBook and matty-pc probes timed out during this pass, and the canonical outputs were regenerated.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } From 067ea578823d8d340670546cc675f4a589bf3dc5 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 26 May 2026 13:15:25 +0000 Subject: [PATCH 18/26] Refresh project-ledger session sidecar --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index fb3cbc0..84249c0 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-26T07:04:56Z", - "last_session_summary": "Refreshed the live project-ledger scan; no new project roots surfaced, MacBook and matty-pc probes timed out during this pass, and the canonical outputs were regenerated.", + "last_session_at": "2026-05-26T13:11:59+00:00", + "last_session_summary": "Refreshed the live project-ledger scan; no new project roots surfaced; direct matty-pc and MacBook Tailscale/SSH probes timed out during this pass; canonical outputs were regenerated.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } From f3af4c491911a669e66b0796ffa82094566ebf9d Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 26 May 2026 19:31:10 +0000 Subject: [PATCH 19/26] Refresh project ledger for current session --- .project-ledger.json | 4 ++-- docs/ledgers/projects-ledger.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 84249c0..4c3196a 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-26T13:11:59+00:00", - "last_session_summary": "Refreshed the live project-ledger scan; no new project roots surfaced; direct matty-pc and MacBook Tailscale/SSH probes timed out during this pass; canonical outputs were regenerated.", + "last_session_at": "2026-05-26T19:29:35Z", + "last_session_summary": "Refreshed the live project-ledger scan; macOS peer access is live again, matty-pc ping/SSH still timed out during this pass, and no new project roots surfaced; canonical outputs were regenerated.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 8223a33..635ab6f 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,11 +1,11 @@ # Project Ledger -Last refreshed: 2026-05-26T00:55:53+00:00 +Last refreshed: 2026-05-26T19:29:57+00:00 ## Scope and coverage - Source of truth: live build from `/home/matt/project-ledger/output/projects.json`. -- Coverage: 3 machine sources covered — ai-server, matthews-macbook-air-2, matty-pc. +- Coverage: 3 machine sources covered — ai-server live, matthews-macbook-air-2 live, matty-pc inventory-backed only. - Durable mirrors: `/home/matt/project-ledger/output/` and `/central/repos/active/homelab/docs/ledgers/projects-ledger.md`. - Canonical mirror: `/central/repos/active/homelab/docs/ledgers/projects-ledger.md`. @@ -13,7 +13,7 @@ Last refreshed: 2026-05-26T00:55:53+00:00 - Entries: 163 - Unique project keys: 160 -- Machines covered: 3 (ai-server, matthews-macbook-air-2, matty-pc) +- Machines covered: 3 (ai-server live, matthews-macbook-air-2 live, matty-pc inventory-backed only) - Shared/synced: 104 - Local: 59 - Git repos: 61 @@ -24,7 +24,7 @@ Last refreshed: 2026-05-26T00:55:53+00:00 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-26T00:55:53+00:00 from live ai-server and matthews-macbook-air-2 evidence plus matty-pc inventory artifacts. +- Refreshed the project-ledger scan at 2026-05-26T19:29:57+00:00 from live ai-server and matthews-macbook-air-2 evidence plus matty-pc inventory artifacts. - MacBook SSH/tailscale were reachable in this pass. - matty-pc tailnet/SSH probes timed out during this pass, so that machine's latest project coverage continues to rely on the durable inventory-backed roots under `/central/registry/inventories/matty-pc-documents`. - No new project roots or repo families surfaced; the project set remained at 163 entries. From ec449c73ca2178e0d497df4b468917978fc44b8e Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Mon, 1 Jun 2026 19:59:05 +0000 Subject: [PATCH 20/26] Refresh project-ledger scan --- .project-ledger.json | 4 +- docs/ledgers/projects-ledger.md | 388 ++++++++++++++++---------------- 2 files changed, 200 insertions(+), 192 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 4c3196a..1e9cfae 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-05-26T19:29:35Z", - "last_session_summary": "Refreshed the live project-ledger scan; macOS peer access is live again, matty-pc ping/SSH still timed out during this pass, and no new project roots surfaced; canonical outputs were regenerated.", + "last_session_at": "2026-06-01T19:55:40Z", + "last_session_summary": "Refreshed the live project-ledger scan; all configured roots were readable in this pass, the project set stayed at 163 entries with 160 unique keys, and no new project roots surfaced.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 635ab6f..fc6671b 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,203 +1,211 @@ # Project Ledger -Last refreshed: 2026-05-26T19:29:57+00:00 - -## Scope and coverage - -- Source of truth: live build from `/home/matt/project-ledger/output/projects.json`. -- Coverage: 3 machine sources covered — ai-server live, matthews-macbook-air-2 live, matty-pc inventory-backed only. -- Durable mirrors: `/home/matt/project-ledger/output/` and `/central/repos/active/homelab/docs/ledgers/projects-ledger.md`. -- Canonical mirror: `/central/repos/active/homelab/docs/ledgers/projects-ledger.md`. - -## Summary +Generated: 2026-06-01T19:55:40+00:00 - Entries: 163 -- Unique project keys: 160 -- Machines covered: 3 (ai-server live, matthews-macbook-air-2 live, matty-pc inventory-backed only) -- Shared/synced: 104 -- Local: 59 - Git repos: 61 - Obsidian vaults: 42 -- Git + Obsidian: 27 - -> `Last Push` uses `last_push_at` from the sidecar when available; otherwise it falls back to the newest local remote-ref timestamp. +- Shared/synced: 104 ## What changed in this refresh -- Refreshed the project-ledger scan at 2026-05-26T19:29:57+00:00 from live ai-server and matthews-macbook-air-2 evidence plus matty-pc inventory artifacts. -- MacBook SSH/tailscale were reachable in this pass. -- matty-pc tailnet/SSH probes timed out during this pass, so that machine's latest project coverage continues to rely on the durable inventory-backed roots under `/central/registry/inventories/matty-pc-documents`. -- No new project roots or repo families surfaced; the project set remained at 163 entries. -- Updated `/home/matt/project-ledger/.project-ledger.json` so the repository sidecar tracks the current session. +- Refreshed the project-ledger scan at 2026-06-01T19:55:40+00:00 from live ai-server, matthews-macbook-air-2, and inventory-backed matty-pc roots. +- No configured roots were inaccessible in this pass. +- The project set stayed at 163 entries and 160 unique keys; no new project roots or repo families surfaced. + +> `Last Push` uses `last_push_at` from the sidecar when available; otherwise it falls back to the newest local remote-ref timestamp. + +## Scan coverage and gaps -## Known gaps / unscanned roots +**MacBook mirror roots scanned this refresh:** +- `matthews-macbook-air-2:hermes-paperclip-adapter` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter` +- `matthews-macbook-air-2:higgsfield-agent-project` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project` +- `matthews-macbook-air-2:homelab` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab` +- `matthews-macbook-air-2:local-deep-research` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research` -- `matty-pc` live probe timed out from ai-server during this pass (`tailscale ping`/SSH), but the inventory-backed root coverage remained available through `/central/registry/inventories/matty-pc-documents`. +**Configured roots:** +- `central-apps` — `/central/repos/apps` — present (children) +- `central-infra` — `/central/repos/infra` — present (git_repos) +- `central-services` — `/central/services` — present (children) +- `central-git` — `/central/git` — present (git_repos) +- `central-projects` — `/central/projects` — present (children) +- `central-active` — `/central/repos/active` — present (children) +- `proxy-lead` — `/central/proxy-lead` — present (self) +- `white-rabbit` — `/central/white-rabbit` — present (self) +- `project-ledger` — `/home/matt/project-ledger` — present (self) +- `matthews-macbook-air-2:hermes-paperclip-adapter` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter` — present (self) +- `matthews-macbook-air-2:higgsfield-agent-project` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project` — present (self) +- `matthews-macbook-air-2:homelab` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/homelab` — present (self) +- `matthews-macbook-air-2:local-deep-research` — `/central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research` — present (self) +- `matty-pc` — `/central/registry/inventories/matty-pc-documents` — present (inventory_policy) +- `google-drive-policy` — `/home/matt/GoogleDrive` — present (inventory_policy) +- `opt-homelab` — `/opt/homelab` — present (children) +- `backup-20260416-repos` — `/central/archive/root-backups/central.root-backup-20260416T012657Z/repos` — present (git_repos) -## Project index +**Known gaps / inaccessible roots:** none detected in configured scan roots. -| project_key | display_name | tags | status | notes | path | node/source | last touch | -| --- | --- | --- | --- | --- | --- | --- | --- | -| github.com/mschwar/project-ledger | Project Ledger | ledger, git, tooling | active | Ledger scanner for mixed project roots across machines and storage surfaces. | /home/matt/project-ledger | ai-server / project-ledger | 2026-05-26T00:53:12+00:00 | -| homelab | Homelab Agent Platform | dirty, git, homelab | active | A local-first AI homelab control-plane repo centered on the real ai-server Ubuntu node and its Tailscale-connected peers. | /central/repos/active/homelab | ai-server / central-active | 2026-05-26T00:30:26+00:00 | -| openclaw-meta-research | OpenClaw Meta Research | openclaw, project | active | Next.js app + collection pipeline to discover OpenClaw usage patterns from web sources every 48h. | /central/projects/openclaw-meta-research | ai-server / central-projects | 2026-05-25T06:00:06+00:00 | -| github.com/mschwar/proxy-lead | README.md - White Rabbit | | | B2B AI lead generation tool for Account Executives and SDRs at telecom/VoIP providers. Searches live web sources to surface IT directors and network managers at K-12 school districts and local governments — faster and more accurately than b | /central/proxy-lead | ai-server / proxy-lead | 2026-05-22T06:35:46+00:00 | -| higgsfield-agent-project | Higgsfield Agent Project | higgsfield, agent-workspace, pipeline | active | Agent-managed Higgsfield production pipeline with inbox-driven ingestion and dated batch processing. | /central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project | matthews-macbook-air-2 / matthews-macbook-air-2:higgsfield-agent-project | 2026-05-21T22:23:02+00:00 | -| github.com/LearningCircuit/local-deep-research | Local Deep Research | | |

| /central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research | matthews-macbook-air-2 / matthews-macbook-air-2:local-deep-research | 2026-05-21T21:48:35+00:00 | -| open-higgsfield-ai-open-source-alternative-to-higgsfield-ai | Open Higgsfield AI — Open-Source Alternative to Higgsfield AI | | | > The free, open-source alternative to Higgsfield AI. Generate AI images and videos using 200+ state-of-the-art models — without the closed ecosystem or subscription fees. | /central/repos/apps/Open-Higgsfield-AI-main | ai-server / central-apps | 2026-05-21T05:44:44+00:00 | -| homelab | Homelab Agent Platform | git, shared, homelab | active | A local-first AI platform running across 7 machines (2 Mac laptops, 4 Windows desktops, 1 Ubuntu Linux hub), unified by Tailscale into a private mesh network with centralized storage, compute routing, and LLM inference. | /central/repos/infra/homelab-repo | ai-server / central-infra | 2026-05-21T05:40:28+00:00 | -| github.com/mschwar/agent-os | Slop Cannon Agent OS | | | Slop Cannon is a repo-local operating system for agent-first feature buildout. | /central/repos/active/agent-os | ai-server / central-active | 2026-05-21T00:32:26+00:00 | -| google-drive:white-rabbit | white-rabbit | google-drive, white-rabbit, repo_like | | Repository with git, README, and Obsidian signals. | matty-pc:white-rabbit | matty-pc / matty-pc:white-rabbit | 2026-05-20T01:57:31+00:00 | -| google-drive:url-collection | url-collection | google-drive, url-collection, project_roots | | Collection workspace with README signal. | matty-pc:url-collection | matty-pc / matty-pc:url-collection | 2026-05-20T01:57:31+00:00 | -| google-drive:toned | toned | google-drive, toned, repo_like | | Project repository with git and README signals. | matty-pc:toned | matty-pc / matty-pc:toned | 2026-05-20T01:57:31+00:00 | -| google-drive:substrate | substrate | google-drive, substrate, repo_like | | Repository with git, README, and Obsidian signals. | matty-pc:substrate | matty-pc / matty-pc:substrate | 2026-05-20T01:57:31+00:00 | -| google-drive:song-clean | song-clean | google-drive, song-clean, repo_like | | Project repository with git and README signals. | matty-pc:song-clean | matty-pc / matty-pc:song-clean | 2026-05-20T01:57:31+00:00 | -| google-drive:slopvault-sessions | slopvault-sessions | google-drive, slopvault-sessions, repo_like | | Session workspace with git and README signals. | matty-pc:slopvault-sessions | matty-pc / matty-pc:slopvault-sessions | 2026-05-20T01:57:31+00:00 | -| google-drive:slopvault | slopvault | google-drive, slopvault, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:slopvault | matty-pc / matty-pc:slopvault | 2026-05-20T01:57:31+00:00 | -| google-drive:scrollytelling | scrollytelling | google-drive, scrollytelling, repo_like | | Repository with git, README, and Obsidian signals. | matty-pc:scrollytelling | matty-pc / matty-pc:scrollytelling | 2026-05-20T01:57:31+00:00 | -| google-drive:reality-ledger | reality-ledger | google-drive, reality-ledger, repo_like | | Repository with git signal. | matty-pc:reality-ledger | matty-pc / matty-pc:reality-ledger | 2026-05-20T01:57:31+00:00 | -| google-drive:prompt-refinery | prompt-refinery | google-drive, prompt-refinery, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:prompt-refinery | matty-pc / matty-pc:prompt-refinery | 2026-05-20T01:57:31+00:00 | -| google-drive:project-ledger | project-ledger | google-drive, project-ledger, repo_like | | Project-ledger repository with git and README signals. | matty-pc:project-ledger | matty-pc / matty-pc:project-ledger | 2026-05-20T01:57:31+00:00 | -| google-drive:project-eidos | project-eidos | google-drive, project-eidos, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:project-eidos | matty-pc / matty-pc:project-eidos | 2026-05-20T01:57:31+00:00 | -| google-drive:orgatlas | orgatlas | google-drive, orgatlas, repo_like | | Org atlas repository with git, README, and Obsidian signals. | matty-pc:orgatlas | matty-pc / matty-pc:orgatlas | 2026-05-20T01:57:31+00:00 | -| google-drive:open-higgsfield-ai | Open-Higgsfield-AI | google-drive, Open-Higgsfield-AI, repo_like | | Project repository with git and README signals. | matty-pc:Open-Higgsfield-AI | matty-pc / matty-pc:Open-Higgsfield-AI | 2026-05-20T01:57:31+00:00 | -| google-drive:obsidian vault | Obsidian Vault | google-drive, Obsidian Vault, project_roots | | Obsidian vault with notes-only signals. | matty-pc:Obsidian Vault | matty-pc / matty-pc:Obsidian Vault | 2026-05-20T01:57:31+00:00 | -| google-drive:misc-docs | misc-docs | google-drive, misc-docs, project_roots | | Documentation vault signal without git metadata. | matty-pc:misc-docs | matty-pc / matty-pc:misc-docs | 2026-05-20T01:57:31+00:00 | -| google-drive:lee-grapple-hook | lee-grapple-hook | google-drive, lee-grapple-hook, repo_like | | Repository with git and README signals. | matty-pc:lee-grapple-hook | matty-pc / matty-pc:lee-grapple-hook | 2026-05-20T01:57:31+00:00 | -| google-drive:lee-ai-learning | lee-ai-learning | google-drive, lee-ai-learning, project_roots | | Learning workspace with README signal. | matty-pc:lee-ai-learning | matty-pc / matty-pc:lee-ai-learning | 2026-05-20T01:57:31+00:00 | -| google-drive:ledger | ledger | google-drive, ledger, repo_like | | Ledger repository with git, README, and Obsidian signals. | matty-pc:ledger | matty-pc / matty-pc:ledger | 2026-05-20T01:57:31+00:00 | -| google-drive:homelab | homelab | google-drive, homelab, repo_like | | Homelab repository with git, README, and Obsidian signals. | matty-pc:homelab | matty-pc / matty-pc:homelab | 2026-05-20T01:57:31+00:00 | -| google-drive:gstack-main | gstack-main | google-drive, gstack-main, project_roots | | Repository-like project folder with README signal. | matty-pc:gstack-main | matty-pc / matty-pc:gstack-main | 2026-05-20T01:57:31+00:00 | -| google-drive:flow | flow | google-drive, flow, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:flow | matty-pc / matty-pc:flow | 2026-05-20T01:57:31+00:00 | -| google-drive:elemental-inc | elemental-inc | google-drive, elemental-inc, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:elemental-inc | matty-pc / matty-pc:elemental-inc | 2026-05-20T01:57:31+00:00 | -| google-drive:cpr | cpr | google-drive, cpr, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:cpr | matty-pc / matty-pc:cpr | 2026-05-20T01:57:31+00:00 | -| google-drive:context-project | context-project | google-drive, context-project, repo_like | | Context project repository with git, README, and Obsidian signals. | matty-pc:context-project | matty-pc / matty-pc:context-project | 2026-05-20T01:57:31+00:00 | -| google-drive:common-project | common-project | google-drive, common-project, repo_like | | Common project repository with git, README, and Obsidian signals. | matty-pc:common-project | matty-pc / matty-pc:common-project | 2026-05-20T01:57:31+00:00 | -| google-drive:civstrate | civstrate | google-drive, civstrate, repo_like | | Project repository with git, README, and Obsidian signals. | matty-pc:civstrate | matty-pc / matty-pc:civstrate | 2026-05-20T01:57:31+00:00 | -| google-drive:bitnet | BitNet | google-drive, BitNet, project_roots | | Project root with git and README signals. | matty-pc:BitNet | matty-pc / matty-pc:BitNet | 2026-05-20T01:57:31+00:00 | -| google-drive:bahai-consultation-guide | bahai-consultation-guide | google-drive, bahai-consultation-guide, repo_like | | Consultation guide repository with git and Obsidian signals. | matty-pc:bahai-consultation-guide | matty-pc / matty-pc:bahai-consultation-guide | 2026-05-20T01:57:31+00:00 | -| google-drive:bahai-9yr-plan-kb | bahai-9yr-plan-kb | google-drive, bahai-9yr-plan-kb, project_roots | | Named knowledge/project root with README signal. | matty-pc:bahai-9yr-plan-kb | matty-pc / matty-pc:bahai-9yr-plan-kb | 2026-05-20T01:57:31+00:00 | -| google-drive:ai-field-briefing | ai-field-briefing | google-drive, ai-field-briefing, repo_like | | Briefing workspace with git, README, and Obsidian signals. | matty-pc:ai-field-briefing | matty-pc / matty-pc:ai-field-briefing | 2026-05-20T01:57:31+00:00 | -| google-drive:agent-os | agent-os | google-drive, agent-os, repo_like | | Agent operating-system style workspace with git, README, and Obsidian signals. | matty-pc:agent-os | matty-pc / matty-pc:agent-os | 2026-05-20T01:57:31+00:00 | -| google-drive:2026.tsle.team_internal-ms | 2026.TSLE.TEAM_internal-MS | google-drive, 2026.TSLE.TEAM_internal-MS, repo_like | | Internal team workspace with git and Obsidian signals. | matty-pc:2026.TSLE.TEAM_internal-MS | matty-pc / matty-pc:2026.TSLE.TEAM_internal-MS | 2026-05-20T01:57:31+00:00 | -| github.com/mschwar/white-rabbit | White Rabbit v2 | | | Internal-first B2B lead research tool for Matt, Thomas, and Lee. | /central/repos/active/white-rabbit | ai-server / central-active | 2026-05-19T20:17:42+00:00 | -| llm-council | LLM Council | | | ![llmcouncil](header.jpg) | /central/repos/apps/llm-council-master | ai-server / central-apps | 2026-05-19T16:25:04+00:00 | -| github.com/mschwar/homelab | Homelab Agent Platform | | | A local-first AI platform running across 7 machines (2 Mac laptops, 4 Windows desktops, 1 Ubuntu Linux hub), unified by Tailscale into a private mesh network with centralized storage, compute routing, and LLM inference. | /central/registry/mirrors/matthews-macbook-air-2/Documents/homelab | matthews-macbook-air-2 / matthews-macbook-air-2:homelab | 2026-05-19T03:14:59+00:00 | -| github.com/modelcontextprotocol/servers | Model Context Protocol servers | git, shared, mcp | active | This repository is a collection of reference implementations for the [Model Context Protocol](https://modelcontextprotocol.io/) (MCP), as well as references to community-built servers and additional resources. | /central/services/mcp-servers | ai-server / central-services | 2026-05-19T00:43:20+00:00 | -| common-project | # Common Project: One Concept a Day | dirty, git | active | [Visit the Website](https://mschwar.github.io/common-project/) \| Progress: 5 of 50 concepts completed | /central/repos/active/common-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| white-rabbit | White Rabbit | clean, git | active | Internal-first B2B prospecting workbench. Three operators (Matt, Thomas, Lee). Self-serve from day 1. Recipes, not lists. | /central/white-rabbit | ai-server / white-rabbit | 2026-05-19T00:19:56+00:00 | -| vibecoding | VibeCoding | dirty, git, vibe | active | A comprehensive AI-driven development framework for building projects with agentic AI assistance. Provides project-agnostic agents, workflows, context graphs, protocols, and templates. | /central/repos/active/VibeCoding | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| counterweight-tim | Turborepo starter | dirty, git | active | This Turborepo starter is maintained by the Turborepo core team. | /central/repos/active/counterweight-tim | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| data-visualization | Tsimane Oral Health Heatmap: A Data Visualization Project | data, dirty, git | active | This repository showcases a data visualization project designed to represent the complete oral health status of the Tsimane population of Bolivia. The heatmap synthesizes over 32,000 data points from 1,176 individuals into a single, intuiti | /central/repos/active/data-visualization | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| the-garden | The Garden | dirty, garden, git | active | | /central/git/the_garden | ai-server / central-git | 2026-05-19T00:19:56+00:00 | -| substrate | Substrate | dirty, git | active | | /central/repos/active/substrate | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| song-clean | Song Clean | project | active | | /central/projects/song-clean | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| sigil | Sigil | project, sigil | active | | /central/projects/sigil | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| scratch | Scratch | collection | active | | /central/projects/scratch | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| repos | Repos | collection | active | | /central/projects/repos | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| reality-ledger | Reality Ledger | dirty, git, ledger, reality | active | | /central/repos/active/reality-ledger | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| plots | Plots | dirty, git, plot | active | Interactive timelines of exponential tech progress – showing growth, compression, and scaling laws enabling modern AI. | /central/repos/active/plots | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| paper-repo | Paper Repo | paper, project | active | Flat markdown repository for scientific/white papers with linked metadata in SQLite. | /central/projects/paper-repo | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| notes | Notes | collection, notes | active | | /central/projects/notes | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| northstar | Northstar | northstar, project | active | | /central/projects/northstar | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| mnemosyne | Mnemosyne | mnemosyne, project | active | | /central/projects/mnemosyne | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| lit | Lit | project | active | | /central/projects/lit | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| lifestream | Lifestream | project | active | | /central/projects/lifestream | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| letters | LetterOps | dirty, git | active | Local-first document intelligence system for managing Bahá’í letters. See canonical-docs-v2.md for the authoritative PRD, flows, tech stack, and operating rules. | /central/repos/active/letters | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| isabel | Isabel | project | active | | /central/projects/isabel | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| interpret | Interpret | interpret, project | active | Local-first prompt interpretation and delegation system for analyzing codebases at scale. | /central/projects/interpret | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| incubating | Incubating | collection | active | | /central/projects/incubating | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| foundation | Horizon Foundation Toolkit | project | active | This repository contains the Horizon protocol, workflow docs, and supporting scripts for multi-agent prompt runs. | /central/projects/foundation | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| hermes-maximization | Hermes Maximization | project | active | | /central/projects/hermes-maximization | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| greymatter | Greymatter | greymatter, project | active | | /central/projects/greymatter | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| entropy-project | Entropy Project | project | active | | /central/projects/entropy_project | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| transcript-processing | Directory Crawl: transcript_processing | project, transcript | active | | /central/projects/transcript_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| reality-ledger | Directory Crawl: reality-ledger | dirty, git, ledger, reality | active | | /central/projects/reality-ledger | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| email-processing | Directory Crawl: email_processing | email, project | active | | /central/projects/email_processing | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| context-graph-engine | Directory Crawl: context-graph-engine | graph, project | active | | /central/projects/context-graph-engine | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| context-project | ctx | dirty, git | active | Filesystem-native context layer for AI agents. | /central/repos/active/context-project | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| csf | Csf | project | active | | /central/projects/csf | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| convertwordto-pdf-1 | Convertwordto Pdf 1 | project | active | | /central/projects/convertwordto-pdf-1 | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| constructive-understanding | Constructive Understanding | project | active | | /central/projects/constructive-understanding | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| completed | Completed | collection | active | | /central/projects/completed | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| common-projects | Common Projects | project | active | | /central/projects/common-projects | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| coherence | Coherence-Refinement Physics | coherence, project | active | Axiom Framework: v5.2 (AXIOMS.txt) | /central/projects/coherence | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| coherence-antigravity | Coherence-Antigravity (Generative Physics) | coherence, project | active | Status: Experimental (v5.1 "TikTok v3 Aligned") | /central/projects/coherence-antigravity | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| cohere-dump | Cohere: CFF Validation Framework | project | active | A production-grade theoretical physics research framework for validating the Causal Futures Framework (CFF) hypothesis on measure collapse and quantum-like phase transitions. | /central/projects/cohere-dump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| structure | Codex Agent Visibility (Hardcoded) | project | active | | /central/projects/structure | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| claw-code | Claw Code | dirty, git | active |

| /central/repos/active/claw-code | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| calc | Calc | calc, project | active | | /central/projects/calc | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| test-repo | Central Git test from Windows | clean, git | active | | /central/repos/active/test-repo | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| bible-homepage | bible-homepage | bible, dirty, git | active | A minimalist personal homepage that displays a daily Bible verse each time you open your browser. It is designed to support scriptural reflection and a centered start to your day. | /central/repos/active/bible-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| bahai-homepage | Bahá’í Daily Homepage | bahai, dirty, git | active | A minimalist personal homepage that displays the current Badíʿ date and a daily selection from The Hidden Words by Bahá’u’lláh. It is designed to support spiritual reflection and a centered start to digital interactions. | /central/repos/active/bahai-homepage | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| braindump | AI_SYSTEM_SPEC | brain, project | active | A project-agnostic, auditable, agent-based AI system specification designed for clarity, scalability, and epistemic hygiene. | /central/projects/braindump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| scrollytelling | AI Compute "Phase Shift" Scrollytelling Visualization | dirty, git | active | > An interactive data visualization proving AI training compute broke Moore's Law in 2012. | /central/repos/active/scrollytelling | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| bridgeai | AI Companion | dirty, git | active | A mobile app that onboards professionals into practical AI usage through quick actions, a guided chatbot, and a lightweight library. | /central/repos/active/bridgeai | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| the-garden | AGENTS.md - Your Workspace | dirty, garden, git | active | | /central/repos/active/the_garden | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| agent-master-dump | Agent Master Repository | project | active | A comprehensive collection of 99 specialized AI agents organized into 69 plugins across 21 categories, with 112 modular skills for Claude Code workflow orchestration. | /central/projects/agent-master-dump | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| active | Active | collection | active | | /central/projects/active | ai-server / central-projects | 2026-05-19T00:19:56+00:00 | -| bahai-consultation-guide | A Practical Guide to Baha'i Consultation | bahai, dirty, git | active | Welcome to the Baha'i Consultation Guide! | /central/repos/active/bahai-consultation-guide | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| garden-of-wisdom | A Garden of Wisdom | dirty, garden, git | active | This is a personal collection of impactful quotes from various world religions and philosophies, curated for memorization and reflection. | /central/repos/active/Garden-of-Wisdom | ai-server / central-active | 2026-05-19T00:19:56+00:00 | -| google-drive:paperclip | paperclip | google-drive, paperclip, project_roots | active | Named project root that should surface in project-ledger ingestion before broader content extraction. | /home/matt/GoogleDrive/paperclip | ai-server / google-drive-policy:paperclip | 2026-05-11T20:47:40+00:00 | -| google-drive:paperclip/backups | backups | google-drive, paperclip, project_roots | | Named project root that should surface in project-ledger ingestion before broader content extraction. | /home/matt/GoogleDrive/paperclip/backups | ai-server / google-drive-policy:paperclip | 2026-05-11T20:47:40+00:00 | -| github.com/NousResearch/hermes-paperclip-adapter | Paperclip Adapter for Hermes Agent | | | A [Paperclip](https://paperclip.ing) adapter that lets you run [Hermes Agent](https://github.com/NousResearch/hermes-agent) as a managed employee in a Paperclip company. | /central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter | matthews-macbook-air-2 / matthews-macbook-air-2:hermes-paperclip-adapter | 2026-05-07T06:58:56+00:00 | -| google-drive:omi | OMI | google-drive, OMI, project_roots, timed-out-crawl | active | Named initiative root; treat as a project surface even though the first bounded crawl timed out. | /home/matt/GoogleDrive/OMI | ai-server / google-drive-policy:OMI | 2026-04-26T00:00:26+00:00 | -| hermes-ops-workflows | Hermes ops workflows | | | Small durable wrappers for repeated Hermes/local-ops workflows. | /central/repos/active/hermes-ops-workflows | ai-server / central-active | 2026-04-25T04:21:00+00:00 | -| google-drive:repos-other | repos-other | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other | ai-server / google-drive-policy:repos-other | 2026-04-20T23:24:24+00:00 | -| google-drive:repos-ms | repos-MS | google-drive, repos-MS, repo_like | | Repository-like root; classify and promote repo/project subroots before any expensive content ingestion. | /home/matt/GoogleDrive/repos-MS | ai-server / google-drive-policy:repos-MS | 2026-04-20T22:15:24+00:00 | -| github.com/mschwar/claude-overhaul | What this is | google-drive, repos-other, repo_like | | A versioned, deployable configuration for Claude Code's global ~/.claude/ directory. Every file in this repo maps to a file that gets deployed to ~/.claude/. The goal: every Claude Code session — regardless of project, language, or task — s | /home/matt/GoogleDrive/repos-other/claude-overhaul | ai-server / google-drive-policy:repos-other | 2026-04-20T18:54:38+00:00 | -| google-drive:projects | Projects | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | -| google-drive:projects/lmntl | LMNTL | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/LMNTL | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | -| google-drive:projects/legal | legal | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/legal | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | -| google-drive:projects/cv-resume | CV-Resume | google-drive, Projects, project_roots | | Primary project bucket; highest-value source for Drive-backed project discovery and later selective extraction. | /home/matt/GoogleDrive/Projects/CV-Resume | ai-server / google-drive-policy:Projects | 2026-04-20T18:48:31+00:00 | -| google-drive:edi | EDI | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI | ai-server / google-drive-policy:EDI | 2026-04-20T18:38:33+00:00 | -| google-drive:edi/_edi-stuff | _EDI-stuff | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/_EDI-stuff | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:55+00:00 | -| google-drive:edi/email-marketing | README.md | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/email-marketing | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | -| google-drive:edi/karina_share | Karina_Share | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Karina_Share | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | -| google-drive:edi/docs | docs | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/docs | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | -| google-drive:edi/assets | assets | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/assets | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | -| google-drive:edi/accounting | accounting | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/accounting | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | -| google-drive:edi/_archive | _archive | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/_archive | ai-server / google-drive-policy:EDI | 2026-04-20T18:37:50+00:00 | -| google-drive:repos-other/nano-build | nano-build | google-drive, repos-other, repo_like | | Personal learning vault for ML/deep learning, centered on Andrej Karpathy's | /home/matt/GoogleDrive/repos-other/nano-build | ai-server / google-drive-policy:repos-other | 2026-04-20T02:51:28+00:00 | -| google-drive:repos-other/marketing-skills-main | marketing-skills-main | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other/marketing-skills-main | ai-server / google-drive-policy:repos-other | 2026-04-17T01:43:54+00:00 | -| google-drive:repos-other/gstack-main | gstack-main | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other/gstack-main | ai-server / google-drive-policy:repos-other | 2026-04-17T01:43:54+00:00 | -| ai-agents-platform | AI Agents Platform | | | A unified deployment platform for LangGraph and CrewAI agents, exposed via a FastAPI service and containerized with Docker. | /central/repos/apps/ai-agents-platform | ai-server / central-apps | 2026-04-16T16:32:29+00:00 | -| google-drive:edi/elemental | ELEMENTAL | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/ELEMENTAL | ai-server / google-drive-policy:EDI | 2026-04-12T01:39:33+00:00 | -| google-drive:edi/edi | EDI | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/EDI | ai-server / google-drive-policy:EDI | 2026-03-24T02:58:56+00:00 | -| google-drive:edi/content | Content | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Content | ai-server / google-drive-policy:EDI | 2026-03-24T02:58:56+00:00 | -| google-drive:edi/meetings | meetings | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/meetings | ai-server / google-drive-policy:EDI | 2026-03-18T23:04:54+00:00 | -| google-drive:repos-other/sensiblewords-master | sensiblewords-master | google-drive, repos-other, repo_like | | Repository-like collection; best first use is durable project/repo discovery rather than document extraction. | /home/matt/GoogleDrive/repos-other/sensiblewords-master | ai-server / google-drive-policy:repos-other | 2026-03-11T03:28:39+00:00 | -| a-id-readme-top-a | | | | | /central/repos/apps/open-notebook-main | ai-server / central-apps | 2026-03-03T14:50:16+00:00 | -| google-drive:edi/_empty | _empty | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/_empty | ai-server / google-drive-policy:EDI | 2026-02-27T17:32:34+00:00 | -| google-drive:repos-other/fem_mesh_matlab-master | MATLAB Toolbox for Handling 2D and 3D FEM Meshes | google-drive, repos-other, repo_like | | ![license - BSD](https://img.shields.io/badge/license-BSD-green) | /home/matt/GoogleDrive/repos-other/fem_mesh_matlab-master | ai-server / google-drive-policy:repos-other | 2026-02-27T00:46:36+00:00 | -| bahaiwritings | bahaiwritings | | | The Bahá'í Writings in JSON format with supporting JSON Schema | /central/repos/active/bahaiwritings-main | ai-server / central-active | 2026-02-20T18:19:22+00:00 | -| div-align-center |

| | | GHBanner | /central/repos/active/consultlink---baha'i-consultation-guide | ai-server / central-active | 2026-02-19T06:41:32+00:00 | -| google-drive:edi/design & assets | Design & Assets | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Design & Assets | ai-server / google-drive-policy:EDI | 2026-01-22T20:01:58+00:00 | -| google-drive:edi/business development & partners | Business Development & Partners | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Business Development & Partners | ai-server / google-drive-policy:EDI | 2026-01-22T20:01:58+00:00 | -| google-drive:edi/strategy & brand | Strategy & Brand | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Strategy & Brand | ai-server / google-drive-policy:EDI | 2026-01-22T20:00:54+00:00 | -| google-drive:edi/product testing & compliance | Product Testing & Compliance | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Product Testing & Compliance | ai-server / google-drive-policy:EDI | 2026-01-22T20:00:54+00:00 | -| google-drive:edi/hr & internships | HR & Internships | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/HR & Internships | ai-server / google-drive-policy:EDI | 2026-01-22T20:00:54+00:00 | -| google-drive:edi/sourcing & cogs | Sourcing & COGS | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Sourcing & COGS | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | -| google-drive:edi/operations & culture | Operations & Culture | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Operations & Culture | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | -| google-drive:edi/customer service | Customer Service | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Customer Service | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | -| google-drive:edi/corporate & legal | Corporate & Legal | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Corporate & Legal | ai-server / google-drive-policy:EDI | 2026-01-22T19:59:57+00:00 | -| prompts | Prompts | | | Project-agnostic prompts that apply across all VibeCoding projects. | /central/repos/active/prompts | ai-server / central-active | 2026-01-14T01:42:10+00:00 | -| agents | Agents | | | Project-agnostic agent definitions for VibeCoding. | /central/repos/active/agents | ai-server / central-active | 2026-01-13T16:40:38+00:00 | -| vibe_brain | vibe_brain | | | | /central/repos/active/vibe_brain | ai-server / central-active | 2026-01-13T16:33:47+00:00 | -| projects | projects | | | | /central/repos/active/projects | ai-server / central-active | 2026-01-13T16:33:43+00:00 | -| templates | Templates | | | Project-agnostic file templates for consistent documentation and workflows. | /central/repos/active/templates | ai-server / central-active | 2026-01-13T16:32:44+00:00 | -| protocols | Protocols | | | Project-agnostic standards and conventions for consistent development practices. | /central/repos/active/protocols | ai-server / central-active | 2026-01-13T16:32:44+00:00 | -| workflows | Workflows | | | Project-agnostic workflow phases for the Vibe Coding methodology. | /central/repos/active/workflows | ai-server / central-active | 2026-01-13T16:32:06+00:00 | -| tools | Tools | | | CLI utilities for managing VibeCoding projects. | /central/repos/active/tools | ai-server / central-active | 2026-01-13T16:30:05+00:00 | -| contexts | Contexts | | | Project-agnostic context documents and knowledge graph patterns for AI-assisted development. | /central/repos/active/contexts | ai-server / central-active | 2026-01-13T16:30:05+00:00 | -| blueprints | Blueprints | | | Project Requirements Documents (PRDs) and architectural blueprints for VibeCoding projects. | /central/repos/active/blueprints | ai-server / central-active | 2026-01-13T16:30:05+00:00 | -| agent-runtime | agent runtime | | | | /central/repos/active/agent runtime | ai-server / central-active | 2026-01-13T01:10:59+00:00 | -| google-drive:edi/edi - ai dumps | EDI - AI dumps | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/EDI - AI dumps | ai-server / google-drive-policy:EDI | 2025-08-09T00:45:46+00:00 | -| google-drive:edi/customer database | Customer Database | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Customer Database | ai-server / google-drive-policy:EDI | 2025-08-09T00:45:46+00:00 | -| google-drive:edi/testimonials | testimonials | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/testimonials | ai-server / google-drive-policy:EDI | 2025-06-11T20:25:01+00:00 | -| google-drive:edi/sales | sales | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/sales | ai-server / google-drive-policy:EDI | 2025-06-11T20:22:14+00:00 | -| google-drive:edi/qc | QC | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/QC | ai-server / google-drive-policy:EDI | 2025-06-10T01:59:02+00:00 | -| google-drive:edi/tracking | tracking | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/tracking | ai-server / google-drive-policy:EDI | 2025-06-10T01:57:31+00:00 | -| google-drive:edi/market-research | market-research | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/market-research | ai-server / google-drive-policy:EDI | 2025-06-10T01:54:56+00:00 | -| google-drive:edi/financials | Financials | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Financials | ai-server / google-drive-policy:EDI | 2024-11-12T15:43:43+00:00 | -| google-drive:edi/elemental x fff docs | Elemental x FFF docs | google-drive, EDI, project_roots | | Known project/document area with substantial structure; promote project-like subroots first, then extract eligible text selectively. | /home/matt/GoogleDrive/EDI/Elemental x FFF docs | ai-server / google-drive-policy:EDI | 2024-05-18T20:12:09+00:00 | +| Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push | +| --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | +| Homelab Agent Platform | git | shared | yes | | 2026-06-01T18:00:30+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-27T00:01:06+00:00 | +| OpenClaw Meta Research | notes | local | | | 2026-06-01T06:00:04+00:00 | [README](../../../../central/projects/openclaw-meta-research/README.md) | [openclaw-meta-research](../../../../central/projects/openclaw-meta-research) | openclaw-meta-research | | +| Project Ledger | git | shared | yes | | 2026-05-26T19:30:37+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-26T19:31:10+00:00 | +| README.md - White Rabbit | git | shared | yes | | 2026-05-22T06:35:46+00:00 | [README](../../../../central/proxy-lead/README.md) | [url](https://github.com/mschwar/proxy-lead.git) | proxy-lead | 2026-05-22T06:19:50+00:00 | +| Higgsfield Agent Project | directory | local | | | 2026-05-21T22:23:02+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project/README.md) | [higgsfield-agent-project](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project) | higgsfield-agent-project | | +| Local Deep Research | git | shared | yes | | 2026-05-21T21:48:35+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research/README.md) | [url](https://github.com/LearningCircuit/local-deep-research.git) | local-deep-research | 2026-05-08T00:31:16+00:00 | +| Open Higgsfield AI — Open-Source Alternative to Higgsfield AI | directory | local | | | 2026-05-21T05:44:44+00:00 | [README](../../../../central/repos/apps/Open-Higgsfield-AI-main/README.md) | [Open-Higgsfield-AI-main](../../../../central/repos/apps/Open-Higgsfield-AI-main) | Open-Higgsfield-AI-main | | +| Homelab Agent Platform | git | shared | yes | | 2026-05-21T05:40:28+00:00 | [README](../../../../central/repos/infra/homelab-repo/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-04-16T17:29:52+00:00 | +| Slop Cannon Agent OS | git | shared | yes | | 2026-05-21T00:32:26+00:00 | [README](../../../../central/repos/active/agent-os/README.md) | [url](https://github.com/mschwar/agent-os.git) | agent-os | 2026-05-21T00:33:26+00:00 | +| white-rabbit | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/white-rabbit) | white-rabbit | | +| url-collection | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/url-collection) | url-collection | | +| toned | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/toned) | toned | | +| substrate | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/substrate) | substrate | | +| song-clean | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/song-clean) | song-clean | | +| slopvault-sessions | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/slopvault-sessions) | slopvault-sessions | | +| slopvault | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/slopvault) | slopvault | | +| scrollytelling | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/scrollytelling) | scrollytelling | | +| reality-ledger | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/reality-ledger) | reality-ledger | | +| prompt-refinery | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/prompt-refinery) | prompt-refinery | | +| project-ledger | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/project-ledger) | project-ledger | | +| project-eidos | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/project-eidos) | project-eidos | | +| orgatlas | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/orgatlas) | orgatlas | | +| Open-Higgsfield-AI | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/Open-Higgsfield-AI) | Open-Higgsfield-AI | | +| Obsidian Vault | obsidian | local | | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/Obsidian%20Vault) | Obsidian Vault | | +| misc-docs | obsidian | local | | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/misc-docs) | misc-docs | | +| lee-grapple-hook | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/lee-grapple-hook) | lee-grapple-hook | | +| lee-ai-learning | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/lee-ai-learning) | lee-ai-learning | | +| ledger | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/ledger) | ledger | | +| homelab | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/homelab) | homelab | | +| gstack-main | directory | local | | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/gstack-main) | gstack-main | | +| flow | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/flow) | flow | | +| elemental-inc | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/elemental-inc) | elemental-inc | | +| cpr | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/cpr) | cpr | | +| context-project | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/context-project) | context-project | | +| common-project | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/common-project) | common-project | | +| civstrate | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/civstrate) | civstrate | | +| BitNet | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/BitNet) | BitNet | | +| bahai-consultation-guide | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/bahai-consultation-guide) | bahai-consultation-guide | | +| bahai-9yr-plan-kb | git | local | yes | | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/bahai-9yr-plan-kb) | bahai-9yr-plan-kb | | +| ai-field-briefing | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/ai-field-briefing) | ai-field-briefing | | +| agent-os | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/agent-os) | agent-os | | +| 2026.TSLE.TEAM_internal-MS | git+obsidian | local | yes | yes | 2026-05-20T01:57:31+00:00 | | [url](gdrive://matty-pc/2026.TSLE.TEAM_internal-MS) | 2026.TSLE.TEAM_internal-MS | | +| White Rabbit v2 | git | shared | yes | | 2026-05-19T20:17:42+00:00 | [README](../../../../central/repos/active/white-rabbit/README.md) | [url](https://github.com/mschwar/white-rabbit.git) | white-rabbit | 2026-05-19T13:24:27-06:00 | +| LLM Council | directory | local | | | 2026-05-19T16:25:04+00:00 | [README](../../../../central/repos/apps/llm-council-master/README.md) | [llm-council-master](../../../../central/repos/apps/llm-council-master) | llm-council-master | | +| Homelab Agent Platform | git | shared | yes | | 2026-05-19T03:14:59+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-04-20T23:27:22-06:00 | +| Model Context Protocol servers | git | shared | yes | | 2026-05-19T00:43:20+00:00 | [README](../../../../central/services/mcp-servers/README.md) | [url](https://github.com/modelcontextprotocol/servers.git) | servers | 2026-04-14T11:12:18-04:00 | +| # Common Project: One Concept a Day | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/common-project/README.md) | [url](https://github.com/mschwar/common-project.git) | common-project | 2026-01-31T23:16:16-07:00 | +| White Rabbit | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/white-rabbit/README.md) | [url](https://github.com/mschwar/white-rabbit.git) | white-rabbit | 2026-05-09T13:21:28-06:00 | +| VibeCoding | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/VibeCoding/README.md) | [VibeCoding](../../../../central/repos/active/VibeCoding) | VibeCoding | | +| Turborepo starter | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/counterweight-tim/README.md) | [counterweight-tim](../../../../central/repos/active/counterweight-tim) | counterweight-tim | | +| Tsimane Oral Health Heatmap: A Data Visualization Project | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/data-visualization/README.md) | [url](https://github.com/mschwar/data-visualization.git) | data-visualization | 2026-02-16T13:50:17-07:00 | +| The Garden | git | local | yes | | 2026-05-19T00:19:56+00:00 | | [the_garden](../../../../central/git/the_garden) | the_garden | | +| Substrate | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/substrate.git) | substrate | 2026-02-16T13:50:23-07:00 | +| Song Clean | directory | local | | | 2026-05-19T00:19:56+00:00 | | [song-clean](../../../../central/projects/song-clean) | song-clean | | +| Sigil | directory | local | | | 2026-05-19T00:19:56+00:00 | | [sigil](../../../../central/projects/sigil) | sigil | | +| Scratch | notes | local | | | 2026-05-19T00:19:56+00:00 | | [scratch](../../../../central/projects/scratch) | scratch | | +| Repos | notes | local | | | 2026-05-19T00:19:56+00:00 | | [repos](../../../../central/projects/repos) | repos | | +| Reality Ledger | git | shared | yes | | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/reality-ledger.git) | reality-ledger | | +| Plots | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/plots/README.md) | [url](https://github.com/mschwar/plots.git) | plots | 2026-05-19T14:54:22-06:00 | +| Paper Repo | directory | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/paper-repo/README.md) | [paper-repo](../../../../central/projects/paper-repo) | paper-repo | | +| Notes | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [notes](../../../../central/projects/notes) | notes | | +| Northstar | directory | local | | | 2026-05-19T00:19:56+00:00 | | [northstar](../../../../central/projects/northstar) | northstar | | +| Mnemosyne | directory | local | | | 2026-05-19T00:19:56+00:00 | | [mnemosyne](../../../../central/projects/mnemosyne) | mnemosyne | | +| Lit | notes | local | | | 2026-05-19T00:19:56+00:00 | | [lit](../../../../central/projects/lit) | lit | | +| Lifestream | directory | local | | | 2026-05-19T00:19:56+00:00 | | [lifestream](../../../../central/projects/lifestream) | lifestream | | +| LetterOps | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/letters/README.md) | [url](https://github.com/mschwar/letters.git) | letters | 2026-02-16T13:50:31-07:00 | +| Isabel | directory | local | | | 2026-05-19T00:19:56+00:00 | | [isabel](../../../../central/projects/isabel) | isabel | | +| Interpret | directory | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/interpret/README.md) | [interpret](../../../../central/projects/interpret) | interpret | | +| Incubating | directory | local | | | 2026-05-19T00:19:56+00:00 | | [incubating](../../../../central/projects/incubating) | incubating | | +| Horizon Foundation Toolkit | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/foundation/README.md) | [foundation](../../../../central/projects/foundation) | foundation | | +| Hermes Maximization | directory | local | | | 2026-05-19T00:19:56+00:00 | | [hermes-maximization](../../../../central/projects/hermes-maximization) | hermes-maximization | | +| Greymatter | directory | local | | | 2026-05-19T00:19:56+00:00 | | [greymatter](../../../../central/projects/greymatter) | greymatter | | +| Entropy Project | directory | local | | | 2026-05-19T00:19:56+00:00 | | [entropy_project](../../../../central/projects/entropy_project) | entropy_project | | +| Directory Crawl: transcript_processing | directory | local | | | 2026-05-19T00:19:56+00:00 | | [transcript_processing](../../../../central/projects/transcript_processing) | transcript_processing | | +| Directory Crawl: reality-ledger | git | shared | yes | | 2026-05-19T00:19:56+00:00 | | [url](https://github.com/mschwar/reality-ledger.git) | reality-ledger | | +| Directory Crawl: email_processing | notes | local | | | 2026-05-19T00:19:56+00:00 | | [email_processing](../../../../central/projects/email_processing) | email_processing | | +| Directory Crawl: context-graph-engine | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [context-graph-engine](../../../../central/projects/context-graph-engine) | context-graph-engine | | +| ctx | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/context-project/README.md) | [url](https://github.com/mschwar/context-project.git) | context-project | 2026-03-22T16:08:27-06:00 | +| Csf | directory | local | | | 2026-05-19T00:19:56+00:00 | | [csf](../../../../central/projects/csf) | csf | | +| Convertwordto Pdf 1 | directory | local | | | 2026-05-19T00:19:56+00:00 | | [convertwordto-pdf-1](../../../../central/projects/convertwordto-pdf-1) | convertwordto-pdf-1 | | +| Constructive Understanding | directory | local | | | 2026-05-19T00:19:56+00:00 | | [constructive-understanding](../../../../central/projects/constructive-understanding) | constructive-understanding | | +| Completed | directory | local | | | 2026-05-19T00:19:56+00:00 | | [completed](../../../../central/projects/completed) | completed | | +| Common Projects | notes | local | | | 2026-05-19T00:19:56+00:00 | | [common-projects](../../../../central/projects/common-projects) | common-projects | | +| Coherence-Refinement Physics | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/coherence/README.md) | [coherence](../../../../central/projects/coherence) | coherence | | +| Coherence-Antigravity (Generative Physics) | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/coherence-antigravity/README.md) | [coherence-antigravity](../../../../central/projects/coherence-antigravity) | coherence-antigravity | | +| Cohere: CFF Validation Framework | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/cohere-dump/README.md) | [cohere-dump](../../../../central/projects/cohere-dump) | cohere-dump | | +| Codex Agent Visibility (Hardcoded) | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | | [structure](../../../../central/projects/structure) | structure | | +| Claw Code | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/claw-code/README.md) | [url](https://github.com/ultraworkers/claw-code.git) | claw-code | 2026-05-06T15:41:25+09:00 | +| Calc | notes | local | | | 2026-05-19T00:19:56+00:00 | | [calc](../../../../central/projects/calc) | calc | | +| Central Git test from Windows | git | local | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/test-repo/README.md) | [test-repo](../../../../central/repos/active/test-repo) | test-repo | | +| bible-homepage | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bible-homepage/README.md) | [url](https://github.com/mschwar/bible-homepage.git) | bible-homepage | 2026-02-16T13:50:12-07:00 | +| Bahá’í Daily Homepage | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bahai-homepage/README.md) | [url](https://github.com/mschwar/bahai-homepage.git) | bahai-homepage | 2026-02-07T19:15:10-06:00 | +| AI_SYSTEM_SPEC | obsidian | local | | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/braindump/README.md) | [braindump](../../../../central/projects/braindump) | braindump | | +| AI Compute "Phase Shift" Scrollytelling Visualization | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/scrollytelling/README.md) | [url](https://github.com/mschwar/scrollytelling.git) | scrollytelling | 2026-02-01T02:00:41-07:00 | +| AI Companion | git+obsidian | local | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bridgeai/README.md) | [bridgeai](../../../../central/repos/active/bridgeai) | bridgeai | | +| AGENTS.md - Your Workspace | git | local | yes | | 2026-05-19T00:19:56+00:00 | | [the_garden](../../../../central/repos/active/the_garden) | the_garden | | +| Agent Master Repository | notes | local | | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/projects/agent-master-dump/README.md) | [agent-master-dump](../../../../central/projects/agent-master-dump) | agent-master-dump | | +| Active | directory | local | | | 2026-05-19T00:19:56+00:00 | | [active](../../../../central/projects/active) | active | | +| A Practical Guide to Baha'i Consultation | git+obsidian | shared | yes | yes | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/bahai-consultation-guide/README.md) | [url](https://github.com/mschwar/bahai-consultation-guide.git) | bahai-consultation-guide | 2026-02-16T13:50:04-07:00 | +| A Garden of Wisdom | git | shared | yes | | 2026-05-19T00:19:56+00:00 | [README](../../../../central/repos/active/Garden-of-Wisdom/README.md) | [url](https://github.com/mschwar/Garden-of-Wisdom.git) | Garden-of-Wisdom | 2025-07-09T00:17:30-06:00 | +| paperclip | directory | shared | | | 2026-05-11T20:47:40+00:00 | | [url](gdrive://googledrive/paperclip) | paperclip | | +| backups | directory | shared | | | 2026-05-11T20:47:40+00:00 | | [url](gdrive://googledrive/paperclip/backups) | backups | | +| Paperclip Adapter for Hermes Agent | git | shared | yes | | 2026-05-07T06:58:56+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/hermes-paperclip-adapter/README.md) | [url](https://github.com/NousResearch/hermes-paperclip-adapter.git) | hermes-paperclip-adapter | 2026-04-03T22:44:23-07:00 | +| OMI | directory | shared | | | 2026-04-26T00:00:26+00:00 | | [url](gdrive://googledrive/OMI) | OMI | | +| Hermes ops workflows | directory | local | | | 2026-04-25T04:21:00+00:00 | [README](../../../../central/repos/active/hermes-ops-workflows/README.md) | [hermes-ops-workflows](../../../../central/repos/active/hermes-ops-workflows) | hermes-ops-workflows | | +| repos-other | git+obsidian | shared | yes | yes | 2026-04-20T23:24:24+00:00 | | [url](gdrive://googledrive/repos-other) | repos-other | | +| repos-MS | directory | shared | | | 2026-04-20T22:15:24+00:00 | | [url](gdrive://googledrive/repos-MS) | repos-MS | | +| What this is | git | shared | yes | | 2026-04-20T18:54:38+00:00 | [README](../../GoogleDrive/repos-other/claude-overhaul/README.md) | [url](gdrive://googledrive/repos-other/claude-overhaul) | claude-overhaul | | +| Projects | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects) | Projects | | +| LMNTL | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/LMNTL) | LMNTL | | +| legal | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/legal) | legal | | +| CV-Resume | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/CV-Resume) | CV-Resume | | +| EDI | obsidian | shared | | yes | 2026-04-20T18:38:33+00:00 | | [url](gdrive://googledrive/EDI) | EDI | | +| _EDI-stuff | directory | shared | | | 2026-04-20T18:37:55+00:00 | | [url](gdrive://googledrive/EDI/_EDI-stuff) | _EDI-stuff | | +| README.md | directory | shared | | | 2026-04-20T18:37:50+00:00 | [README](../../GoogleDrive/EDI/email-marketing/readme.md) | [url](gdrive://googledrive/EDI/email-marketing) | email-marketing | | +| Karina_Share | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/Karina_Share) | Karina_Share | | +| docs | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/docs) | docs | | +| assets | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/assets) | assets | | +| accounting | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/accounting) | accounting | | +| _archive | directory | shared | | | 2026-04-20T18:37:50+00:00 | | [url](gdrive://googledrive/EDI/_archive) | _archive | | +| nano-build | obsidian | shared | | yes | 2026-04-20T02:51:28+00:00 | [README](../../GoogleDrive/repos-other/nano-build/README.md) | [url](gdrive://googledrive/repos-other/nano-build) | nano-build | | +| marketing-skills-main | directory | shared | | | 2026-04-17T01:43:54+00:00 | | [url](gdrive://googledrive/repos-other/marketing-skills-main) | marketing-skills-main | | +| gstack-main | directory | shared | | | 2026-04-17T01:43:54+00:00 | | [url](gdrive://googledrive/repos-other/gstack-main) | gstack-main | | +| AI Agents Platform | directory | local | | | 2026-04-16T16:32:29+00:00 | [README](../../../../central/repos/apps/ai-agents-platform/README.md) | [ai-agents-platform](../../../../central/repos/apps/ai-agents-platform) | ai-agents-platform | | +| ELEMENTAL | directory | shared | | | 2026-04-12T01:39:33+00:00 | | [url](gdrive://googledrive/EDI/ELEMENTAL) | ELEMENTAL | | +| EDI | obsidian | shared | | yes | 2026-03-24T02:58:56+00:00 | | [url](gdrive://googledrive/EDI/EDI) | EDI | | +| Content | directory | shared | | | 2026-03-24T02:58:56+00:00 | | [url](gdrive://googledrive/EDI/Content) | Content | | +| meetings | directory | shared | | | 2026-03-18T23:04:54+00:00 | | [url](gdrive://googledrive/EDI/meetings) | meetings | | +| sensiblewords-master | directory | shared | | | 2026-03-11T03:28:39+00:00 | [README](../../GoogleDrive/repos-other/sensiblewords-master/README.md) | [url](gdrive://googledrive/repos-other/sensiblewords-master) | sensiblewords-master | | +| | notes | local | | | 2026-03-03T14:50:16+00:00 | [README](../../../../central/repos/apps/open-notebook-main/README.md) | [open-notebook-main](../../../../central/repos/apps/open-notebook-main) | open-notebook-main | | +| _empty | notes | shared | | | 2026-02-27T17:32:34+00:00 | | [url](gdrive://googledrive/EDI/_empty) | _empty | | +| MATLAB Toolbox for Handling 2D and 3D FEM Meshes | directory | shared | | | 2026-02-27T00:46:36+00:00 | [README](../../GoogleDrive/repos-other/fem_mesh_matlab-master/README.md) | [url](gdrive://googledrive/repos-other/fem_mesh_matlab-master) | fem_mesh_matlab-master | | +| bahaiwritings | directory | local | | | 2026-02-20T18:19:22+00:00 | [README](../../../../central/repos/active/bahaiwritings-main/README.md) | [bahaiwritings-main](../../../../central/repos/active/bahaiwritings-main) | bahaiwritings-main | | +|
| directory | local | | | 2026-02-19T06:41:32+00:00 | [README](../../../../central/repos/active/consultlink---baha%27i-consultation-guide/README.md) | [consultlink---baha'i-consultation-guide](../../../../central/repos/active/consultlink---baha%27i-consultation-guide) | consultlink---baha'i-consultation-guide | | +| Design & Assets | directory | shared | | | 2026-01-22T20:01:58+00:00 | | [url](gdrive://googledrive/EDI/Design%20%26%20Assets) | Design & Assets | | +| Business Development & Partners | directory | shared | | | 2026-01-22T20:01:58+00:00 | | [url](gdrive://googledrive/EDI/Business%20Development%20%26%20Partners) | Business Development & Partners | | +| Strategy & Brand | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/Strategy%20%26%20Brand) | Strategy & Brand | | +| Product Testing & Compliance | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/Product%20Testing%20%26%20Compliance) | Product Testing & Compliance | | +| HR & Internships | directory | shared | | | 2026-01-22T20:00:54+00:00 | | [url](gdrive://googledrive/EDI/HR%20%26%20Internships) | HR & Internships | | +| Sourcing & COGS | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Sourcing%20%26%20COGS) | Sourcing & COGS | | +| Operations & Culture | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Operations%20%26%20Culture) | Operations & Culture | | +| Customer Service | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Customer%20Service) | Customer Service | | +| Corporate & Legal | directory | shared | | | 2026-01-22T19:59:57+00:00 | | [url](gdrive://googledrive/EDI/Corporate%20%26%20Legal) | Corporate & Legal | | +| Prompts | directory | local | | | 2026-01-14T01:42:10+00:00 | [README](../../../../central/repos/active/prompts/README.md) | [prompts](../../../../central/repos/active/prompts) | prompts | | +| Agents | notes | local | | | 2026-01-13T16:40:38+00:00 | [README](../../../../central/repos/active/agents/README.md) | [agents](../../../../central/repos/active/agents) | agents | | +| vibe_brain | obsidian | local | | yes | 2026-01-13T16:33:47+00:00 | | [vibe_brain](../../../../central/repos/active/vibe_brain) | vibe_brain | | +| projects | notes | local | | | 2026-01-13T16:33:43+00:00 | | [projects](../../../../central/repos/active/projects) | projects | | +| Templates | directory | local | | | 2026-01-13T16:32:44+00:00 | [README](../../../../central/repos/active/templates/README.md) | [templates](../../../../central/repos/active/templates) | templates | | +| Protocols | directory | local | | | 2026-01-13T16:32:44+00:00 | [README](../../../../central/repos/active/protocols/README.md) | [protocols](../../../../central/repos/active/protocols) | protocols | | +| Workflows | notes | local | | | 2026-01-13T16:32:06+00:00 | [README](../../../../central/repos/active/workflows/README.md) | [workflows](../../../../central/repos/active/workflows) | workflows | | +| Tools | directory | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/tools/README.md) | [tools](../../../../central/repos/active/tools) | tools | | +| Contexts | notes | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/contexts/README.md) | [contexts](../../../../central/repos/active/contexts) | contexts | | +| Blueprints | directory | local | | | 2026-01-13T16:30:05+00:00 | [README](../../../../central/repos/active/blueprints/README.md) | [blueprints](../../../../central/repos/active/blueprints) | blueprints | | +| agent runtime | obsidian | local | | yes | 2026-01-13T01:10:59+00:00 | | [agent runtime](../../../../central/repos/active/agent%20runtime) | agent runtime | | +| EDI - AI dumps | directory | shared | | | 2025-08-09T00:45:46+00:00 | | [url](gdrive://googledrive/EDI/EDI%20-%20AI%20dumps) | EDI - AI dumps | | +| Customer Database | directory | shared | | | 2025-08-09T00:45:46+00:00 | | [url](gdrive://googledrive/EDI/Customer%20Database) | Customer Database | | +| testimonials | directory | shared | | | 2025-06-11T20:25:01+00:00 | | [url](gdrive://googledrive/EDI/testimonials) | testimonials | | +| sales | directory | shared | | | 2025-06-11T20:22:14+00:00 | | [url](gdrive://googledrive/EDI/sales) | sales | | +| QC | directory | shared | | | 2025-06-10T01:59:02+00:00 | | [url](gdrive://googledrive/EDI/QC) | QC | | +| tracking | directory | shared | | | 2025-06-10T01:57:31+00:00 | | [url](gdrive://googledrive/EDI/tracking) | tracking | | +| market-research | directory | shared | | | 2025-06-10T01:54:56+00:00 | | [url](gdrive://googledrive/EDI/market-research) | market-research | | +| Financials | directory | shared | | | 2024-11-12T15:43:43+00:00 | | [url](gdrive://googledrive/EDI/Financials) | Financials | | +| Elemental x FFF docs | directory | shared | | | 2024-05-18T20:12:09+00:00 | | [url](gdrive://googledrive/EDI/Elemental%20x%20FFF%20docs) | Elemental x FFF docs | | From 1a044e4338cdf047aa8e59b6f918dba428b8b712 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 2 Jun 2026 02:06:54 +0000 Subject: [PATCH 21/26] Refresh project ledger markdown --- docs/ledgers/projects-ledger.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index fc6671b..2e86c0e 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,18 +1,12 @@ # Project Ledger -Generated: 2026-06-01T19:55:40+00:00 +Generated: 2026-06-02T02:05:06+00:00 - Entries: 163 - Git repos: 61 - Obsidian vaults: 42 - Shared/synced: 104 -## What changed in this refresh - -- Refreshed the project-ledger scan at 2026-06-01T19:55:40+00:00 from live ai-server, matthews-macbook-air-2, and inventory-backed matty-pc roots. -- No configured roots were inaccessible in this pass. -- The project set stayed at 163 entries and 160 unique keys; no new project roots or repo families surfaced. - > `Last Push` uses `last_push_at` from the sidecar when available; otherwise it falls back to the newest local remote-ref timestamp. ## Scan coverage and gaps @@ -46,9 +40,9 @@ Generated: 2026-06-01T19:55:40+00:00 | Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push | | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| Homelab Agent Platform | git | shared | yes | | 2026-06-01T18:00:30+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-27T00:01:06+00:00 | +| Homelab Agent Platform | git | shared | yes | | 2026-06-02T00:00:34+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-27T00:01:06+00:00 | +| Project Ledger | git | shared | yes | | 2026-06-01T19:58:33+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-26T19:31:10+00:00 | | OpenClaw Meta Research | notes | local | | | 2026-06-01T06:00:04+00:00 | [README](../../../../central/projects/openclaw-meta-research/README.md) | [openclaw-meta-research](../../../../central/projects/openclaw-meta-research) | openclaw-meta-research | | -| Project Ledger | git | shared | yes | | 2026-05-26T19:30:37+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-26T19:31:10+00:00 | | README.md - White Rabbit | git | shared | yes | | 2026-05-22T06:35:46+00:00 | [README](../../../../central/proxy-lead/README.md) | [url](https://github.com/mschwar/proxy-lead.git) | proxy-lead | 2026-05-22T06:19:50+00:00 | | Higgsfield Agent Project | directory | local | | | 2026-05-21T22:23:02+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project/README.md) | [higgsfield-agent-project](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project) | higgsfield-agent-project | | | Local Deep Research | git | shared | yes | | 2026-05-21T21:48:35+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/local-deep-research/README.md) | [url](https://github.com/LearningCircuit/local-deep-research.git) | local-deep-research | 2026-05-08T00:31:16+00:00 | @@ -153,7 +147,7 @@ Generated: 2026-06-01T19:55:40+00:00 | Hermes ops workflows | directory | local | | | 2026-04-25T04:21:00+00:00 | [README](../../../../central/repos/active/hermes-ops-workflows/README.md) | [hermes-ops-workflows](../../../../central/repos/active/hermes-ops-workflows) | hermes-ops-workflows | | | repos-other | git+obsidian | shared | yes | yes | 2026-04-20T23:24:24+00:00 | | [url](gdrive://googledrive/repos-other) | repos-other | | | repos-MS | directory | shared | | | 2026-04-20T22:15:24+00:00 | | [url](gdrive://googledrive/repos-MS) | repos-MS | | -| What this is | git | shared | yes | | 2026-04-20T18:54:38+00:00 | [README](../../GoogleDrive/repos-other/claude-overhaul/README.md) | [url](gdrive://googledrive/repos-other/claude-overhaul) | claude-overhaul | | +| What this is | git | shared | yes | | 2026-04-20T18:54:38+00:00 | [README](../../GoogleDrive/repos-other/claude-overhaul/README.md) | [url](gdrive://googledrive/repos-other/claude-overhaul) | claude-overhaul | 2026-03-24T00:51:41-06:00 | | Projects | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects) | Projects | | | LMNTL | obsidian | shared | | yes | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/LMNTL) | LMNTL | | | legal | directory | shared | | | 2026-04-20T18:48:31+00:00 | | [url](gdrive://googledrive/Projects/legal) | legal | | From 5d531174bf7681f1dc57549c9ca3969757bb1f96 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 2 Jun 2026 14:21:13 +0000 Subject: [PATCH 22/26] docs: refresh project-ledger session metadata --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 1e9cfae..e422ee9 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-06-01T19:55:40Z", - "last_session_summary": "Refreshed the live project-ledger scan; all configured roots were readable in this pass, the project set stayed at 163 entries with 160 unique keys, and no new project roots surfaced.", + "last_session_at": "2026-06-02T14:19:39Z", + "last_session_summary": "Refreshed the project-ledger scan; local mirrors, inventories, and hub roots remained readable, while direct SSH to matty-pc and the MacBook timed out.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } From 02695bd95060577d2a458ebb1c046a0379212c3a Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Tue, 2 Jun 2026 20:27:00 +0000 Subject: [PATCH 23/26] Refresh project-ledger session metadata --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index e422ee9..b713e92 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-06-02T14:19:39Z", - "last_session_summary": "Refreshed the project-ledger scan; local mirrors, inventories, and hub roots remained readable, while direct SSH to matty-pc and the MacBook timed out.", + "last_session_at": "2026-06-02T20:26:18Z", + "last_session_summary": "Refreshed the project-ledger scan and synchronized the canonical homelab ledger; the configured roots stayed readable and no new gaps appeared.", "next_step": "Keep the scanner synced with new roots and identity sidecars.", "last_push_at": "" } From 08573f6bafe1e9b806a86634c3c8ae81d509b57a Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Wed, 3 Jun 2026 02:33:47 +0000 Subject: [PATCH 24/26] Refresh project ledger outputs --- .project-ledger.json | 6 +++--- docs/ledgers/projects-ledger.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index b713e92..6d44bce 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-06-02T20:26:18Z", - "last_session_summary": "Refreshed the project-ledger scan and synchronized the canonical homelab ledger; the configured roots stayed readable and no new gaps appeared.", - "next_step": "Keep the scanner synced with new roots and identity sidecars.", + "last_session_at": "2026-06-03T02:32:52Z", + "last_session_summary": "Refreshed the project-ledger scan, regenerated the raw outputs, and synced the canonical homelab ledger; the configured roots stayed readable and no new gaps appeared.", + "next_step": "Keep the scanner synced with new roots, stable identity sidecars, and the homelab ledger mirror.", "last_push_at": "" } diff --git a/docs/ledgers/projects-ledger.md b/docs/ledgers/projects-ledger.md index 2e86c0e..b9b6100 100644 --- a/docs/ledgers/projects-ledger.md +++ b/docs/ledgers/projects-ledger.md @@ -1,6 +1,6 @@ # Project Ledger -Generated: 2026-06-02T02:05:06+00:00 +Generated: 2026-06-03T02:32:02+00:00 - Entries: 163 - Git repos: 61 @@ -40,8 +40,8 @@ Generated: 2026-06-02T02:05:06+00:00 | Name | Type | Scope | Git | Obsidian | Last Touch | README | Location | Repo | Last Push | | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| Homelab Agent Platform | git | shared | yes | | 2026-06-02T00:00:34+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-27T00:01:06+00:00 | -| Project Ledger | git | shared | yes | | 2026-06-01T19:58:33+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-05-26T19:31:10+00:00 | +| Homelab Agent Platform | git | shared | yes | | 2026-06-03T00:01:03+00:00 | [README](../../../../central/repos/active/homelab/README.md) | [url](https://github.com/mschwar/homelab.git) | homelab | 2026-05-27T00:01:06+00:00 | +| Project Ledger | git | shared | yes | | 2026-06-02T20:26:27+00:00 | [README](../README.md) | [url](https://github.com/mschwar/project-ledger.git) | project-ledger | 2026-06-02T02:06:54+00:00 | | OpenClaw Meta Research | notes | local | | | 2026-06-01T06:00:04+00:00 | [README](../../../../central/projects/openclaw-meta-research/README.md) | [openclaw-meta-research](../../../../central/projects/openclaw-meta-research) | openclaw-meta-research | | | README.md - White Rabbit | git | shared | yes | | 2026-05-22T06:35:46+00:00 | [README](../../../../central/proxy-lead/README.md) | [url](https://github.com/mschwar/proxy-lead.git) | proxy-lead | 2026-05-22T06:19:50+00:00 | | Higgsfield Agent Project | directory | local | | | 2026-05-21T22:23:02+00:00 | [README](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project/README.md) | [higgsfield-agent-project](../../../../central/registry/mirrors/matthews-macbook-air-2/Documents/higgsfield-agent-project) | higgsfield-agent-project | | From ac956a91381f2dc48f346890b12c947f5a06c70b Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Wed, 3 Jun 2026 08:41:52 +0000 Subject: [PATCH 25/26] Refresh project-ledger session metadata --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index 6d44bce..ca69dda 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-06-03T02:32:52Z", - "last_session_summary": "Refreshed the project-ledger scan, regenerated the raw outputs, and synced the canonical homelab ledger; the configured roots stayed readable and no new gaps appeared.", + "last_session_at": "2026-06-03T08:40:19Z", + "last_session_summary": "Refreshed the project-ledger scan, regenerated the raw outputs, and synced the canonical homelab ledger mirror; all configured roots stayed readable and no new gaps appeared.", "next_step": "Keep the scanner synced with new roots, stable identity sidecars, and the homelab ledger mirror.", "last_push_at": "" } From 7a60641e46862945fab60d2f87122eeb23977281 Mon Sep 17 00:00:00 2001 From: Matt Schwar Date: Wed, 3 Jun 2026 20:56:12 +0000 Subject: [PATCH 26/26] Refresh project-ledger session metadata --- .project-ledger.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.project-ledger.json b/.project-ledger.json index ca69dda..8d37078 100644 --- a/.project-ledger.json +++ b/.project-ledger.json @@ -12,8 +12,8 @@ "repo_name": "project-ledger", "shared": true, "storage_scope": "shared", - "last_session_at": "2026-06-03T08:40:19Z", - "last_session_summary": "Refreshed the project-ledger scan, regenerated the raw outputs, and synced the canonical homelab ledger mirror; all configured roots stayed readable and no new gaps appeared.", + "last_session_at": "2026-06-03T20:55:55Z", + "last_session_summary": "Refreshed the project-ledger scan, regenerated the raw outputs, synced the canonical homelab ledger mirror, and verified the MacBook peer was reachable while matty-pc SSH timed out; inventory-backed roots remained readable.", "next_step": "Keep the scanner synced with new roots, stable identity sidecars, and the homelab ledger mirror.", "last_push_at": "" }