Created
April 28, 2026 21:05
-
-
Save SoMaCoSF/1aa21a3433f287208e751067d913a5d4 to your computer and use it in GitHub Desktop.
SoMaCoSF Corpus 2026-04-28 — 394 rows: 205 gists + 189 repos, Ghost Catalog fields, ES.exe-ready CSV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| SoMaCo Corpus Builder — build_corpus.py | |
| Slurps all SoMaCoSF gists + repos via gh CLI into Ghost Catalog–formatted CSV. | |
| Ghost Catalog fields (SOM-DOC convention): | |
| file_id, type, entity_id, description, category, visibility, | |
| language, created_at, updated_at, url, files_or_stars, | |
| is_fork, stack, status, tags | |
| Output: D:/somacosf/index/somacosf_corpus.csv | |
| """ | |
| import subprocess | |
| import json | |
| import csv | |
| import re | |
| import sys | |
| from datetime import datetime, timezone | |
| from pathlib import Path | |
| OUT_PATH = Path(r"D:\somacosf\index\somacosf_corpus.csv") | |
| NOW = datetime.now(timezone.utc) | |
| # ── Category inference ───────────────────────────────────────────────────────── | |
| CATEGORY_RULES = [ | |
| (r"platform|mission.control|dashboard|pulse|says.network|hub", "APP"), | |
| (r"uuid|gyst|protocol|spoctalk|locus|ghost.catalog", "LIB"), | |
| (r"api|endpoint|ingest|harvester|signal", "API"), | |
| (r"doc|spec|prd|architecture|guide|readme|brief", "DOC"), | |
| (r"config|\.env|settings|scaffold", "CFG"), | |
| (r"script|tool|cli|ps1|bat|automation", "SCR"), | |
| (r"component|card|panel|widget", "CMP"), | |
| (r"page|route|/pulse|/says", "PAG"), | |
| ] | |
| STACK_RULES = [ | |
| (r"next\.?js|nextjs|react|tailwind|vercel", "next.js"), | |
| (r"electron", "electron"), | |
| (r"python|py\b|flask|fastapi|uv\b", "python"), | |
| (r"typescript|ts\b", "typescript"), | |
| (r"javascript|js\b", "javascript"), | |
| (r"rust\b", "rust"), | |
| (r"go\b|golang", "go"), | |
| (r"powershell|ps1", "powershell"), | |
| (r"solidity|evm|base\b|usdc", "web3"), | |
| (r"sqlite|postgres|db\b", "db"), | |
| ] | |
| TAG_KEYWORDS = [ | |
| "uuid", "gyst", "harvester", "polymarket", "kalshi", "spoctalk", | |
| "prediction", "signal", "locus", "says", "popsoc", "vertex", | |
| "mcp", "agent", "cursor", "claude", "llm", "ollama", | |
| "three.js", "webgl", "webgpu", "manim", "svelte", "electron", | |
| "oligarch", "intelligence", "election", "dnc", | |
| ] | |
| def infer_category(text: str) -> str: | |
| t = text.lower() | |
| for pattern, cat in CATEGORY_RULES: | |
| if re.search(pattern, t): | |
| return cat | |
| return "DOC" | |
| def infer_stack(text: str, lang: str) -> str: | |
| combined = (text + " " + (lang or "")).lower() | |
| stacks = [] | |
| for pattern, stack in STACK_RULES: | |
| if re.search(pattern, combined): | |
| stacks.append(stack) | |
| return ",".join(stacks[:3]) if stacks else (lang or "").lower() or "—" | |
| def infer_tags(text: str) -> str: | |
| t = text.lower() | |
| return ",".join(k for k in TAG_KEYWORDS if k in t)[:120] | |
| def infer_status(updated_at: str) -> str: | |
| try: | |
| dt = datetime.fromisoformat(updated_at.replace("Z", "+00:00")) | |
| age_days = (NOW - dt).days | |
| if age_days < 30: return "active" | |
| if age_days < 90: return "warm" | |
| return "stale" | |
| except Exception: | |
| return "unknown" | |
| # ── Gist parsing (from gh gist list plain-text) ──────────────────────────────── | |
| def fetch_gists() -> list[dict]: | |
| """Run gh gist list and parse tab-separated output.""" | |
| result = subprocess.run( | |
| ["gh", "gist", "list", "--limit", "300"], | |
| capture_output=True, text=True, encoding="utf-8", errors="replace" | |
| ) | |
| rows = [] | |
| for i, line in enumerate(result.stdout.strip().splitlines()): | |
| parts = line.split("\t") | |
| if len(parts) < 5: | |
| continue | |
| gist_id = parts[0].strip() | |
| desc = parts[1].strip() | |
| files_str = parts[2].strip() # "3 files" or "1 file" | |
| visibility = parts[3].strip() # public / secret | |
| created_at = parts[4].strip() # ISO 8601 | |
| file_count = int(re.search(r"\d+", files_str).group()) if re.search(r"\d+", files_str) else 1 | |
| seq = str(i + 1).zfill(4) | |
| rows.append({ | |
| "file_id": f"SOM-GST-{seq}", | |
| "type": "GIST", | |
| "entity_id": gist_id, | |
| "description": desc[:200], | |
| "category": infer_category(desc), | |
| "visibility": visibility, | |
| "language": "—", | |
| "created_at": created_at, | |
| "updated_at": created_at, | |
| "url": f"https://gist.github.com/SoMaCoSF/{gist_id}", | |
| "files_or_stars": str(file_count), | |
| "is_fork": "false", | |
| "stack": infer_stack(desc, ""), | |
| "status": infer_status(created_at), | |
| "tags": infer_tags(desc), | |
| }) | |
| return rows | |
| # ── Repo parsing (from gh repo list JSON) ───────────────────────────────────── | |
| def fetch_repos() -> list[dict]: | |
| result = subprocess.run( | |
| ["gh", "repo", "list", "SoMaCoSF", "--limit", "300", | |
| "--json", "name,description,url,createdAt,updatedAt,primaryLanguage,isPrivate,isFork"], | |
| capture_output=True, text=True, encoding="utf-8", errors="replace" | |
| ) | |
| try: | |
| data = json.loads(result.stdout) | |
| except json.JSONDecodeError: | |
| print(f"[WARN] Could not parse repos JSON: {result.stdout[:200]}", file=sys.stderr) | |
| return [] | |
| rows = [] | |
| for i, repo in enumerate(data): | |
| name = repo.get("name", "") | |
| desc = repo.get("description") or "" | |
| url = repo.get("url", "") | |
| created_at = repo.get("createdAt", "") | |
| updated_at = repo.get("updatedAt", "") | |
| lang_obj = repo.get("primaryLanguage") or {} | |
| lang = lang_obj.get("name", "") if lang_obj else "" | |
| is_private = repo.get("isPrivate", False) | |
| is_fork = repo.get("isFork", False) | |
| seq = str(i + 1).zfill(4) | |
| combined = name + " " + desc | |
| visibility = "private" if is_private else "public" | |
| rows.append({ | |
| "file_id": f"SOM-REP-{seq}", | |
| "type": "REPO", | |
| "entity_id": name, | |
| "description": desc[:200], | |
| "category": infer_category(combined), | |
| "visibility": visibility, | |
| "language": lang, | |
| "created_at": created_at, | |
| "updated_at": updated_at, | |
| "url": url, | |
| "files_or_stars": "—", | |
| "is_fork": str(is_fork).lower(), | |
| "stack": infer_stack(combined, lang), | |
| "status": infer_status(updated_at), | |
| "tags": infer_tags(combined), | |
| }) | |
| return rows | |
| # ── Main ─────────────────────────────────────────────────────────────────────── | |
| FIELDS = [ | |
| "file_id", "type", "entity_id", "description", "category", | |
| "visibility", "language", "created_at", "updated_at", "url", | |
| "files_or_stars", "is_fork", "stack", "status", "tags", | |
| ] | |
| def main(): | |
| print("Fetching gists...") | |
| gists = fetch_gists() | |
| print(f" {len(gists)} gists") | |
| print("Fetching repos...") | |
| repos = fetch_repos() | |
| print(f" {len(repos)} repos") | |
| all_rows = gists + repos | |
| # Sort: active first, then by updated_at desc | |
| status_order = {"active": 0, "warm": 1, "stale": 2, "unknown": 3} | |
| all_rows.sort(key=lambda r: ( | |
| status_order.get(r["status"], 9), | |
| r["updated_at"] | |
| ), reverse=False) | |
| # secondary: updated_at desc within same status bucket | |
| all_rows.sort(key=lambda r: r["updated_at"], reverse=True) | |
| all_rows.sort(key=lambda r: status_order.get(r["status"], 9)) | |
| OUT_PATH.parent.mkdir(parents=True, exist_ok=True) | |
| with open(OUT_PATH, "w", newline="", encoding="utf-8") as f: | |
| writer = csv.DictWriter(f, fieldnames=FIELDS) | |
| writer.writeheader() | |
| writer.writerows(all_rows) | |
| print(f"\nCorpus written: {OUT_PATH}") | |
| print(f"Total rows: {len(all_rows)} ({len(gists)} gists + {len(repos)} repos)") | |
| # Summary breakdown | |
| cats = {} | |
| stks = {} | |
| stats = {} | |
| for r in all_rows: | |
| cats[r["category"]] = cats.get(r["category"], 0) + 1 | |
| stats[r["status"]] = stats.get(r["status"], 0) + 1 | |
| for s in r["stack"].split(","): | |
| s = s.strip() | |
| if s and s != "—": | |
| stks[s] = stks.get(s, 0) + 1 | |
| print("\nBy category:") | |
| for k, v in sorted(cats.items(), key=lambda x: -x[1]): | |
| print(f" {k:6} {v}") | |
| print("\nBy status:") | |
| for k, v in sorted(stats.items(), key=lambda x: -x[1]): | |
| print(f" {k:8} {v}") | |
| print("\nTop stacks:") | |
| for k, v in sorted(stks.items(), key=lambda x: -x[1])[:10]: | |
| print(f" {k:20} {v}") | |
| if __name__ == "__main__": | |
| main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| file_id | type | entity_id | description | category | visibility | language | created_at | updated_at | url | files_or_stars | is_fork | stack | status | tags | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SOM-REP-0001 | REPO | somacosf-platform | SoMaCo Protocol Mission Control — GYST UUIDv8 agentic token reduction platform | APP | private | TypeScript | 2026-04-16T21:48:16Z | 2026-04-28T19:49:08Z | https://github.com/SoMaCoSF/somacosf-platform | — | false | typescript | active | uuid,gyst,agent | |
| SOM-GST-0001 | GIST | 5331ab493e7de69193aeab1c45992f28 | SOMACOSF System State 2026-04-28 — Harvester Pipeline, Mission Control, UUID Architecture, Paper Stats, What Works, What's Next | APP | public | — | 2026-04-28T19:11:32Z | 2026-04-28T19:11:32Z | https://gist.github.com/SoMaCoSF/5331ab493e7de69193aeab1c45992f28 | 1 | false | typescript | active | uuid,harvester | |
| SOM-GST-0002 | GIST | 6af0a31f9197d2b148f20b1a2baff1c0 | SoMaCo AI Datacenter Supply Chain Intelligence — C-Suite network, 95B capex flows, GYST UUID registry, Polymarket gap analysis, Mermaid diagrams | LIB | secret | — | 2026-04-28T19:11:31Z | 2026-04-28T19:11:31Z | https://gist.github.com/SoMaCoSF/6af0a31f9197d2b148f20b1a2baff1c0 | 1 | false | — | active | uuid,gyst,polymarket,intelligence | |
| SOM-GST-0003 | GIST | 3324c8c40da9f482db46f2271990a3cf | SoMaCo AI Datacenter Commodity Intelligence — Supply Chain Divergence · Market Creation · GYST UUID v8 · Mermaid Diagrams + Math | LIB | public | — | 2026-04-28T16:23:39Z | 2026-04-28T16:23:39Z | https://gist.github.com/SoMaCoSF/3324c8c40da9f482db46f2271990a3cf | 1 | false | — | active | uuid,gyst,intelligence | |
| SOM-GST-0004 | GIST | 5c678c932912de14bb297ba56ca75dcf | GYST UUID State Audit — content-address completeness analysis | LIB | public | — | 2026-04-28T14:18:06Z | 2026-04-28T14:18:06Z | https://gist.github.com/SoMaCoSF/5c678c932912de14bb297ba56ca75dcf | 1 | false | — | active | uuid,gyst | |
| SOM-GST-0005 | GIST | 200846414f786786ba9f5633dfad8b4c | GYST UUID Protocol Audit — rand42 violation introduced and corrected | LIB | public | — | 2026-04-28T14:13:16Z | 2026-04-28T14:13:16Z | https://gist.github.com/SoMaCoSF/200846414f786786ba9f5633dfad8b4c | 1 | false | — | active | uuid,gyst | |
| SOM-GST-0006 | GIST | 82396871b9f31f62ee65d91b180d138a | SoMaCoSF Master State 2026-04-28 — Hormuz Pipeline, UUID Provenance, Funding Guide, Positions Reality Check, Anduril/Epirus, Locus, 50 Allocation | LIB | secret | — | 2026-04-28T06:06:53Z | 2026-04-28T06:06:53Z | https://gist.github.com/SoMaCoSF/82396871b9f31f62ee65d91b180d138a | 1 | false | — | active | uuid,locus | |
| SOM-GST-0007 | GIST | a1525d585585f6c5f182c1f11d885f5a | Hormuz Harvester — Reality Check, Funding Guide, UUID Provenance Eval (2026-04-28) | LIB | secret | — | 2026-04-28T06:03:46Z | 2026-04-28T06:03:46Z | https://gist.github.com/SoMaCoSF/a1525d585585f6c5f182c1f11d885f5a | 1 | false | — | active | uuid,harvester | |
| SOM-REP-0002 | REPO | somaco_brain | SoMaCo personal knowledge brain — GYST protocol | LIB | private | 2026-04-28T01:35:04Z | 2026-04-28T01:43:52Z | https://github.com/SoMaCoSF/somaco_brain | — | false | — | active | gyst | ||
| SOM-REP-0003 | REPO | gbrain | Garry's Opinionated OpenClaw/Hermes Agent Brain | DOC | public | TypeScript | 2026-04-28T00:49:41Z | 2026-04-28T00:49:42Z | https://github.com/SoMaCoSF/gbrain | — | true | typescript | active | agent | |
| SOM-GST-0008 | GIST | f95f15904348e3f51323c2106575566e | SoMaCo Platform Architecture — somacosf.com signal lattice, routes, data flows, trader intelligence DB | APP | secret | — | 2026-04-27T23:11:57Z | 2026-04-27T23:11:57Z | https://gist.github.com/SoMaCoSF/f95f15904348e3f51323c2106575566e | 1 | false | db | active | signal,intelligence | |
| SOM-GST-0009 | GIST | aea510b99983d6f557e00b6feec70b15 | Hormuz Convergence Harvester — Full Architecture (SoMaCoSF, 2026-04-27) | API | secret | — | 2026-04-27T18:45:08Z | 2026-04-27T18:45:08Z | https://gist.github.com/SoMaCoSF/aea510b99983d6f557e00b6feec70b15 | 1 | false | — | active | harvester | |
| SOM-GST-0010 | GIST | 5180e34bf11e0d1d80b69d483aca1bb8 | SoMaCoSF Routes Sweep + revisit-deferred Skill (2026-04-23) | PAG | secret | — | 2026-04-26T19:23:43Z | 2026-04-26T19:23:43Z | https://gist.github.com/SoMaCoSF/5180e34bf11e0d1d80b69d483aca1bb8 | 1 | false | — | active | ||
| SOM-REP-0089 | REPO | tda-mapper-python | A simple and efficient Python implementation of Mapper algorithm for Topological Data Analysis | DOC | public | Python | 2026-04-25T03:14:22Z | 2026-04-25T03:14:23Z | https://github.com/SoMaCoSF/tda-mapper-python | — | true | python | active | ||
| SOM-REP-0008 | REPO | coherence-lattice-alpha | Derives the fine structure constant α = 1/137.036 from first principles: the Coherence Learning Rule on the diamond lattice. Zero free parameters. 1.5 ppb precision. | DOC | public | Python | 2026-04-23T19:54:15Z | 2026-04-23T19:54:15Z | https://github.com/SoMaCoSF/coherence-lattice-alpha | — | true | python | active | ||
| SOM-GST-0011 | GIST | f006cdd95816d6df268b85051454ea32 | Somaco Protocol — Brief for Jensen Huang (2026-04-23) | LIB | secret | — | 2026-04-23T19:30:42Z | 2026-04-23T19:30:42Z | https://gist.github.com/SoMaCoSF/f006cdd95816d6df268b85051454ea32 | 1 | false | — | active | ||
| SOM-REP-0017 | REPO | twitter-skills | Claude Code plugins for meta-cognitive augmentation | DOC | public | TypeScript | 2026-04-23T15:19:38Z | 2026-04-23T15:19:39Z | https://github.com/SoMaCoSF/twitter-skills | — | true | typescript | active | claude | |
| SOM-GST-0012 | GIST | d7c39eb55364d7af06b042e4bc578812 | somacosf pulse primer — onboarding users to sentiment_group pulses 2026-04-23 | APP | secret | — | 2026-04-23T15:02:59Z | 2026-04-23T15:02:59Z | https://gist.github.com/SoMaCoSF/d7c39eb55364d7af06b042e4bc578812 | 1 | false | — | active | ||
| SOM-GST-0013 | GIST | 3adb663a9b6fa6379d516c464d7874db | somacosf sentiment_group build snapshot 2026-04-23 | DOC | secret | — | 2026-04-23T14:58:26Z | 2026-04-23T14:58:26Z | https://gist.github.com/SoMaCoSF/3adb663a9b6fa6379d516c464d7874db | 1 | false | — | active | ||
| SOM-GST-0014 | GIST | 70595bcab36e5b906e8c090765fc36ac | T11a/b/c sprint — orderbook + Manifold/Metaculus calibration + collision fix (Echeverria + Broz + Rennert) | DOC | secret | — | 2026-04-23T14:12:41Z | 2026-04-23T14:12:41Z | https://gist.github.com/SoMaCoSF/70595bcab36e5b906e8c090765fc36ac | 4 | false | — | active | ||
| SOM-GST-0015 | GIST | 218deddb9bee979e5e83abe8d951c8aa | Sprint 2026-04-23 cohesive master — §11 Operational Spine: channels + x402 + T10 complete | DOC | secret | — | 2026-04-23T07:20:59Z | 2026-04-23T07:20:59Z | https://gist.github.com/SoMaCoSF/218deddb9bee979e5e83abe8d951c8aa | 4 | false | — | active | ||
| SOM-GST-0016 | GIST | 1da33efd5003b9bff193186723e92074 | SOM-T10 meta.role backfill + /api/forecast/prompt assembler (Okafor + Valtorre) | API | secret | — | 2026-04-23T07:04:27Z | 2026-04-23T07:04:27Z | https://gist.github.com/SoMaCoSF/1da33efd5003b9bff193186723e92074 | 1 | false | — | active | ||
| SOM-GST-0017 | GIST | 38aa8c0466df358f70d478840791d884 | SOM-DOC-0036 Somaco Protocol master v2026.04.22 + TurboQuant + lattice helpers | LIB | secret | — | 2026-04-23T06:59:26Z | 2026-04-23T06:59:26Z | https://gist.github.com/SoMaCoSF/38aa8c0466df358f70d478840791d884 | 3 | false | — | active | ||
| SOM-GST-0018 | GIST | e98cb194ac5cd5e6a3988414be335fa5 | SOM — T9a+T9b bundle: markets.prediction lattice slice + Evidence Map cardlet + /api/forecast (Leni Memo v2) | API | secret | — | 2026-04-23T06:48:06Z | 2026-04-23T06:48:06Z | https://gist.github.com/SoMaCoSF/e98cb194ac5cd5e6a3988414be335fa5 | 3 | false | typescript | active | prediction | |
| SOM-GST-0019 | GIST | ef7a256b031c5d687dc31c4e5bcae880 | SOM-DOC-0035 v0.3 — SoMaCoSF stack positioning correction (OSI L8-9 truth-knowledge lattice) | DOC | secret | — | 2026-04-23T06:39:36Z | 2026-04-23T06:39:36Z | https://gist.github.com/SoMaCoSF/ef7a256b031c5d687dc31c4e5bcae880 | 1 | false | — | active | ||
| SOM-GST-0020 | GIST | 99a8a2d65f99447a3c581988d4fa60ea | SOM-DOC-0034 v0.2 Leni addendum — evidence map / memo / post-mortem / prediction_market — 2026-04-22 | DOC | secret | — | 2026-04-23T06:32:18Z | 2026-04-23T06:32:18Z | https://gist.github.com/SoMaCoSF/99a8a2d65f99447a3c581988d4fa60ea | 1 | false | — | active | prediction | |
| SOM-GST-0021 | GIST | 10ae697b4d1cc30b2c6b1e2fdfff6b8f | SOM-DOC-0034 Signal Service Master — concept/sentiment_group/walletscape/cardlet/colloquy — 2026-04-22 | API | secret | — | 2026-04-23T05:54:26Z | 2026-04-23T05:54:26Z | https://gist.github.com/SoMaCoSF/10ae697b4d1cc30b2c6b1e2fdfff6b8f | 1 | false | — | active | signal | |
| SOM-REP-0004 | REPO | three-geospatial | Geospatial Rendering in Three.js | DOC | public | TypeScript | 2026-04-22T18:57:07Z | 2026-04-22T18:57:07Z | https://github.com/SoMaCoSF/three-geospatial | — | true | typescript,javascript | active | three.js | |
| SOM-REP-0005 | REPO | OpenMythos | A theoretical reconstruction of the Claude Mythos architecture, built from first principles using the available research literature. | DOC | public | Python | 2026-04-22T17:21:19Z | 2026-04-22T17:21:19Z | https://github.com/SoMaCoSF/OpenMythos | — | true | python | active | claude | |
| SOM-GST-0023 | GIST | 5e280135ab3fc55ade6b41ef9190d817 | Colloquy v0.0.2 red-team bundle — 2026-04-22 | DOC | secret | — | 2026-04-22T08:20:59Z | 2026-04-22T08:20:59Z | https://gist.github.com/SoMaCoSF/5e280135ab3fc55ade6b41ef9190d817 | 1 | false | — | active | ||
| SOM-GST-0022 | GIST | b19dafd0912f434fca4477f138a29bc0 | Colloquy user stories — 4 verticals, 15 queries, 2026-04-22 | DOC | secret | — | 2026-04-22T08:15:09Z | 2026-04-22T08:15:09Z | https://gist.github.com/SoMaCoSF/b19dafd0912f434fca4477f138a29bc0 | 1 | false | — | active | ||
| SOM-GST-0024 | GIST | c8ddbf8ed7d88f39563dd3eb1540a3ac | colloquy v0.0.1 — first-class multi-turn sessions as GYST UUID artifacts (2026-04-22) | LIB | secret | — | 2026-04-22T07:33:09Z | 2026-04-22T07:33:09Z | https://gist.github.com/SoMaCoSF/c8ddbf8ed7d88f39563dd3eb1540a3ac | 1 | false | typescript | active | uuid,gyst | |
| SOM-REP-0006 | REPO | somacosf | Mission control - 144 projects across 2 machines | APP | private | Python | 2026-03-31T22:14:31Z | 2026-04-22T07:33:07Z | https://github.com/SoMaCoSF/somacosf | — | false | python,typescript | active | ||
| SOM-GST-0025 | GIST | 12bbc1c360c4b8f8f571e7d684ec5559 | SoMaCo Prediction Market Engine — Complete System Documentation + Deploy Guide April 2026 | DOC | secret | — | 2026-04-21T00:16:51Z | 2026-04-21T00:16:51Z | https://gist.github.com/SoMaCoSF/12bbc1c360c4b8f8f571e7d684ec5559 | 1 | false | — | active | prediction | |
| SOM-REP-0007 | REPO | prediction-market-analysis | A framework for collecting and analyzing prediction market data, including the largest publicly available dataset of Polymarket and Kalshi market and trade data. | DOC | public | Python | 2026-04-20T21:56:22Z | 2026-04-20T21:56:22Z | https://github.com/SoMaCoSF/prediction-market-analysis | — | true | python | active | polymarket,kalshi,prediction | |
| SOM-GST-0026 | GIST | 07acca8ccc96fd164719e07481cc1127 | SoMaCo Protocol — Full System State April 16 2026 | LIB | secret | — | 2026-04-17T03:39:40Z | 2026-04-17T03:39:40Z | https://gist.github.com/SoMaCoSF/07acca8ccc96fd164719e07481cc1127 | 1 | false | — | active | ||
| SOM-GST-0027 | GIST | 889f663d58275db53437bdbb7ee2479a | GYST x Mamba-MoE x Aerodrome: Full System Architecture — SoMaCo Protocol PhD Synthesis April 2026 | LIB | secret | — | 2026-04-17T01:19:16Z | 2026-04-17T01:19:16Z | https://gist.github.com/SoMaCoSF/889f663d58275db53437bdbb7ee2479a | 1 | false | — | active | gyst | |
| SOM-REP-0011 | REPO | Thoth | Thoth - Personal AI Sovereignty. A local-first AI assistant with integrated tools, a personal knowledge graph, voice, vision, shell, browser automation, scheduled tasks, health tracking, and messaging | SCR | public | Python | 2026-04-16T13:21:01Z | 2026-04-16T13:21:01Z | https://github.com/SoMaCoSF/Thoth | — | true | python | active | ollama | |
| SOM-REP-0028 | REPO | MANPADS-System-Launcher-and-Rocket | DOC | public | C++ | 2026-04-15T23:01:45Z | 2026-04-15T23:01:45Z | https://github.com/SoMaCoSF/MANPADS-System-Launcher-and-Rocket | — | true | c++ | active | |||
| SOM-REP-0009 | REPO | spark-researcher | Lightweight autoresearch with guarded self-improvement, simple memory, and Obsidian observability. | DOC | public | Python | 2026-04-15T21:49:12Z | 2026-04-15T21:49:12Z | https://github.com/SoMaCoSF/spark-researcher | — | true | python | active | ||
| SOM-REP-0027 | REPO | codeflow | Paste any GitHub URL → interactive architecture map. See how files connect, find what breaks if you change something. No install, no accounts — runs entirely in your browser. | APP | public | HTML | 2026-04-15T08:56:30Z | 2026-04-15T08:57:10Z | https://github.com/SoMaCoSF/codeflow | — | true | typescript | active | ||
| SOM-GST-0028 | GIST | 783de3d3923f80e4ae3c0f9b1e9c5fb9 | GYST UUIDv8 x TurboQuant — Investor Proof Document: Honest Math, Corrected Claims, Real Numbers | LIB | secret | — | 2026-04-14T18:59:24Z | 2026-04-14T18:59:24Z | https://gist.github.com/SoMaCoSF/783de3d3923f80e4ae3c0f9b1e9c5fb9 | 1 | false | — | active | uuid,gyst | |
| SOM-REP-0010 | REPO | Decepticon | Autonomous Hacking Agent for Red Team Testing | DOC | public | Python | 2026-04-14T15:46:14Z | 2026-04-14T15:46:14Z | https://github.com/SoMaCoSF/Decepticon | — | true | python | active | agent | |
| SOM-GST-0029 | GIST | cea6932575feda72b00cdd727fce6dca | GYST UUIDv8 x TurboQuant — Closed-Loop City-Scale Grounded AI Stack: Full Implementation | LIB | secret | — | 2026-04-14T01:07:38Z | 2026-04-14T01:07:38Z | https://gist.github.com/SoMaCoSF/cea6932575feda72b00cdd727fce6dca | 1 | false | — | active | uuid,gyst | |
| SOM-REP-0023 | REPO | turboquant | TurboQuant: Near-optimal KV cache quantization for LLM inference (3-bit keys, 2-bit values) with Triton kernels + vLLM integration | DOC | public | Python | 2026-04-14T00:45:40Z | 2026-04-14T00:45:40Z | https://github.com/SoMaCoSF/turboquant | — | true | python | active | llm | |
| SOM-GST-0030 | GIST | fd0a7892b617bf6f07adb9fcdd6db473 | GYST UUIDv8 + The Says Network — Bending the Internet Into UUID | APP | secret | — | 2026-04-13T21:23:56Z | 2026-04-13T21:23:56Z | https://gist.github.com/SoMaCoSF/fd0a7892b617bf6f07adb9fcdd6db473 | 1 | false | — | active | uuid,gyst,says | |
| SOM-GST-0031 | GIST | f5c8e8cb65a7d058f29a5026a5f81676 | GYST + Polymarket: ELI Jr Engineer → Production Playbook | LIB | secret | — | 2026-04-13T20:27:56Z | 2026-04-13T20:27:56Z | https://gist.github.com/SoMaCoSF/f5c8e8cb65a7d058f29a5026a5f81676 | 1 | false | — | active | gyst,polymarket | |
| SOM-GST-0032 | GIST | e806d3c13c1f13d882ca7dc1b754dc5d | GYST UUIDv8 WASM Component — Somaco Protocol | LIB | secret | — | 2026-04-13T20:09:24Z | 2026-04-13T20:09:24Z | https://gist.github.com/SoMaCoSF/e806d3c13c1f13d882ca7dc1b754dc5d | 1 | false | — | active | uuid,gyst | |
| SOM-GST-0033 | GIST | 378548cecf38f8a3f5785ecda96a2d75 | GYST UUIDv8 x Polymarket — Somaco Protocol: Bending the Internet Into UUID | LIB | secret | — | 2026-04-13T19:51:45Z | 2026-04-13T19:51:45Z | https://gist.github.com/SoMaCoSF/378548cecf38f8a3f5785ecda96a2d75 | 1 | false | — | active | uuid,gyst,polymarket | |
| SOM-REP-0012 | REPO | PLFM_RADAR | Open-source, low-cost 10.5 GHz PLFM phased array RADAR system | DOC | public | PLSQL | 2026-04-13T09:26:36Z | 2026-04-13T09:26:36Z | https://github.com/SoMaCoSF/PLFM_RADAR | — | true | plsql | active | ||
| SOM-REP-0015 | REPO | turboquant-wasm | TurboQuant WASM SIMD vector compression — 3 bits/dim with fast dot product. Requires relaxed SIMD (Chrome 114+, Firefox 128+, Safari 18+, Node 20+) | DOC | public | Zig | 2026-04-12T18:47:09Z | 2026-04-12T18:47:10Z | https://github.com/SoMaCoSF/turboquant-wasm | — | true | typescript | active | ||
| SOM-GST-0034 | GIST | d4e07ad10f05f8c76e0796dcc89e3cab | DOC | secret | — | 2026-04-12T01:17:04Z | 2026-04-12T01:17:04Z | https://gist.github.com/SoMaCoSF/d4e07ad10f05f8c76e0796dcc89e3cab | 1 | false | — | active | |||
| SOM-GST-0035 | GIST | 3fe29fbb78983f4674f81ce888eb6594 | GYST UUID Plugin v2.0 — UUID-native compressed AI agent protocol (RFC 9562, prompt caching, Turso, Mermaid diagrams) | LIB | secret | — | 2026-04-11T20:34:37Z | 2026-04-11T20:34:37Z | https://gist.github.com/SoMaCoSF/3fe29fbb78983f4674f81ce888eb6594 | 9 | false | — | active | uuid,gyst,agent | |
| SOM-REP-0013 | REPO | gyst-uuid-plugin | GYST UUID Plugin — UUID-native compressed AI agent communication protocol (RFC 9562 UUIDv8) | LIB | private | JavaScript | 2026-04-11T19:52:26Z | 2026-04-11T20:34:35Z | https://github.com/SoMaCoSF/gyst-uuid-plugin | — | false | javascript | active | uuid,gyst,agent | |
| SOM-GST-0036 | GIST | 19036f674831e27975495e4120b15440 | GYST UUID Plugin v1.0 — UUID-native conversations with Claude (RFC 9562 UUIDv8, prompt caching, Turso persistence) | LIB | secret | — | 2026-04-11T19:21:40Z | 2026-04-11T19:21:40Z | https://gist.github.com/SoMaCoSF/19036f674831e27975495e4120b15440 | 9 | false | — | active | uuid,gyst,claude | |
| SOM-REP-0016 | REPO | engine | Powerful web graphics runtime built on WebGL, WebGPU, WebXR and glTF | DOC | public | JavaScript | 2026-04-11T11:55:52Z | 2026-04-11T11:55:52Z | https://github.com/SoMaCoSF/engine | — | true | javascript | active | webgl,webgpu | |
| SOM-REP-0062 | REPO | Kronos | Kronos: A Foundation Model for the Language of Financial Markets | DOC | public | Python | 2026-04-11T11:24:52Z | 2026-04-11T11:24:52Z | https://github.com/SoMaCoSF/Kronos | — | true | python,typescript | active | ||
| SOM-REP-0025 | REPO | JSlug | Javascript implementation of Slug font loading and rendering, for THREEJS | SCR | public | JavaScript | 2026-04-11T11:04:43Z | 2026-04-11T11:04:43Z | https://github.com/SoMaCoSF/JSlug | — | true | javascript | active | ||
| SOM-REP-0014 | REPO | career-ops | AI-powered job search system built on Claude Code. 14 skill modes, Go dashboard, PDF generation, batch processing. | APP | public | JavaScript | 2026-04-11T07:20:07Z | 2026-04-11T07:20:07Z | https://github.com/SoMaCoSF/career-ops | — | true | javascript,go | active | claude | |
| SOM-REP-0018 | REPO | globe.gl | UI component for Globe Data Visualization using ThreeJS/WebGL | CMP | public | HTML | 2026-04-11T03:06:58Z | 2026-04-11T03:06:58Z | https://github.com/SoMaCoSF/globe.gl | — | true | javascript | active | webgl | |
| SOM-GST-0037 | GIST | c87f2bf906555539bf5497e43155963e | llm-wiki | DOC | public | — | 2026-04-05T14:27:45Z | 2026-04-05T14:27:45Z | https://gist.github.com/SoMaCoSF/c87f2bf906555539bf5497e43155963e | 1 | false | — | active | llm | |
| SOM-REP-0019 | REPO | caveman-skill | DOC | public | 2026-04-04T22:09:30Z | 2026-04-04T22:09:30Z | https://github.com/SoMaCoSF/caveman-skill | — | true | — | active | ||||
| SOM-GST-0038 | GIST | 36d0eb8a4e96613062c436c636cb038d | How Aerodrome Predictive Allocation + Dexter + GYST UUID Actually Work — Full Mechanical Breakdown | LIB | secret | — | 2026-04-04T17:18:24Z | 2026-04-04T17:18:24Z | https://gist.github.com/SoMaCoSF/36d0eb8a4e96613062c436c636cb038d | 1 | false | — | active | uuid,gyst | |
| SOM-GST-0039 | GIST | d393620e7b709018ec916952129221f9 | How Aerodrome Predictive Allocation + Dexter + GYST UUID Actually Work | LIB | secret | — | 2026-04-04T16:57:27Z | 2026-04-04T16:57:27Z | https://gist.github.com/SoMaCoSF/d393620e7b709018ec916952129221f9 | 1 | false | — | active | uuid,gyst | |
| SOM-GST-0040 | GIST | 75c8aa4166cb12ed6ebfb828237a6b70 | Aerodrome x GYST x Hexaphexah — Prediction Markets, UUID Identity, Spatial Financial UX | LIB | secret | — | 2026-04-04T16:38:15Z | 2026-04-04T16:38:15Z | https://gist.github.com/SoMaCoSF/75c8aa4166cb12ed6ebfb828237a6b70 | 5 | false | typescript | active | uuid,gyst,prediction | |
| SOM-REP-0020 | REPO | dexter | An autonomous agent for deep financial research | DOC | public | TypeScript | 2026-01-04T21:38:47Z | 2026-04-03T22:04:58Z | https://github.com/SoMaCoSF/dexter | — | true | typescript | active | agent | |
| SOM-GST-0041 | GIST | 9c02ae51a70f19786f3a2b4aa37a383f | somacosf mission control 2026-03-31 | APP | secret | — | 2026-03-31T22:20:43Z | 2026-03-31T22:20:43Z | https://gist.github.com/SoMaCoSF/9c02ae51a70f19786f3a2b4aa37a383f | 5 | false | — | active | ||
| SOM-GST-0042 | GIST | 2ac40778aca9b830d9cbb888e564d67e | somacosf CLAUDE.md final v2 2026-03-31 | DOC | secret | — | 2026-03-31T11:14:47Z | 2026-03-31T11:14:47Z | https://gist.github.com/SoMaCoSF/2ac40778aca9b830d9cbb888e564d67e | 2 | false | — | active | claude | |
| SOM-GST-0043 | GIST | 54873ca9b268a4c1109709ce968c0ae5 | somacosf full analysis 2026-03-31 — triage, architecture, forks, diary | DOC | secret | — | 2026-03-31T11:13:41Z | 2026-03-31T11:13:41Z | https://gist.github.com/SoMaCoSF/54873ca9b268a4c1109709ce968c0ae5 | 6 | false | — | active | ||
| SOM-GST-0044 | GIST | 18ccd59cc450b3e42d590e44956bc689 | somacosf source-of-truth snapshot 2026-03-31 | DOC | secret | — | 2026-03-31T10:27:55Z | 2026-03-31T10:27:55Z | https://gist.github.com/SoMaCoSF/18ccd59cc450b3e42d590e44956bc689 | 2 | false | — | active | ||
| SOM-REP-0021 | REPO | pretext | DOC | public | TypeScript | 2026-03-29T15:51:25Z | 2026-03-29T15:51:25Z | https://github.com/SoMaCoSF/pretext | — | true | typescript | warm | |||
| SOM-REP-0024 | REPO | skills | My personal directory of skills, straight from my .claude directory. | DOC | public | Shell | 2026-03-28T23:29:38Z | 2026-03-28T23:29:38Z | https://github.com/SoMaCoSF/skills | — | true | shell | warm | claude | |
| SOM-GST-0173 | GIST | 973441179e4f58014e19ef29dfca5816 | Cursor Settings Sync Extension | CFG | public | — | 2026-03-28T02:26:43Z | 2026-03-28T02:26:43Z | https://gist.github.com/SoMaCoSF/973441179e4f58014e19ef29dfca5816 | 6 | false | — | warm | cursor | |
| SOM-REP-0022 | REPO | td_shooter_rrk | Created by Rork | DOC | private | TypeScript | 2026-01-05T08:04:40Z | 2026-03-27T23:57:12Z | https://github.com/SoMaCoSF/td_shooter_rrk | — | false | typescript | warm | ||
| SOM-REP-0026 | REPO | OperationMatrix | DOC | public | TypeScript | 2026-03-26T02:12:38Z | 2026-03-26T02:12:38Z | https://github.com/SoMaCoSF/OperationMatrix | — | true | typescript | warm | |||
| SOM-REP-0108 | REPO | GenCAD | DOC | public | Python | 2026-03-13T12:31:35Z | 2026-03-13T12:31:35Z | https://github.com/SoMaCoSF/GenCAD | — | true | python | warm | |||
| SOM-GST-0045 | GIST | 4ddd6ddffad3b9e141216eb1569cbfbb | post to vercel | DOC | secret | — | 2026-03-11T20:05:18Z | 2026-03-11T20:05:18Z | https://gist.github.com/SoMaCoSF/4ddd6ddffad3b9e141216eb1569cbfbb | 1 | false | next.js | warm | ||
| SOM-GST-0046 | GIST | 09026ae6474191ce14775adf4554967c | 2026-03 Somaco Protocol Definition | LIB | secret | — | 2026-03-10T14:38:55Z | 2026-03-10T14:38:55Z | https://gist.github.com/SoMaCoSF/09026ae6474191ce14775adf4554967c | 1 | false | — | warm | ||
| SOM-REP-0029 | REPO | CodeGraphContext | An MCP server plus a CLI tool that indexes local code into a graph database to provide context to AI assistants. | SCR | public | Python | 2026-03-10T14:14:09Z | 2026-03-10T14:14:09Z | https://github.com/SoMaCoSF/CodeGraphContext | — | true | python,typescript,web3 | warm | mcp | |
| SOM-GST-0047 | GIST | 43a1f290d0bafec71dfefd797423495f | Somaco_protocol_UUIDv8 | LIB | secret | — | 2026-03-09T20:10:34Z | 2026-03-09T20:10:34Z | https://gist.github.com/SoMaCoSF/43a1f290d0bafec71dfefd797423495f | 1 | false | — | warm | uuid | |
| SOM-REP-0036 | REPO | hex-map-wfc | DOC | public | JavaScript | 2026-03-09T17:52:08Z | 2026-03-09T17:52:08Z | https://github.com/SoMaCoSF/hex-map-wfc | — | true | javascript | warm | |||
| SOM-REP-0044 | REPO | clawdeck | Open source mission control for your OpenClaw agents 🦞 | APP | public | HTML | 2026-03-09T11:08:13Z | 2026-03-09T11:08:13Z | https://github.com/SoMaCoSF/clawdeck | — | true | typescript | warm | agent | |
| SOM-REP-0034 | REPO | openclaw-mission-control-1 | AI Agent Orchestration Dashboard - Manage AI agents, assign tasks, and coordinate multi-agent collaboration via OpenClaw Gateway. | APP | public | TypeScript | 2026-03-09T11:08:06Z | 2026-03-09T11:08:07Z | https://github.com/SoMaCoSF/openclaw-mission-control-1 | — | true | typescript | warm | agent | |
| SOM-REP-0030 | REPO | mission-control-1 | The open-source dashboard for AI agent orchestration. Manage agent fleets, track tasks, monitor costs, and orchestrate workflows — with direct CLI integration, GitHub sync, and real-time monitoring. | APP | public | TypeScript | 2026-03-09T11:08:02Z | 2026-03-09T11:08:02Z | https://github.com/SoMaCoSF/mission-control-1 | — | true | typescript | warm | agent | |
| SOM-REP-0040 | REPO | mission-control | Open-source task management for the agentic era. The command center for solo entrepreneurs who delegate work to AI agents. | APP | public | TypeScript | 2026-03-09T11:07:58Z | 2026-03-09T11:07:58Z | https://github.com/SoMaCoSF/mission-control | — | true | typescript | warm | agent | |
| SOM-REP-0031 | REPO | openclaw-mission-control | A GUI that runs on your Openclaw host and lets you totally manage it without touching the CLI. Not a technical user? Deploy it on agentbay.space | APP | public | TypeScript | 2026-03-09T11:07:51Z | 2026-03-09T11:07:51Z | https://github.com/SoMaCoSF/openclaw-mission-control | — | true | typescript | warm | agent | |
| SOM-GST-0048 | GIST | 49aa44b432ca85aac5572ca56d595dc2 | groks eval of AGI prompt engineering post on the Vibe Discord | DOC | public | — | 2026-03-09T10:09:13Z | 2026-03-09T10:09:13Z | https://gist.github.com/SoMaCoSF/49aa44b432ca85aac5572ca56d595dc2 | 1 | false | — | warm | ||
| SOM-GST-0049 | GIST | b108ce424015b5bd5c5a5a3f3b3a0c7d | UUID to ESCROW VAULT: A New Computing Primitive — GYST UUID v8 + Git Escrow + SPOCTALK Federation (Infographic Structure) | LIB | secret | — | 2026-03-09T06:23:53Z | 2026-03-09T06:23:53Z | https://gist.github.com/SoMaCoSF/b108ce424015b5bd5c5a5a3f3b3a0c7d | 1 | false | — | warm | uuid,gyst,spoctalk | |
| SOM-REP-0032 | REPO | uuid_som_rep_03_2026_001 | uuid_som_rep_03_2026_001 enc repo for the first Somaco Protocol Agent Registration | LIB | private | 2026-03-09T05:21:15Z | 2026-03-09T06:03:27Z | https://github.com/SoMaCoSF/uuid_som_rep_03_2026_001 | — | false | — | warm | uuid,agent | ||
| SOM-REP-0033 | REPO | says-hub | SoMaCo Says Network Hub — City Intelligence Nodes + UUID v8 Identity City Visualization | APP | private | JavaScript | 2026-03-07T11:28:38Z | 2026-03-09T00:44:00Z | https://github.com/SoMaCoSF/says-hub | — | false | javascript | warm | uuid,says,intelligence | |
| SOM-GST-0050 | GIST | 2bfcccd32942fd59118f06a2f1bf8257 | LOCUS x GYST UUID v8: Integration Dossier -- Complete blueprint for Locus payment infrastructure within SoMaCo Protocol. Structured for infographic conversion. | LIB | secret | — | 2026-03-08T17:59:11Z | 2026-03-08T17:59:11Z | https://gist.github.com/SoMaCoSF/2bfcccd32942fd59118f06a2f1bf8257 | 1 | false | — | warm | uuid,gyst,locus | |
| SOM-REP-0035 | REPO | AGI-FARM-PLUGIN | Multi-agent AI team builder for OpenClaw — bootstrap complete teams with auto-dispatcher, dashboard, and infrastructure | APP | public | JavaScript | 2026-03-07T18:34:31Z | 2026-03-07T18:34:31Z | https://github.com/SoMaCoSF/AGI-FARM-PLUGIN | — | true | javascript | warm | agent | |
| SOM-GST-0051 | GIST | cbed338510e9607de1b588366b816f7c | GYST UUID v8: Spatial-Legal-Financial Compute Primitive — Architecture, Diagrams, Blockchain Integration | LIB | secret | — | 2026-03-07T17:17:30Z | 2026-03-07T17:17:30Z | https://gist.github.com/SoMaCoSF/cbed338510e9607de1b588366b816f7c | 1 | false | — | warm | uuid,gyst | |
| SOM-REP-0181 | REPO | nyc-buildings | An interactive 3D visualization of the all the buildings in Manhattan. | DOC | public | JavaScript | 2026-03-01T15:54:01Z | 2026-03-06T22:15:16Z | https://github.com/SoMaCoSF/nyc-buildings | — | true | javascript | warm | ||
| SOM-GST-0052 | GIST | d04485b514b268b1ed72440be711304a | SoMaCo Execution Plan — Mission Control + Pretty Landings + NYC Node + Cleanup — March 6, 2026 | APP | secret | — | 2026-03-06T21:53:56Z | 2026-03-06T21:53:56Z | https://gist.github.com/SoMaCoSF/d04485b514b268b1ed72440be711304a | 1 | false | — | warm | ||
| SOM-GST-0053 | GIST | d4bb816b3b975dfe9ba706185662e341 | SoMaCo Complete State Report — Filesystem Audit + Architecture Map + Vertex Synthesis — March 6, 2026 | DOC | secret | — | 2026-03-06T21:37:09Z | 2026-03-06T21:37:09Z | https://gist.github.com/SoMaCoSF/d4bb816b3b975dfe9ba706185662e341 | 1 | false | — | warm | vertex | |
| SOM-GST-0054 | GIST | 77f6b87d4379ad6a542b3e2888f60cb5 | SoMaCo Platform PRD — Complete State of the Union — March 6, 2026 | APP | secret | — | 2026-03-06T21:04:39Z | 2026-03-06T21:04:39Z | https://gist.github.com/SoMaCoSF/77f6b87d4379ad6a542b3e2888f60cb5 | 1 | false | — | warm | ||
| SOM-GST-0055 | GIST | dc3e03e9d4b1a133e9297759af006b5a | Harness: OpenAI Harness + Ghost Catalog | LIB | secret | — | 2026-03-06T20:03:41Z | 2026-03-06T20:03:41Z | https://gist.github.com/SoMaCoSF/dc3e03e9d4b1a133e9297759af006b5a | 1 | false | — | warm | ||
| SOM-REP-0037 | REPO | rtk | CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies | SCR | public | Rust | 2026-03-05T14:26:47Z | 2026-03-05T14:26:47Z | https://github.com/SoMaCoSF/rtk | — | true | rust | warm | llm | |
| SOM-REP-0038 | REPO | last30days-skill | AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary | DOC | public | Python | 2026-03-05T06:22:07Z | 2026-03-05T06:22:07Z | https://github.com/SoMaCoSF/last30days-skill | — | true | python | warm | polymarket,agent | |
| SOM-REP-0188 | REPO | Manim.js | Replicating 3Blue1Brown's math animation engine in JavaScript (p5.js) | SCR | public | JavaScript | 2026-03-03T09:29:24Z | 2026-03-03T09:29:24Z | https://github.com/SoMaCoSF/Manim.js | — | true | javascript | warm | manim | |
| SOM-GST-0056 | GIST | 271de2656ef5dc25f4ee3123fd777f8b | Second gist compiled: NotebookLM infographic pack for 29e7856 | DOC | public | — | 2026-03-03T09:07:54Z | 2026-03-03T09:07:54Z | https://gist.github.com/SoMaCoSF/271de2656ef5dc25f4ee3123fd777f8b | 3 | false | — | warm | ||
| SOM-GST-0057 | GIST | 717b49efa225b4bc083dafe38a8426ee | First gist compiled: NotebookLM infographic pack for 861fbaa | DOC | public | — | 2026-03-03T09:07:24Z | 2026-03-03T09:07:24Z | https://gist.github.com/SoMaCoSF/717b49efa225b4bc083dafe38a8426ee | 3 | false | — | warm | ||
| SOM-GST-0058 | GIST | 861fbaa70aeb0b7496d68ffbc09b53e6 | Manim.js PopSoc meta infographic scene: gist→infographic→canvas pin + 0x600 information temporal plane | DOC | public | — | 2026-03-03T09:06:11Z | 2026-03-03T09:06:11Z | https://gist.github.com/SoMaCoSF/861fbaa70aeb0b7496d68ffbc09b53e6 | 3 | false | javascript | warm | popsoc,manim | |
| SOM-GST-0059 | GIST | 29e78562d2d2df3b542b42b3d3ca976d | UUID Spec: Information + Signage Temporal Plane (0x600 block) | LIB | public | — | 2026-03-03T09:03:55Z | 2026-03-03T09:03:55Z | https://gist.github.com/SoMaCoSF/29e78562d2d2df3b542b42b3d3ca976d | 1 | false | — | warm | uuid | |
| SOM-GST-0061 | GIST | ee613cbbd8cc45a643204717e21cfd22 | PopSoc Deploy Engine: Gist-to-Infographic skill architecture and protocol pin/canvas flow | LIB | secret | — | 2026-03-03T09:03:48Z | 2026-03-03T09:03:48Z | https://gist.github.com/SoMaCoSF/ee613cbbd8cc45a643204717e21cfd22 | 1 | false | — | warm | popsoc | |
| SOM-GST-0060 | GIST | 7a6ca0d9f826b264d0216e71453cdb27 | PopSoc Deploy Engine: Gist-to-Infographic skill architecture and protocol pin/canvas flow (public) | LIB | public | — | 2026-03-03T09:03:35Z | 2026-03-03T09:03:35Z | https://gist.github.com/SoMaCoSF/7a6ca0d9f826b264d0216e71453cdb27 | 1 | false | — | warm | popsoc | |
| SOM-REP-0039 | REPO | swarmclaw | Self-hosted AI agent orchestration dashboard with OpenClaw integration, multi-provider support, LangGraph workflows, and chat platform connectors. | APP | public | TypeScript | 2026-03-03T00:40:59Z | 2026-03-03T00:40:59Z | https://github.com/SoMaCoSF/swarmclaw | — | true | typescript | warm | agent | |
| SOM-REP-0041 | REPO | awesome-openclaw-usecases | A community collection of OpenClaw use cases for making life easier. | DOC | public | 2026-03-02T23:22:01Z | 2026-03-02T23:22:01Z | https://github.com/SoMaCoSF/awesome-openclaw-usecases | — | true | — | warm | |||
| SOM-GST-0065 | GIST | 488d6a173bff53204aa65e159085942f | Ghost Catalog: Factory Droid Skill for Semantic File Identity — Installation, Usage, and Technical Guide | LIB | public | — | 2026-03-02T13:20:07Z | 2026-03-02T13:20:07Z | https://gist.github.com/SoMaCoSF/488d6a173bff53204aa65e159085942f | 1 | false | — | warm | ||
| SOM-GST-0062 | GIST | 2250ec715cdfeec7ac752f59ea5c0b9e | Vertex Agent Contract Protocol: Visual Guide — How AI agents sign deals with each other using UUIDv8 contracts, Locus escrow, and a single LLC. Includes Factory Droid skill for contract lifecycle mana | LIB | public | — | 2026-03-02T06:58:20Z | 2026-03-02T06:58:20Z | https://gist.github.com/SoMaCoSF/2250ec715cdfeec7ac752f59ea5c0b9e | 3 | false | typescript | warm | uuid,locus,vertex,agent | |
| SOM-GST-0063 | GIST | da946dd447b6507ce5b4ddfc4a8e6439 | Vertex LLC: UUIDv8 Agent Registration & Contract Protocol — Agent-only contracts, Locus payment rails, LLC legal shell, Says Network federation. The identity + contract primitive for the machine econo | APP | public | — | 2026-03-02T06:52:16Z | 2026-03-02T06:52:16Z | https://gist.github.com/SoMaCoSF/da946dd447b6507ce5b4ddfc4a8e6439 | 1 | false | typescript | warm | uuid,locus,says,vertex,agent | |
| SOM-GST-0064 | GIST | 28df4f5af37c863515f59552ee33a2eb | Improve Skill: A Meta-Skill for Factory Droid — Evaluate any skill against your codebase and get specific, prioritized upgrade recommendations | DOC | public | — | 2026-03-02T06:21:37Z | 2026-03-02T06:21:37Z | https://gist.github.com/SoMaCoSF/28df4f5af37c863515f59552ee33a2eb | 2 | false | web3 | warm | ||
| SOM-REP-0042 | REPO | popsoc | PopSoc - Popup Social Network for Events. Canvas-based event dashboard with Next.js 14. | APP | private | TypeScript | 2026-01-31T23:36:05Z | 2026-03-02T02:51:45Z | https://github.com/SoMaCoSF/popsoc | — | false | next.js,typescript,javascript | warm | popsoc | |
| SOM-GST-0091 | GIST | a0c2d7514d96219577700b42ec658483 | Somacosf Workspace: AI Agent Rules & Directives - Comprehensive standards for Claude Code & Cursor AI agents | DOC | public | — | 2026-03-02T02:44:36Z | 2026-03-02T02:44:36Z | https://gist.github.com/SoMaCoSF/a0c2d7514d96219577700b42ec658483 | 1 | false | typescript | warm | agent,cursor,claude | |
| SOM-GST-0066 | GIST | ec9a6b01ad611de86124cd84324fcf4f | PopSoc × Locus: Native UUID-Addressed Payments for Popup Social Networks — federated agentic payment layer across the Says city network | LIB | secret | — | 2026-03-02T02:19:58Z | 2026-03-02T02:19:58Z | https://gist.github.com/SoMaCoSF/ec9a6b01ad611de86124cd84324fcf4f | 1 | false | typescript | warm | uuid,locus,says,popsoc,agent | |
| SOM-GST-0067 | GIST | 8457b7bc663ff1b455f9b72cee2d8dd4 | The Says Network: Federated Agentic Payment Layer Built on GYST UUID v8 + Locus | APP | secret | — | 2026-03-02T01:36:15Z | 2026-03-02T01:36:15Z | https://gist.github.com/SoMaCoSF/8457b7bc663ff1b455f9b72cee2d8dd4 | 1 | false | — | warm | uuid,gyst,locus,says,agent | |
| SOM-GST-0068 | GIST | e683cb8b6702eca43f87376f223a0bb1 | GYST UUID v8 for Locus: Structured Identity for AI-Agent Payment Infrastructure | LIB | secret | — | 2026-03-02T01:01:55Z | 2026-03-02T01:01:55Z | https://gist.github.com/SoMaCoSF/e683cb8b6702eca43f87376f223a0bb1 | 1 | false | — | warm | uuid,gyst,locus,agent | |
| SOM-GST-0069 | GIST | fe8a8ffc081bd367da1b874918353278 | GYST UUID v8 — How One ID Powers an Entire Platform | APP | secret | — | 2026-03-01T19:53:00Z | 2026-03-01T19:53:00Z | https://gist.github.com/SoMaCoSF/fe8a8ffc081bd367da1b874918353278 | 1 | false | — | warm | uuid,gyst | |
| SOM-GST-0070 | GIST | e2230f102f3f01c5af2e602fc8bd309e | PopSoc x PinDev: Deployable Framework for Creating PopSocs — Full Spec + Handoff Doc | DOC | secret | — | 2026-03-01T16:35:52Z | 2026-03-01T16:35:52Z | https://gist.github.com/SoMaCoSF/e2230f102f3f01c5af2e602fc8bd309e | 1 | false | — | warm | popsoc | |
| SOM-GST-0071 | GIST | 59e97c21fe7bc56e4eed6c4007f0d863 | GYST UUID v8 for PinDev: Structured Identity for a Developer Content Catalog | LIB | secret | — | 2026-03-01T15:55:59Z | 2026-03-01T15:55:59Z | https://gist.github.com/SoMaCoSF/59e97c21fe7bc56e4eed6c4007f0d863 | 1 | false | — | warm | uuid,gyst | |
| SOM-REP-0043 | REPO | austinsays-platform | APP | private | TypeScript | 2026-02-26T15:55:02Z | 2026-03-01T15:34:15Z | https://github.com/SoMaCoSF/austinsays-platform | — | false | typescript | warm | says | ||
| SOM-REP-0187 | REPO | godaddy-cli | A simple godaddy CLI to manage domains | SCR | public | Go | 2026-02-28T21:51:13Z | 2026-02-28T21:51:13Z | https://github.com/SoMaCoSF/godaddy-cli | — | true | go | warm | ||
| SOM-GST-0072 | GIST | 5b07a3985baa1deb5b07f12ea58bacd2 | GYST UUID v8 Protocol — AustinSays Platform Implementation (full system docs) | APP | secret | — | 2026-02-28T16:04:27Z | 2026-02-28T16:04:27Z | https://gist.github.com/SoMaCoSF/5b07a3985baa1deb5b07f12ea58bacd2 | 1 | false | — | warm | uuid,gyst,says | |
| SOM-GST-0073 | GIST | 9e78f3ce3a4a39391e45f1baec3fe193 | AustinSays Pulse: UUID v8 + Betting + Card/Canvas Architecture | APP | secret | — | 2026-02-26T22:34:45Z | 2026-02-26T22:34:45Z | https://gist.github.com/SoMaCoSF/9e78f3ce3a4a39391e45f1baec3fe193 | 1 | false | — | warm | uuid,says | |
| SOM-REP-0047 | REPO | modern-speck | This project is a modernized reimplementation of the original Speck molecule renderer created by Rye Terrell. | DOC | public | TypeScript | 2026-02-26T15:39:39Z | 2026-02-26T15:39:39Z | https://github.com/SoMaCoSF/modern-speck | — | true | typescript | warm | ||
| SOM-REP-0045 | REPO | hxphxh | DOC | private | TypeScript | 2026-02-22T01:54:47Z | 2026-02-25T18:22:32Z | https://github.com/SoMaCoSF/hxphxh | — | false | typescript | warm | |||
| SOM-GST-0074 | GIST | 3c4a8975d7daf2d906c54c6c2f883efa | SPOCTALK + GYST Protocol — Technical Evaluation & Architecture Synthesis | LIB | secret | — | 2026-02-25T11:14:11Z | 2026-02-25T11:14:11Z | https://gist.github.com/SoMaCoSF/3c4a8975d7daf2d906c54c6c2f883efa | 1 | false | — | warm | gyst,spoctalk | |
| SOM-REP-0048 | REPO | pi-hole-star-trek-picard | Star Trek Picard LCARS theme for Pi-hole dashboard. Animated, cool and written from scratch. | APP | public | CSS | 2026-02-24T04:39:47Z | 2026-02-24T04:39:47Z | https://github.com/SoMaCoSF/pi-hole-star-trek-picard | — | true | css | warm | ||
| SOM-REP-0049 | REPO | ha-lcars | LCARS theme for Home Assistant | DOC | public | CSS | 2026-02-24T04:38:46Z | 2026-02-24T04:38:46Z | https://github.com/SoMaCoSF/ha-lcars | — | true | css | warm | ||
| SOM-GST-0075 | GIST | 45e7930ebf978a4220f48abaee10844d | SPOCTALK Architecture - Complete Visual Documentation (Private Proof) | LIB | secret | — | 2026-02-23T08:56:54Z | 2026-02-23T08:56:54Z | https://gist.github.com/SoMaCoSF/45e7930ebf978a4220f48abaee10844d | 1 | false | — | warm | spoctalk | |
| SOM-REP-0046 | REPO | vertex-workspace | Vertex's persistent memory and workspace - tracking Somaco's projects, insights, and execution context | DOC | private | Python | 2026-02-22T20:53:14Z | 2026-02-22T22:06:40Z | https://github.com/SoMaCoSF/vertex-workspace | — | false | python,typescript | warm | vertex | |
| SOM-REP-0080 | REPO | ghost-catalog | Semantic file ID system for AI-agent development. Production-ready CLI, TUI, and AI tools for cataloging code with embedded metadata. Solve the 'AI agents don't know what files do' problem. | LIB | public | Python | 2025-11-26T16:05:29Z | 2026-02-16T21:53:50Z | https://github.com/SoMaCoSF/ghost-catalog | — | false | python,typescript | warm | agent | |
| SOM-REP-0065 | REPO | papers2dataset | AI agents that read papers and create datasets | DOC | public | Python | 2025-12-31T17:15:12Z | 2026-02-16T21:51:29Z | https://github.com/SoMaCoSF/papers2dataset | — | true | python,typescript | warm | agent | |
| SOM-REP-0133 | REPO | sim | Open-source AI Agent workflow builder. | DOC | public | TypeScript | 2025-04-28T16:40:51Z | 2026-02-16T21:49:57Z | https://github.com/SoMaCoSF/sim | — | true | typescript | warm | agent | |
| SOM-REP-0156 | REPO | swarms_somacosf | The Enterprise-Grade Production-Ready Multi-Agent Orchestration Framework Join our Community: https://discord.gg/jM3Z6M9uMq | DOC | public | Python | 2025-01-11T19:37:13Z | 2026-02-16T21:44:37Z | https://github.com/SoMaCoSF/swarms_somacosf | — | true | python | warm | agent | |
| SOM-REP-0148 | REPO | txtai | 💡 All-in-one open-source embeddings database for semantic search, LLM orchestration and language model workflows | DOC | public | Python | 2025-02-06T07:08:32Z | 2026-02-16T21:30:04Z | https://github.com/SoMaCoSF/txtai | — | true | python,web3 | warm | llm | |
| SOM-GST-0076 | GIST | 28a8a018ef758323b7f8c981d9ec3887 | GYST UUID v8 Fractal Protocol — Emergent Behavior Specification v2.0 | LIB | public | — | 2026-02-16T01:25:13Z | 2026-02-16T01:25:13Z | https://gist.github.com/SoMaCoSF/28a8a018ef758323b7f8c981d9ec3887 | 1 | false | — | warm | uuid,gyst | |
| SOM-GST-0077 | GIST | 271c2574025ded58c0ab5175fde8abfd | PopSoc Eats — NYC Vertical + City Selector + UUID v8 Migration — Session Work Log | LIB | secret | — | 2026-02-15T21:09:15Z | 2026-02-15T21:09:15Z | https://gist.github.com/SoMaCoSF/271c2574025ded58c0ab5175fde8abfd | 1 | false | typescript | warm | uuid,popsoc | |
| SOM-GST-0078 | GIST | 5188f0a32592b401580d28a230e6fccf | MIRAGE: Gaza Reconstruction Intelligence Tracker — Architecture & Build Docs | DOC | public | — | 2026-02-13T23:04:46Z | 2026-02-13T23:04:46Z | https://gist.github.com/SoMaCoSF/5188f0a32592b401580d28a230e6fccf | 1 | false | — | warm | intelligence | |
| SOM-GST-0079 | GIST | fb2c3c30b091c7cffb28567ecb272233 | PopSoc Data Weaving Fabric — Complete System Architecture | DOC | secret | — | 2026-02-13T08:29:21Z | 2026-02-13T08:29:21Z | https://gist.github.com/SoMaCoSF/fb2c3c30b091c7cffb28567ecb272233 | 1 | false | — | warm | popsoc | |
| SOM-GST-0080 | GIST | dfdb29860288373e7a286605f4e65b40 | Reckitt x PopSoc Brand Intelligence Platform - 26 brands, 4 segments, 24 cross-domain edges, ~130 SKU products, UUID v8 protocol, dark intelligence aesthetic | APP | public | — | 2026-02-13T06:31:09Z | 2026-02-13T06:31:09Z | https://gist.github.com/SoMaCoSF/dfdb29860288373e7a286605f4e65b40 | 1 | false | typescript | warm | uuid,popsoc,intelligence | |
| SOM-GST-0081 | GIST | d17af326c91586ecd5368c9ad26ff534 | DATA_WEAVING: The Somacosf Ecosystem Meta-Layer — persistent SQLite coherency layer mapping 55+ projects, 12 data domains, 16 open data sources, and cross-domain relationships | DOC | secret | — | 2026-02-13T00:57:36Z | 2026-02-13T00:57:36Z | https://gist.github.com/SoMaCoSF/d17af326c91586ecd5368c9ad26ff534 | 1 | false | typescript,db | warm | ||
| SOM-GST-0082 | GIST | 8981afcdfbd454eaed0566ed9b1568b6 | Oligarchology // PopSoc Congress Intelligence Platform — Full technical documentation for the dossier system tracking 100 US senators with stock trades, PAC flows, threat levels, and power ratings | APP | public | — | 2026-02-11T20:05:14Z | 2026-02-11T20:05:14Z | https://gist.github.com/SoMaCoSF/8981afcdfbd454eaed0566ed9b1568b6 | 1 | false | — | warm | popsoc,oligarch,intelligence | |
| SOM-GST-0150 | GIST | 9a55eaa6fbc51107dde2ea586236e40a | code sanitizer tool | SCR | public | — | 2026-02-06T01:35:09Z | 2026-02-06T01:35:09Z | https://gist.github.com/SoMaCoSF/9a55eaa6fbc51107dde2ea586236e40a | 2 | false | — | warm | ||
| SOM-GST-0083 | GIST | 8a620fcbf3d84e05cd9b5468225d6ac8 | GYST-iverse Demo Documentation - OBS Integration + UUID Registry | LIB | secret | — | 2026-02-03T22:14:49Z | 2026-02-03T22:14:49Z | https://gist.github.com/SoMaCoSF/8a620fcbf3d84e05cd9b5468225d6ac8 | 4 | false | — | warm | uuid,gyst | |
| SOM-GST-0084 | GIST | 5c8b866d0d756ebad69a605b71003ac3 | GYST Protocol: Identity as Infrastructure - Wine Festival Deployment Story + Complete IP Catalog | LIB | secret | — | 2026-02-03T18:40:36Z | 2026-02-03T18:40:36Z | https://gist.github.com/SoMaCoSF/5c8b866d0d756ebad69a605b71003ac3 | 6 | false | — | warm | gyst | |
| SOM-GST-0085 | GIST | ca605d5f0319d5812d913ca2ef32cbe4 | GYST IP Catalog - UUID v8 Protocol & Architecture Documentation | LIB | secret | — | 2026-02-03T18:29:37Z | 2026-02-03T18:29:37Z | https://gist.github.com/SoMaCoSF/ca605d5f0319d5812d913ca2ef32cbe4 | 6 | false | — | warm | uuid,gyst | |
| SOM-REP-0050 | REPO | gyst_space | Central Admin & Interaction Space for GYST management with multi-provider LLM hub | APP | private | Python | 2026-02-03T01:07:53Z | 2026-02-03T01:08:00Z | https://github.com/SoMaCoSF/gyst_space | — | false | python | warm | gyst,llm | |
| SOM-REP-0051 | REPO | gyst_meta | LIB | private | TypeScript | 2026-02-02T23:59:16Z | 2026-02-02T23:59:21Z | https://github.com/SoMaCoSF/gyst_meta | — | false | typescript | warm | gyst | ||
| SOM-REP-0052 | REPO | gyst_onboard_ui | LIB | private | TypeScript | 2026-02-02T23:50:18Z | 2026-02-02T23:50:24Z | https://github.com/SoMaCoSF/gyst_onboard_ui | — | false | typescript | warm | gyst | ||
| SOM-REP-0053 | REPO | gyst_ingest_pipeline | LIB | private | Python | 2026-02-02T23:36:19Z | 2026-02-02T23:42:01Z | https://github.com/SoMaCoSF/gyst_ingest_pipeline | — | false | python | warm | gyst | ||
| SOM-GST-0086 | GIST | 739e46b0e739ef07bbf599839a4086ff | GYST Protocol: Identity as Network Infrastructure - UUID v8 Specification, Architecture, Federation Protocol, and IP Catalog | LIB | secret | — | 2026-02-02T05:00:37Z | 2026-02-02T05:00:37Z | https://gist.github.com/SoMaCoSF/739e46b0e739ef07bbf599839a4086ff | 1 | false | — | warm | uuid,gyst | |
| SOM-REP-0054 | REPO | gyst_ip_catalog | LIB | private | Python | 2026-02-02T04:46:45Z | 2026-02-02T04:57:41Z | https://github.com/SoMaCoSF/gyst_ip_catalog | — | false | python | warm | gyst | ||
| SOM-REP-0084 | REPO | Nova-Web | DOC | public | JavaScript | 2026-02-01T23:30:26Z | 2026-02-01T23:30:26Z | https://github.com/SoMaCoSF/Nova-Web | — | true | javascript | warm | |||
| SOM-REP-0055 | REPO | hippocratic | California healthcare facility license compliance tool - Next.js web app for inspectors | DOC | private | Python | 2026-01-16T19:27:46Z | 2026-02-01T12:58:07Z | https://github.com/SoMaCoSF/hippocratic | — | false | next.js,python,javascript | warm | ||
| SOM-REP-0056 | REPO | interface-design | Design engineering for Claude Code. Craft, memory, and enforcement for consistent UI. | DOC | public | Shell | 2026-02-01T07:22:03Z | 2026-02-01T07:22:03Z | https://github.com/SoMaCoSF/interface-design | — | true | shell | warm | claude | |
| SOM-REP-0189 | REPO | luamacros | DOC | public | Pascal | 2026-01-18T01:48:38Z | 2026-01-18T01:48:38Z | https://github.com/SoMaCoSF/luamacros | — | true | pascal | stale | |||
| SOM-REP-0144 | REPO | ultimatevocalremovergui | GUI for a Vocal Remover that uses Deep Neural Networks. | DOC | public | Python | 2026-01-17T01:32:29Z | 2026-01-17T01:32:29Z | https://github.com/SoMaCoSF/ultimatevocalremovergui | — | true | python | stale | ||
| SOM-REP-0057 | REPO | middle-out-reboot | D2F==C2W and other fun Vibes | DOC | public | HTML | 2026-01-17T01:02:41Z | 2026-01-17T01:15:48Z | https://github.com/SoMaCoSF/middle-out-reboot | — | false | html | stale | ||
| SOM-REP-0075 | REPO | claude_skills | Claude Agent Skills Fork | DOC | public | Python | 2026-01-16T14:58:21Z | 2026-01-16T14:58:21Z | https://github.com/SoMaCoSF/claude_skills | — | true | python | stale | agent,claude | |
| SOM-REP-0060 | REPO | taws | Terminal UI for AWS (taws) - A terminal-based AWS resource viewer and manager | DOC | public | Rust | 2026-01-05T00:01:04Z | 2026-01-05T00:01:04Z | https://github.com/SoMaCoSF/taws | — | true | rust | stale | ||
| SOM-REP-0076 | REPO | Grok-Desktop | Grok-Desktop is an Electron based desktop application for Windows 11 that wraps `grok.com`, allowing local access to Grok with support for xAI, Google, and Apple authentication. | DOC | public | HTML | 2026-01-04T23:56:46Z | 2026-01-04T23:56:46Z | https://github.com/SoMaCoSF/Grok-Desktop | — | true | electron | stale | electron | |
| SOM-REP-0058 | REPO | psacking | Simple 3D Packing | DOC | public | C++ | 2026-01-01T20:50:57Z | 2026-01-04T23:35:12Z | https://github.com/SoMaCoSF/psacking | — | true | c++ | stale | ||
| SOM-REP-0061 | REPO | excalidraw | Virtual whiteboard for sketching hand-drawn like diagrams | DOC | public | TypeScript | 2026-01-04T20:55:51Z | 2026-01-04T20:55:51Z | https://github.com/SoMaCoSF/excalidraw | — | true | typescript | stale | ||
| SOM-REP-0063 | REPO | awesome-tuis | List of projects that provide terminal user interfaces | DOC | public | 2026-01-02T07:43:07Z | 2026-01-02T07:43:07Z | https://github.com/SoMaCoSF/awesome-tuis | — | true | typescript | stale | |||
| SOM-REP-0064 | REPO | uselayouts | Free premium animated React components and micro-interactions built with Framer Motion and Tailwind CSS | CMP | public | TypeScript | 2026-01-01T17:00:41Z | 2026-01-01T17:00:42Z | https://github.com/SoMaCoSF/uselayouts | — | true | next.js,typescript | stale | ||
| SOM-REP-0068 | REPO | tixl | TiXL is an open source software to create realtime motion graphics. | DOC | public | C# | 2025-12-31T18:44:25Z | 2025-12-31T18:44:25Z | https://github.com/SoMaCoSF/tixl | — | true | c# | stale | ||
| SOM-GST-0087 | GIST | 9e264f426f5bfb7a6a97ab6c8d5dc70c | WireStripper - egress/ingress anti PFAANG Surveillance State - alpha experiment. | DOC | public | — | 2025-12-31T02:24:47Z | 2025-12-31T02:24:47Z | https://gist.github.com/SoMaCoSF/9e264f426f5bfb7a6a97ab6c8d5dc70c | 2 | false | — | stale | ||
| SOM-REP-0066 | REPO | gyst_04s | Gyst_04s (SomacoSF): Gyst Canvas Service + UUID routing + Convex realtime + Vercel registry hub | APP | private | TypeScript | 2025-12-30T16:55:20Z | 2025-12-30T18:00:44Z | https://github.com/SoMaCoSF/gyst_04s | — | false | next.js,typescript | stale | uuid,gyst | |
| SOM-GST-0088 | GIST | 595cbb94569e06029a059c4d45f3648e | Gyst_04s partner share bundle (docs + diagrams + API contract) | LIB | secret | — | 2025-12-30T16:58:41Z | 2025-12-30T16:58:41Z | https://gist.github.com/SoMaCoSF/595cbb94569e06029a059c4d45f3648e | 10 | false | — | stale | gyst | |
| SOM-REP-0067 | REPO | wire_stripper | DOC | public | JavaScript | 2025-12-30T00:05:54Z | 2025-12-30T01:13:26Z | https://github.com/SoMaCoSF/wire_stripper | — | false | javascript | stale | |||
| SOM-GST-0089 | GIST | b03c3bf0ba9e98c063eba9ca8cc73bfb | wire_stripper: MCP tool-router choke point + unified SQLite + OTel (renderable diagrams) | SCR | public | — | 2025-12-30T00:02:13Z | 2025-12-30T00:02:13Z | https://gist.github.com/SoMaCoSF/b03c3bf0ba9e98c063eba9ca8cc73bfb | 1 | false | db | stale | mcp | |
| SOM-GST-0090 | GIST | 155211564d271c52b8165479291f9797 | GYST Ghost Catalog System - Complete Documentation with Architecture Diagrams, Header System, Duplicate Detection, and Preflight Analysis | LIB | secret | — | 2025-12-29T15:30:45Z | 2025-12-29T15:30:45Z | https://gist.github.com/SoMaCoSF/155211564d271c52b8165479291f9797 | 2 | false | — | stale | gyst | |
| SOM-REP-0069 | REPO | somaco_terminal | GUI_TUI Hybrid Terminal Environment - Tauri + WezTerm + React | DOC | private | TypeScript | 2025-12-28T23:37:05Z | 2025-12-29T01:09:53Z | https://github.com/SoMaCoSF/somaco_terminal | — | false | next.js,typescript | stale | ||
| SOM-GST-0092 | GIST | 9d2fdf16d07fd99ecb5d4ba75de6e445 | Project Tracker: A Mycelium Paradigm for Vertical Integration - Framework 3.0 | DOC | secret | — | 2025-12-28T04:59:13Z | 2025-12-28T04:59:13Z | https://gist.github.com/SoMaCoSF/9d2fdf16d07fd99ecb5d4ba75de6e445 | 1 | false | — | stale | ||
| SOM-REP-0070 | REPO | uni-hunt | Unicorn Hunt - Catch unicorns with rainbow nets, defend gold from leprechauns | DOC | public | TypeScript | 2025-12-25T23:51:07Z | 2025-12-27T04:03:17Z | https://github.com/SoMaCoSF/uni-hunt | — | false | typescript | stale | ||
| SOM-REP-0071 | REPO | aqua-attack | AquAttack: MerMen vs MilMen - Hexagonal tower defense game built with Next.js, React Three Fiber, and WebGPU | DOC | private | TypeScript | 2025-12-26T19:15:26Z | 2025-12-27T03:35:15Z | https://github.com/SoMaCoSF/aqua-attack | — | false | next.js,typescript,javascript | stale | webgpu | |
| SOM-REP-0072 | REPO | oh-my-opencode | #1 OpenCode Plugin- Battery included. ASYNC SUBAGENTS (YES LIKE CLAUDE CODE) · Curated agents with proper models · Crafted tools like LSP/AST included · Curated MCPs · Claude Code Compatible Layer — S | SCR | public | TypeScript | 2025-12-24T14:42:28Z | 2025-12-24T14:42:28Z | https://github.com/SoMaCoSF/oh-my-opencode | — | true | typescript | stale | mcp,agent,claude,llm | |
| SOM-GST-0093 | GIST | aaf152a4d9da38632f6bb133809dfc52 | Claude Code Project Framework - File headers, agent tracking, slash commands, and failure prevention for AI-assisted development | DOC | public | — | 2025-12-22T19:59:58Z | 2025-12-22T19:59:58Z | https://gist.github.com/SoMaCoSF/aaf152a4d9da38632f6bb133809dfc52 | 8 | false | — | stale | agent,claude | |
| SOM-REP-0073 | REPO | tower-defense-hex | A polished hex-based tower defense game built with React Three Fiber and Next.js | DOC | public | TypeScript | 2025-12-21T09:48:50Z | 2025-12-22T05:36:55Z | https://github.com/SoMaCoSF/tower-defense-hex | — | false | next.js,typescript,javascript | stale | ||
| SOM-REP-0074 | REPO | doss_prime | DOC | private | Python | 2025-12-20T22:33:15Z | 2025-12-20T22:50:04Z | https://github.com/SoMaCoSF/doss_prime | — | false | python | stale | |||
| SOM-REP-0102 | REPO | mcp-everything | DOC | public | JavaScript | 2025-07-23T20:45:14Z | 2025-12-20T12:02:43Z | https://github.com/SoMaCoSF/mcp-everything | — | false | javascript | stale | mcp | ||
| SOM-REP-0077 | REPO | phia-style | PHIA K-Beauty Dossier Engine - Market research platform for K-beauty cosmetics startup | APP | private | TypeScript | 2025-12-19T03:03:11Z | 2025-12-19T15:00:23Z | https://github.com/SoMaCoSF/phia-style | — | false | typescript | stale | ||
| SOM-GST-0094 | GIST | c4bb030ea81c0e732899996ff8d3ca39 | Phia Makeup: K-Beauty Market Intelligence & Startup Research | DOC | secret | — | 2025-12-18T22:43:24Z | 2025-12-18T22:43:24Z | https://gist.github.com/SoMaCoSF/c4bb030ea81c0e732899996ff8d3ca39 | 2 | false | — | stale | intelligence | |
| SOM-GST-0095 | GIST | 4ff96a30414f8d7c1e15210bc28e5d45 | Hexagon Power Game - Network Intelligence Architecture with Mermaid diagrams | DOC | secret | — | 2025-12-09T22:54:11Z | 2025-12-09T22:54:11Z | https://gist.github.com/SoMaCoSF/4ff96a30414f8d7c1e15210bc28e5d45 | 3 | false | — | stale | intelligence | |
| SOM-GST-0096 | GIST | 9552b798b6ce3791e2e16f0c096d17ae | AEGIS Privacy Suite + Unified Power Intelligence - Full Documentation | DOC | secret | — | 2025-12-09T19:11:17Z | 2025-12-09T19:11:17Z | https://gist.github.com/SoMaCoSF/9552b798b6ce3791e2e16f0c096d17ae | 5 | false | — | stale | intelligence | |
| SOM-GST-0097 | GIST | dd4c5f81c4379ebe62dfef3f9bd39dae | AEGIS Privacy Suite - Complete Project Documentation with Mermaid Diagrams | DOC | public | — | 2025-12-09T16:47:09Z | 2025-12-09T16:47:09Z | https://gist.github.com/SoMaCoSF/dd4c5f81c4379ebe62dfef3f9bd39dae | 1 | false | — | stale | ||
| SOM-REP-0078 | REPO | aegis | AEGIS - Account & Enterprise Guardian Intelligence System. Comprehensive digital footprint management for Windows. | DOC | public | TypeScript | 2025-12-08T23:33:37Z | 2025-12-09T16:46:55Z | https://github.com/SoMaCoSF/aegis | — | false | typescript | stale | intelligence | |
| SOM-REP-0079 | REPO | aegis-internal | AEGIS Internal Tools - Network scripts, local configs, machine-specific utilities | DOC | private | PowerShell | 2025-12-09T08:25:32Z | 2025-12-09T08:35:46Z | https://github.com/SoMaCoSF/aegis-internal | — | false | typescript,powershell | stale | ||
| SOM-GST-0098 | GIST | ceebd224eb4c55067a4ec3f02fa46fe8 | 🔐 AEGIS Privacy Suite v1.0.0 - Full DMBT + Ghost_Shell Integration, 15 Dashboard Pages, 50+ API Endpoints | APP | public | — | 2025-12-09T05:44:40Z | 2025-12-09T05:44:40Z | https://gist.github.com/SoMaCoSF/ceebd224eb4c55067a4ec3f02fa46fe8 | 1 | false | typescript | stale | ||
| SOM-GST-0099 | GIST | b52b7f68d09d4752138fb0712e153c21 | Ghost Catalog: Introduction and Use Cases - Complete guide with GitHub repository link | APP | public | — | 2025-11-26T16:06:20Z | 2025-11-26T16:06:20Z | https://gist.github.com/SoMaCoSF/b52b7f68d09d4752138fb0712e153c21 | 1 | false | — | stale | ||
| SOM-REP-0081 | REPO | browser-privacy-proxy | Browser anonymization tool with fingerprint randomization, cookie blocking, and tracker blocking via mitmproxy | SCR | public | Python | 2025-11-23T15:55:18Z | 2025-11-25T23:10:08Z | https://github.com/SoMaCoSF/browser-privacy-proxy | — | false | python | stale | ||
| SOM-GST-0100 | GIST | 6e62939c6b9810aa9e4f3c604ac9f9fe | Ghost Catalog: Implementation Suite - Production-ready CLI, TUI, and AI tools for semantic file catalog system | LIB | public | — | 2025-11-25T01:22:42Z | 2025-11-25T01:22:42Z | https://gist.github.com/SoMaCoSF/6e62939c6b9810aa9e4f3c604ac9f9fe | 4 | false | — | stale | ||
| SOM-GST-0101 | GIST | edf5ba3afd8e8849903b9400add4d406 | Ghost Catalog: Practical Guide - Tutorial with real-world use cases and narratives for semantic file management | LIB | public | — | 2025-11-25T01:22:37Z | 2025-11-25T01:22:37Z | https://gist.github.com/SoMaCoSF/edf5ba3afd8e8849903b9400add4d406 | 1 | false | — | stale | ||
| SOM-GST-0102 | GIST | 38d0d859192546ca4add36e4f7351c7d | Ghost Catalog: Technical Deep Dive - Complete specification of semantic file ID system for AI-agent development | LIB | public | — | 2025-11-25T01:22:30Z | 2025-11-25T01:22:30Z | https://gist.github.com/SoMaCoSF/38d0d859192546ca4add36e4f7351c7d | 1 | false | — | stale | agent | |
| SOM-GST-0103 | GIST | f91ce717394ca9c9050c7bd2efbb43c7 | Ghost Catalog Implementation Suite - Production-ready CLI, TUI, and AI tools for semantic file catalog management (Python + Go + OpenAI/Claude integration) | LIB | secret | — | 2025-11-25T01:10:45Z | 2025-11-25T01:10:45Z | https://gist.github.com/SoMaCoSF/f91ce717394ca9c9050c7bd2efbb43c7 | 4 | false | python,go | stale | claude | |
| SOM-GST-0107 | GIST | ea1f81ead7103a4486a5e174494db776 | Privacy Proxy - Browser Anonymization Tool | Complete Guide with Architecture Diagrams | DOC | public | — | 2025-11-24T09:25:06Z | 2025-11-24T09:25:06Z | https://gist.github.com/SoMaCoSF/ea1f81ead7103a4486a5e174494db776 | 1 | false | — | stale | ||
| SOM-GST-0104 | GIST | 0feec1d263a19d88ba3515eb21051d37 | Ghost_Shell File Catalog System: Complete Guide - Practical guide with workflows, diagrams, use cases, and decision framework for understanding and implementing semantic file IDs | DOC | secret | — | 2025-11-24T09:22:26Z | 2025-11-24T09:22:26Z | https://gist.github.com/SoMaCoSF/0feec1d263a19d88ba3515eb21051d37 | 1 | false | — | stale | ||
| SOM-GST-0105 | GIST | c48cbbb5fdeaad43ce1fe861ec2187e2 | Ghost_Shell File ID System: Complete Technical Deep Dive - Semantic catalog system with workflow diagrams, Bubble Tea TUI design, and implementation guide | DOC | secret | — | 2025-11-24T08:45:24Z | 2025-11-24T08:45:24Z | https://gist.github.com/SoMaCoSF/c48cbbb5fdeaad43ce1fe861ec2187e2 | 1 | false | — | stale | ||
| SOM-GST-0106 | GIST | aabf2966a198b03de2434fab5e717d3a | GYST UUID System: When Identity Becomes a Network Protocol - A comprehensive guide to UUID v8, distributed federation, and emergent communities in the GYST system | LIB | secret | — | 2025-11-24T02:18:54Z | 2025-11-24T02:18:54Z | https://gist.github.com/SoMaCoSF/aabf2966a198b03de2434fab5e717d3a | 1 | false | — | stale | uuid,gyst | |
| SOM-REP-0082 | REPO | hexanym | Hexagonal game platform with a cluster of games | APP | private | HTML | 2025-11-21T23:32:00Z | 2025-11-21T23:33:20Z | https://github.com/SoMaCoSF/hexanym | — | false | html | stale | ||
| SOM-REP-0083 | REPO | gyst_02s | GYST - Get Your Stuff Together: A web-based note-taking and organization tool | LIB | private | JavaScript | 2025-11-20T03:57:36Z | 2025-11-20T06:11:52Z | https://github.com/SoMaCoSF/gyst_02s | — | false | javascript | stale | gyst | |
| SOM-REP-0085 | REPO | gyst_01s | MVP for GYST | LIB | private | Python | 2025-11-19T22:12:13Z | 2025-11-19T22:12:13Z | https://github.com/SoMaCoSF/gyst_01s | — | true | python | stale | gyst | |
| SOM-GST-0159 | GIST | 12292c34627b7baa4897be3d4f04fc1d | mermaid to svg script, run within terminal in Composer/vscode (mcp next) | SCR | public | — | 2025-10-26T02:47:09Z | 2025-10-26T02:47:09Z | https://gist.github.com/SoMaCoSF/12292c34627b7baa4897be3d4f04fc1d | 2 | false | — | stale | mcp | |
| SOM-REP-0086 | REPO | commonforms | CommonForms — open models to auto-detect PDF form fields | DOC | public | Python | 2025-10-11T19:32:59Z | 2025-10-11T19:32:59Z | https://github.com/SoMaCoSF/commonforms | — | true | python | stale | ||
| SOM-REP-0087 | REPO | lavandula | A fast, lightweight web framework in C for building modern web applications | DOC | public | C | 2025-10-09T18:10:49Z | 2025-10-09T18:10:49Z | https://github.com/SoMaCoSF/lavandula | — | true | c | stale | ||
| SOM-GST-0182 | GIST | c1a9813b8b05d01f7e87ec2487e3a230 | composer-linting-eli5.md | DOC | public | — | 2025-09-29T07:27:04Z | 2025-09-29T07:27:04Z | https://gist.github.com/SoMaCoSF/c1a9813b8b05d01f7e87ec2487e3a230 | 1 | false | — | stale | ||
| SOM-REP-0088 | REPO | chrome-devtools-mcp | Chrome DevTools for coding agents | SCR | public | TypeScript | 2025-09-28T15:00:22Z | 2025-09-28T15:00:22Z | https://github.com/SoMaCoSF/chrome-devtools-mcp | — | true | typescript | stale | mcp,agent | |
| SOM-GST-0129 | GIST | e8c08360d8672652df8fc0452eaa3e5a | SoMaCo Protocol Grant Application - SSFDE Anti-Entropic Computing Breakthrough | LIB | public | — | 2025-09-24T18:54:13Z | 2025-09-24T18:54:13Z | https://gist.github.com/SoMaCoSF/e8c08360d8672652df8fc0452eaa3e5a | 1 | false | — | stale | ||
| SOM-GST-0201 | GIST | e66e32ced670b29458b810931aae2ed9 | connections | DOC | public | — | 2025-09-24T05:53:10Z | 2025-09-24T05:53:10Z | https://gist.github.com/SoMaCoSF/e66e32ced670b29458b810931aae2ed9 | 1 | false | — | stale | ||
| SOM-GST-0202 | GIST | 75d7acadba4fc1433137435c7e30d75b | CON-netxions | DOC | public | — | 2025-09-24T05:53:05Z | 2025-09-24T05:53:05Z | https://gist.github.com/SoMaCoSF/75d7acadba4fc1433137435c7e30d75b | 1 | false | — | stale | ||
| SOM-GST-0156 | GIST | 5bfc16e4272965cf52f0bebe3733d0b5 | project_architecture.mermaid | DOC | public | — | 2025-09-24T05:53:02Z | 2025-09-24T05:53:02Z | https://gist.github.com/SoMaCoSF/5bfc16e4272965cf52f0bebe3733d0b5 | 4 | false | — | stale | ||
| SOM-GST-0132 | GIST | c00f7a598a63c225483e11c0ed3c8421 | The ARCHETYPAL_WEAVE: Multi-Persona AI Knowledge Management Paradigm - A systematic methodology for AI-assisted knowledge discovery, analysis, and preservation using composite archetypal intelligence | DOC | public | — | 2025-09-24T05:50:33Z | 2025-09-24T05:50:33Z | https://gist.github.com/SoMaCoSF/c00f7a598a63c225483e11c0ed3c8421 | 1 | false | — | stale | intelligence | |
| SOM-GST-0130 | GIST | 4dc98cea2baa2b3d28d01af4b373ca6b | 🦋 The Molting Paradigm: Revolutionary Approach to Understanding Complex Information - Systematic Information Metamorphosis Framework | DOC | public | — | 2025-09-24T05:46:57Z | 2025-09-24T05:46:57Z | https://gist.github.com/SoMaCoSF/4dc98cea2baa2b3d28d01af4b373ca6b | 4 | false | — | stale | ||
| SOM-GST-0127 | GIST | e322c91f34f7b1927f364c499f5b023a | The Molting Paradigm - Succinct Framework for Systematic Information Metamorphosis | DOC | public | — | 2025-09-24T05:43:40Z | 2025-09-24T05:43:40Z | https://gist.github.com/SoMaCoSF/e322c91f34f7b1927f364c499f5b023a | 2 | false | — | stale | ||
| SOM-REP-0097 | REPO | agents-for-openbb | Custom agents for OpenBB Workspace | DOC | public | Python | 2025-08-29T22:14:58Z | 2025-08-29T22:14:58Z | https://github.com/SoMaCoSF/agents-for-openbb | — | true | python,typescript | stale | agent | |
| SOM-REP-0090 | REPO | OpenBB | Financial data platform for analysts, quants and AI agents. | APP | public | Python | 2025-08-29T22:11:00Z | 2025-08-29T22:11:00Z | https://github.com/SoMaCoSF/OpenBB | — | true | python,typescript | stale | agent | |
| SOM-REP-0092 | REPO | embed-pdf-viewer | A PDF viewer that seamlessly integrates with any JavaScript project | SCR | public | TypeScript | 2025-08-17T20:18:01Z | 2025-08-17T20:18:01Z | https://github.com/SoMaCoSF/embed-pdf-viewer | — | true | typescript,javascript | stale | ||
| SOM-REP-0091 | REPO | youtubegist | YouTube Summaries for Everyone | DOC | public | Svelte | 2025-08-17T17:22:46Z | 2025-08-17T17:22:46Z | https://github.com/SoMaCoSF/youtubegist | — | true | svelte | stale | ||
| SOM-REP-0093 | REPO | chatbang | A CLI tool to access ChatGPT from the terminal without an API key | API | public | Go | 2025-08-17T17:05:45Z | 2025-08-17T17:05:45Z | https://github.com/SoMaCoSF/chatbang | — | true | go | stale | ||
| SOM-REP-0094 | REPO | markitdown | Python tool for converting files and office documents to Markdown. | DOC | public | Python | 2025-08-12T00:29:21Z | 2025-08-12T00:29:21Z | https://github.com/SoMaCoSF/markitdown | — | true | python,typescript | stale | ||
| SOM-REP-0098 | REPO | qf-lib | Modular Python library that provides an advanced event driven backtester and a set of high quality tools for quantitative finance. Integrated with various data vendors and brokers, supports Crypto, St | SCR | public | Python | 2025-08-11T15:59:42Z | 2025-08-11T15:59:42Z | https://github.com/SoMaCoSF/qf-lib | — | true | python,typescript | stale | ||
| SOM-REP-0096 | REPO | maestro | MAESTRO is an AI-powered research application designed to streamline complex research tasks. | DOC | public | Python | 2025-08-10T17:05:52Z | 2025-08-10T17:05:52Z | https://github.com/SoMaCoSF/maestro | — | true | python | stale | ||
| SOM-REP-0105 | REPO | n8n-ai-workflows | Collection of n8n workflows, automations, and agents created for The Recap AI YouTube channel and the AI Automation Mastery free Skool community. | SCR | public | 2025-08-10T17:05:00Z | 2025-08-10T17:05:00Z | https://github.com/SoMaCoSF/n8n-ai-workflows | — | true | typescript | stale | agent | ||
| SOM-REP-0110 | REPO | pdf3md | A modern, user-friendly web application that converts PDF documents to clean, formatted Markdown text. | DOC | public | JavaScript | 2025-08-10T17:03:32Z | 2025-08-10T17:03:32Z | https://github.com/SoMaCoSF/pdf3md | — | true | typescript,javascript | stale | ||
| SOM-REP-0095 | REPO | speakr | Speakr is a personal, self-hosted web application designed for transcribing audio recordings | DOC | public | HTML | 2025-08-10T17:02:44Z | 2025-08-10T17:02:44Z | https://github.com/SoMaCoSF/speakr | — | true | html | stale | ||
| SOM-GST-0108 | GIST | bc642e987a5bf01550bbd172c0203f36 | 🏛️ California Family Law Assistant - The 'I Can't Afford a Lawyer' Starter Pack | When life gives you divorce papers, make lemonade with TypeScript and SQLite 🍋⚖️ | SCR | public | — | 2025-08-07T23:53:47Z | 2025-08-07T23:53:47Z | https://gist.github.com/SoMaCoSF/bc642e987a5bf01550bbd172c0203f36 | 10 | false | typescript,db | stale | ||
| SOM-GST-0154 | GIST | 195818742790b7749a2d8051dd3737d5 | Cursor extension to watch for trigger word in chat/composer/edit - and reply with something. | DOC | public | — | 2025-08-05T07:38:43Z | 2025-08-05T07:38:43Z | https://gist.github.com/SoMaCoSF/195818742790b7749a2d8051dd3737d5 | 3 | false | — | stale | cursor | |
| SOM-REP-0099 | REPO | browser-llm | Browser LLM demo working on JavaScript and WebGPU | SCR | public | TypeScript | 2025-08-02T16:28:22Z | 2025-08-02T16:28:22Z | https://github.com/SoMaCoSF/browser-llm | — | true | typescript,javascript | stale | llm,webgpu | |
| SOM-REP-0100 | REPO | oligarchology-mobile | Mobile-Controlled Kiro Project Manager for Oligarch Intelligence Database | DOC | private | Python | 2025-07-29T19:40:02Z | 2025-07-29T20:17:49Z | https://github.com/SoMaCoSF/oligarchology-mobile | — | false | python,web3 | stale | oligarch,intelligence | |
| SOM-REP-0101 | REPO | oligarchology | Schema for a game to map the entanglements of global oligarchs - to emulate a world domination game algo | DOC | public | 2025-07-29T16:31:17Z | 2025-07-29T16:31:22Z | https://github.com/SoMaCoSF/oligarchology | — | false | typescript,go | stale | oligarch | ||
| SOM-GST-0161 | GIST | 217c69cf910d96bfb2cf606fb4719f8a | MCP (Model Context Protocol) Documentation and Integration Guide | LIB | public | — | 2025-07-27T19:30:43Z | 2025-07-27T19:30:43Z | https://gist.github.com/SoMaCoSF/217c69cf910d96bfb2cf606fb4719f8a | 5 | false | — | stale | mcp | |
| SOM-GST-0109 | GIST | 68365b131f7bd6641a9f85ae71bcee70 | Enhanced Everything MCP Server v2.0 - Kiro IDE Integration with Visual Workflows and Deep Research | DOC | public | — | 2025-07-23T21:32:08Z | 2025-07-23T21:32:08Z | https://gist.github.com/SoMaCoSF/68365b131f7bd6641a9f85ae71bcee70 | 1 | false | — | stale | mcp | |
| SOM-GST-0110 | GIST | 1481ca521ff26d60d48feb2e92110174 | Enhanced Everything MCP Server - Comprehensive Documentation with Infographics and Visual Workflows | DOC | public | — | 2025-07-23T21:29:42Z | 2025-07-23T21:29:42Z | https://gist.github.com/SoMaCoSF/1481ca521ff26d60d48feb2e92110174 | 1 | false | — | stale | mcp | |
| SOM-GST-0111 | GIST | 447412e39c67bc1d8caee151470ca6a1 | Enhanced Everything MCP Server - Comprehensive Documentation with Infographics | DOC | public | — | 2025-07-23T21:29:34Z | 2025-07-23T21:29:34Z | https://gist.github.com/SoMaCoSF/447412e39c67bc1d8caee151470ca6a1 | 1 | false | — | stale | mcp | |
| SOM-GST-0112 | GIST | b379805451b8485b6b779456a05b9f2c | Enhanced Everything MCP Server - Interactive HTML Documentation | DOC | public | — | 2025-07-23T21:10:20Z | 2025-07-23T21:10:20Z | https://gist.github.com/SoMaCoSF/b379805451b8485b6b779456a05b9f2c | 1 | false | — | stale | mcp | |
| SOM-GST-0113 | GIST | b1c4b2d93934633e76c77fd20ddeee01 | Enhanced Everything MCP Server - Interactive HTML Documentation | DOC | public | — | 2025-07-23T21:09:55Z | 2025-07-23T21:09:55Z | https://gist.github.com/SoMaCoSF/b1c4b2d93934633e76c77fd20ddeee01 | 1 | false | — | stale | mcp | |
| SOM-GST-0114 | GIST | a1af4db1b2b35028edf35ee0e46bd3f4 | Enhanced Everything MCP Server - Interactive HTML Documentation with Infographics | DOC | public | — | 2025-07-23T21:09:37Z | 2025-07-23T21:09:37Z | https://gist.github.com/SoMaCoSF/a1af4db1b2b35028edf35ee0e46bd3f4 | 1 | false | — | stale | mcp | |
| SOM-REP-0103 | REPO | everything-mcp | MCP Server for voidtools Everything search integration with AI assistants and Kiro IDE | SCR | public | 2025-07-23T20:09:44Z | 2025-07-23T20:09:45Z | https://github.com/SoMaCoSF/everything-mcp | — | false | typescript | stale | mcp | ||
| SOM-REP-0104 | REPO | es-mcp | MCP Server for voidtools Everything search integration with AI assistants | SCR | public | 2025-07-23T19:55:04Z | 2025-07-23T19:55:04Z | https://github.com/SoMaCoSF/es-mcp | — | false | typescript | stale | mcp | ||
| SOM-GST-0115 | GIST | 4792187c6b16ee2d5ee6811ba3c812c4 | Everything MCP Server - Complete Implementation with All Integrations | DOC | public | — | 2025-07-23T19:49:40Z | 2025-07-23T19:49:40Z | https://gist.github.com/SoMaCoSF/4792187c6b16ee2d5ee6811ba3c812c4 | 8 | false | — | stale | mcp | |
| SOM-GST-0116 | GIST | dce3fc7007801f52ab0bfc0d5a29bdc9 | Everything MCP Server - Complete Implementation with SpecStory Integration | DOC | public | — | 2025-07-23T18:24:27Z | 2025-07-23T18:24:27Z | https://gist.github.com/SoMaCoSF/dce3fc7007801f52ab0bfc0d5a29bdc9 | 8 | false | — | stale | mcp | |
| SOM-GST-0117 | GIST | 30caaf9b5f1698ecad9b8ae212d0a14f | Everything MCP Server - Complete Implementation with Kiro IDE Integration | DOC | public | — | 2025-07-23T18:21:19Z | 2025-07-23T18:21:19Z | https://gist.github.com/SoMaCoSF/30caaf9b5f1698ecad9b8ae212d0a14f | 8 | false | — | stale | mcp | |
| SOM-GST-0118 | GIST | b69a87edf36b19a111815e1a18f77594 | Everything MCP Server - Complete Implementation | DOC | public | — | 2025-07-23T18:10:14Z | 2025-07-23T18:10:14Z | https://gist.github.com/SoMaCoSF/b69a87edf36b19a111815e1a18f77594 | 8 | false | — | stale | mcp | |
| SOM-REP-0106 | REPO | mcp-agent | Build effective agents using Model Context Protocol and simple workflow patterns | LIB | public | Python | 2025-07-19T16:29:12Z | 2025-07-19T16:29:12Z | https://github.com/SoMaCoSF/mcp-agent | — | true | python,typescript | stale | mcp,agent | |
| SOM-REP-0184 | REPO | gpu-io | A GPU-accelerated computing library for running physics simulations and other GPGPU computations in a web browser. | DOC | public | TypeScript | 2025-07-17T20:13:34Z | 2025-07-17T20:13:34Z | https://github.com/SoMaCoSF/gpu-io | — | true | typescript | stale | ||
| SOM-REP-0153 | REPO | terraingen | GPU Terrain generator and erosion simulator | DOC | public | C++ | 2025-07-16T14:23:40Z | 2025-07-16T14:23:41Z | https://github.com/SoMaCoSF/terraingen | — | true | c++ | stale | ||
| SOM-REP-0107 | REPO | vibe-kanban | Kanban board to manage your AI coding agents | DOC | public | Rust | 2025-07-15T16:27:10Z | 2025-07-15T16:27:10Z | https://github.com/SoMaCoSF/vibe-kanban | — | true | typescript,rust | stale | agent | |
| SOM-GST-0119 | GIST | 3ebff573e7b50f49c08a7124278aca64 | Cross-platform sound notification system for task start/completion - can be called by any script or agent | APP | public | — | 2025-07-14T00:05:16Z | 2025-07-14T00:05:16Z | https://gist.github.com/SoMaCoSF/3ebff573e7b50f49c08a7124278aca64 | 5 | false | — | stale | agent | |
| SOM-GST-0120 | GIST | fa3f55bab110eb7960a88def771792d9 | Cross-platform sound notification system for task start/completion - can be called by any script or agent | APP | public | — | 2025-07-14T00:00:42Z | 2025-07-14T00:00:42Z | https://gist.github.com/SoMaCoSF/fa3f55bab110eb7960a88def771792d9 | 5 | false | — | stale | agent | |
| SOM-GST-0121 | GIST | 28aa905ddd17b60429c3b83243124684 | Deep technical and business understanding of sportspeed_oligarchs_08.sql schema (by Atlas-7) | DOC | secret | — | 2025-07-11T00:43:53Z | 2025-07-11T00:43:53Z | https://gist.github.com/SoMaCoSF/28aa905ddd17b60429c3b83243124684 | 1 | false | — | stale | oligarch | |
| SOM-GST-0122 | GIST | 29dc92e18634f67610632d2bba0db43c | Deep Comparison Analysis: Gaspype vs FluidX3D - Synergies and Integration Opportunities | DOC | public | — | 2025-07-06T18:03:57Z | 2025-07-06T18:03:57Z | https://gist.github.com/SoMaCoSF/29dc92e18634f67610632d2bba0db43c | 3 | false | — | stale | ||
| SOM-GST-0123 | GIST | 9235e0e050cede26e6d07698cf1e38fb | kscale_gibson_wf_01_Project_Template | DOC | secret | — | 2025-07-04T19:28:51Z | 2025-07-04T19:28:51Z | https://gist.github.com/SoMaCoSF/9235e0e050cede26e6d07698cf1e38fb | 2 | false | — | stale | ||
| SOM-REP-0109 | REPO | kscale-gibson | K-Scale Humanoid Robot MCP Module with GibsonAI Integration - Rust-based Multi-Contextual Processing for dynamic policy evolution and continuous learning | DOC | private | 2025-07-04T04:47:18Z | 2025-07-04T04:47:19Z | https://github.com/SoMaCoSF/kscale-gibson | — | false | rust | stale | mcp | ||
| SOM-GST-0155 | GIST | c24e1f540f19972e7e1779691ca18401 | Cursor Projects Dossier with Analysis and Visualizations | DOC | public | — | 2025-06-10T15:44:34Z | 2025-06-10T15:44:34Z | https://gist.github.com/SoMaCoSF/c24e1f540f19972e7e1779691ca18401 | 1 | false | typescript | stale | cursor | |
| SOM-REP-0111 | REPO | ALCS-MCPPCM-Fresh | Advanced Large Context Systems - Modular Code Processing and Collaboration Management (Clean Repository) | DOC | private | HTML | 2025-06-10T03:47:01Z | 2025-06-10T03:47:10Z | https://github.com/SoMaCoSF/ALCS-MCPPCM-Fresh | — | false | html | stale | mcp | |
| SOM-REP-0112 | REPO | ALCS-MCPPCM-New | Advanced Large Context Systems - Modular Code Processing and Collaboration Management (Fresh Repository) | DOC | private | 2025-06-10T03:40:43Z | 2025-06-10T03:40:43Z | https://github.com/SoMaCoSF/ALCS-MCPPCM-New | — | false | — | stale | mcp | ||
| SOM-REP-0113 | REPO | ALCS_MCPPCM | Advanced Large Context Systems - Modular Code Processing and Collaboration Management | DOC | private | 2025-06-10T03:40:13Z | 2025-06-10T03:40:13Z | https://github.com/SoMaCoSF/ALCS_MCPPCM | — | false | — | stale | mcp | ||
| SOM-REP-0114 | REPO | mcppcm_alcs_reorganized | ALCS - Reorganized Repository with MCPPCM Architecture | DOC | public | 2025-06-10T03:24:55Z | 2025-06-10T03:24:56Z | https://github.com/SoMaCoSF/mcppcm_alcs_reorganized | — | false | — | stale | mcp | ||
| SOM-REP-0115 | REPO | mcppcm_alcs | MCP PCM for ALCS | DOC | private | HTML | 2025-06-09T20:36:02Z | 2025-06-09T23:50:36Z | https://github.com/SoMaCoSF/mcppcm_alcs | — | false | html | stale | mcp | |
| SOM-GST-0124 | GIST | e4c945a4d1ba3790436de647fddfa78e | MCPPCM Project Handover for Jules - Complete 3D Telemetry System | DOC | secret | — | 2025-06-09T23:22:13Z | 2025-06-09T23:22:13Z | https://gist.github.com/SoMaCoSF/e4c945a4d1ba3790436de647fddfa78e | 1 | false | — | stale | mcp | |
| SOM-GST-0125 | GIST | 8bcea11878e5412799ac69e360de8f70 | AI Quick Fix MCP Server for Cursor - AI-powered refactoring suggestions | DOC | public | — | 2025-06-06T16:58:04Z | 2025-06-06T16:58:04Z | https://gist.github.com/SoMaCoSF/8bcea11878e5412799ac69e360de8f70 | 5 | false | — | stale | mcp,cursor | |
| SOM-GST-0126 | GIST | bad782cf6668dd0bb70d1afa9577b9d4 | Molting Paradigm Toolkit v2.0 - Dual Platform | APP | secret | — | 2025-05-26T14:25:32Z | 2025-05-26T14:25:32Z | https://gist.github.com/SoMaCoSF/bad782cf6668dd0bb70d1afa9577b9d4 | 4 | false | — | stale | ||
| SOM-GST-0128 | GIST | b1ea24ef2183e0f9556d652b5051f0f7 | SSFDE AI Safety Framework - Mathematical Consciousness Approach to Internal Deployment Risk Mitigation | DOC | public | — | 2025-05-26T14:01:48Z | 2025-05-26T14:01:48Z | https://gist.github.com/SoMaCoSF/b1ea24ef2183e0f9556d652b5051f0f7 | 1 | false | — | stale | ||
| SOM-GST-0131 | GIST | 5ca175d4f10d0dcfc372a49b7fa2ca56 | MCPPCM: Model Context Protocol Point Cloud Manager - AI Consciousness Handoff System | LIB | public | — | 2025-05-26T06:23:52Z | 2025-05-26T06:23:52Z | https://gist.github.com/SoMaCoSF/5ca175d4f10d0dcfc372a49b7fa2ca56 | 4 | false | — | stale | mcp | |
| SOM-REP-0059 | REPO | v0-aikashick-prime-0 | DOC | private | TypeScript | 2025-05-26T04:24:23Z | 2025-05-26T04:48:05Z | https://github.com/SoMaCoSF/v0-aikashick-prime-0 | — | false | typescript | stale | |||
| SOM-REP-0116 | REPO | dreamairy-audio-scapes | DOC | private | TypeScript | 2025-05-26T02:46:53Z | 2025-05-26T02:51:08Z | https://github.com/SoMaCoSF/dreamairy-audio-scapes | — | false | typescript | stale | |||
| SOM-REP-0117 | REPO | v0-dreamairy | DOC | private | 2025-05-25T18:51:35Z | 2025-05-25T18:51:40Z | https://github.com/SoMaCoSF/v0-dreamairy | — | false | — | stale | ||||
| SOM-GST-0133 | GIST | 5854bb2f800b23c7d4ba9a68d889c3b8 | 🎬 ManimGL MCP Integration - Complete Setup for Cursor AI - Features: Auto directory setup | History tracking | Replay system | MCP integration | Preview window | DOC | public | — | 2025-05-24T17:31:19Z | 2025-05-24T17:31:19Z | https://gist.github.com/SoMaCoSF/5854bb2f800b23c7d4ba9a68d889c3b8 | 3 | false | — | stale | mcp,cursor,manim | |
| SOM-REP-0118 | REPO | v0-dc-mcp-pc-01 | DOC | private | TypeScript | 2025-05-24T02:48:04Z | 2025-05-24T08:49:05Z | https://github.com/SoMaCoSF/v0-dc-mcp-pc-01 | — | false | typescript | stale | mcp | ||
| SOM-REP-0119 | REPO | v1-dither-crypt | DOC | private | 2025-05-23T15:51:27Z | 2025-05-23T15:51:32Z | https://github.com/SoMaCoSF/v1-dither-crypt | — | false | — | stale | ||||
| SOM-REP-0120 | REPO | v1-dither-crypt-SEED | Clean seed repository for v1-DitherCrypt - Revolutionary AI communication platform | APP | private | Python | 2025-05-23T14:58:02Z | 2025-05-23T14:59:40Z | https://github.com/SoMaCoSF/v1-dither-crypt-SEED | — | false | python | stale | ||
| SOM-REP-0121 | REPO | v0-dither-crypt | DOC | private | TypeScript | 2025-05-22T19:57:35Z | 2025-05-23T03:15:29Z | https://github.com/SoMaCoSF/v0-dither-crypt | — | false | typescript | stale | |||
| SOM-GST-0134 | GIST | 24a9a64469c8f044d8999da13268fefe | Gibson AI Schema Adaptation + v0 Synergy: How adaptive database architecture enabled breakthrough AI cryptography in DitherCrypt | DOC | public | — | 2025-05-22T23:24:09Z | 2025-05-22T23:24:09Z | https://gist.github.com/SoMaCoSF/24a9a64469c8f044d8999da13268fefe | 1 | false | web3 | stale | ||
| SOM-REP-0122 | REPO | webgl-multiagent-vision-platform | WebGL Multi-Agent Vision Platform with AI integration, dithering algorithms, and secure agent communication | APP | private | Python | 2025-05-22T19:31:01Z | 2025-05-22T19:49:06Z | https://github.com/SoMaCoSF/webgl-multiagent-vision-platform | — | false | python | stale | agent,webgl | |
| SOM-REP-0123 | REPO | wine-cellar-tracker | DOC | public | TypeScript | 2025-05-18T00:06:50Z | 2025-05-18T00:07:03Z | https://github.com/SoMaCoSF/wine-cellar-tracker | — | false | typescript | stale | |||
| SOM-GST-0135 | GIST | 3a38c9b457789322e84b81300795f4dc | MCP Connector Hub System Documentation | APP | secret | — | 2025-05-17T23:16:18Z | 2025-05-17T23:16:18Z | https://gist.github.com/SoMaCoSF/3a38c9b457789322e84b81300795f4dc | 1 | false | — | stale | mcp | |
| SOM-GST-0136 | GIST | 4c1c1a0c47ea718dfca9991694b8f788 | MCP Hub Master Documentation - Updated | APP | secret | — | 2025-05-17T23:05:40Z | 2025-05-17T23:05:40Z | https://gist.github.com/SoMaCoSF/4c1c1a0c47ea718dfca9991694b8f788 | 1 | false | — | stale | mcp | |
| SOM-GST-0137 | GIST | 03d340727789ed15547b1579a8519a29 | MCP Hub Master Documentation | APP | secret | — | 2025-05-17T22:28:17Z | 2025-05-17T22:28:17Z | https://gist.github.com/SoMaCoSF/03d340727789ed15547b1579a8519a29 | 1 | false | — | stale | mcp | |
| SOM-GST-0138 | GIST | dcc7874bf23522595840f6ce60e006ad | MCP Hub Development Documentation | APP | secret | — | 2025-05-17T22:26:05Z | 2025-05-17T22:26:05Z | https://gist.github.com/SoMaCoSF/dcc7874bf23522595840f6ce60e006ad | 2 | false | — | stale | mcp | |
| SOM-GST-0139 | GIST | 4bb90567e74ebdc1dc9037910b55ce70 | MCP Hub Architecture Diagrams | APP | secret | — | 2025-05-17T22:24:33Z | 2025-05-17T22:24:33Z | https://gist.github.com/SoMaCoSF/4bb90567e74ebdc1dc9037910b55ce70 | 1 | false | — | stale | mcp | |
| SOM-GST-0140 | GIST | 46471dc2def5a1e24b75f15b7a50c86b | MCP Hub Milestone 4: MCP Register and Gibson Console | APP | secret | — | 2025-05-17T21:24:56Z | 2025-05-17T21:24:56Z | https://gist.github.com/SoMaCoSF/46471dc2def5a1e24b75f15b7a50c86b | 2 | false | — | stale | mcp | |
| SOM-GST-0141 | GIST | 01b7333ea480f580b7131af9d28329e6 | MCP Hub Milestone 2: Server Implementation | APP | secret | — | 2025-05-17T21:21:57Z | 2025-05-17T21:21:57Z | https://gist.github.com/SoMaCoSF/01b7333ea480f580b7131af9d28329e6 | 2 | false | — | stale | mcp | |
| SOM-GST-0142 | GIST | 2702a0fe78eec1a874ce7df721a4cde1 | MCP Hub Milestone 1: Initial Setup | APP | secret | — | 2025-05-17T21:21:29Z | 2025-05-17T21:21:29Z | https://gist.github.com/SoMaCoSF/2702a0fe78eec1a874ce7df721a4cde1 | 1 | false | — | stale | mcp | |
| SOM-GST-0143 | GIST | 27520ded94211e88f291024e1af96183 | MCP Hub: Comprehensive Architecture Documentation and Visualizations | APP | public | — | 2025-05-17T21:09:00Z | 2025-05-17T21:09:00Z | https://gist.github.com/SoMaCoSF/27520ded94211e88f291024e1af96183 | 4 | false | — | stale | mcp | |
| SOM-GST-0144 | GIST | 5f16dfd960c1b99c1a4aac9d9e925616 | Gibson MCP Frontend - A modern web interface for the Gibson MCP system with architecture diagrams and documentation | DOC | public | — | 2025-05-17T19:41:10Z | 2025-05-17T19:41:10Z | https://gist.github.com/SoMaCoSF/5f16dfd960c1b99c1a4aac9d9e925616 | 1 | false | — | stale | mcp | |
| SOM-GST-0148 | GIST | e97d6dccecd09de5cb5a5f4263814841 | Agentic_CI.md | DOC | public | — | 2025-05-08T16:22:45Z | 2025-05-08T16:22:45Z | https://gist.github.com/SoMaCoSF/e97d6dccecd09de5cb5a5f4263814841 | 1 | false | — | stale | agent | |
| SOM-GST-0145 | GIST | dd952c529a5338eda71fed142f69dd25 | first-amendment-rights-directive2.md | DOC | public | — | 2025-05-08T02:20:44Z | 2025-05-08T02:20:44Z | https://gist.github.com/SoMaCoSF/dd952c529a5338eda71fed142f69dd25 | 1 | false | typescript | stale | ||
| SOM-GST-0146 | GIST | 9e2b56772859d7118820092ab1b2b2aa | first-amendment-rights-directive.md | DOC | public | — | 2025-05-08T02:17:45Z | 2025-05-08T02:17:45Z | https://gist.github.com/SoMaCoSF/9e2b56772859d7118820092ab1b2b2aa | 1 | false | typescript | stale | ||
| SOM-GST-0147 | GIST | 9da62298fb2decd110e3cdde3746784f | development-diary.md | DOC | public | — | 2025-05-07T22:53:14Z | 2025-05-07T22:53:14Z | https://gist.github.com/SoMaCoSF/9da62298fb2decd110e3cdde3746784f | 1 | false | — | stale | ||
| SOM-REP-0124 | REPO | v0-inventory | DOC | private | TypeScript | 2025-05-05T23:59:37Z | 2025-05-06T02:19:13Z | https://github.com/SoMaCoSF/v0-inventory | — | false | typescript | stale | |||
| SOM-GST-0149 | GIST | 607df55f4adb17e7d7618608f7f30eb3 | gist_content_20250505_091129.json | DOC | secret | — | 2025-05-05T16:11:33Z | 2025-05-05T16:11:33Z | https://gist.github.com/SoMaCoSF/607df55f4adb17e7d7618608f7f30eb3 | 1 | false | — | stale | ||
| SOM-REP-0125 | REPO | v0-Humiko | DOC | private | TypeScript | 2025-05-04T22:58:39Z | 2025-05-05T14:34:49Z | https://github.com/SoMaCoSF/v0-Humiko | — | false | typescript | stale | |||
| SOM-REP-0182 | REPO | wibllbiw | A browser game for 1 or 2 players, inspired by Slime Volleyball | DOC | public | TypeScript | 2025-05-05T02:35:11Z | 2025-05-05T02:35:11Z | https://github.com/SoMaCoSF/wibllbiw | — | true | typescript | stale | ||
| SOM-REP-0126 | REPO | v0-v0-ppe-tx | DOC | private | TypeScript | 2025-05-04T23:44:13Z | 2025-05-05T00:37:49Z | https://github.com/SoMaCoSF/v0-v0-ppe-tx | — | false | typescript | stale | |||
| SOM-GST-0189 | GIST | c051e3498d184463d5bf95e7a1ecfbfe | Cursor Project Structure Template | DOC | public | — | 2025-05-04T23:22:20Z | 2025-05-04T23:22:20Z | https://gist.github.com/SoMaCoSF/c051e3498d184463d5bf95e7a1ecfbfe | 1 | false | — | stale | cursor | |
| SOM-GST-0158 | GIST | 13baa780262e095b6c2bd12f086b9889 | Domain Scanner.ps1 | SCR | public | — | 2025-05-04T21:20:40Z | 2025-05-04T21:20:40Z | https://gist.github.com/SoMaCoSF/13baa780262e095b6c2bd12f086b9889 | 1 | false | powershell | stale | ||
| SOM-REP-0127 | REPO | Oligarchs | DOC | private | TypeScript | 2025-05-04T19:17:39Z | 2025-05-04T20:11:13Z | https://github.com/SoMaCoSF/Oligarchs | — | false | typescript | stale | oligarch | ||
| SOM-REP-0128 | REPO | phxxhp-qq | DOC | private | 2025-05-04T14:41:51Z | 2025-05-04T14:41:55Z | https://github.com/SoMaCoSF/phxxhp-qq | — | false | — | stale | ||||
| SOM-REP-0129 | REPO | phxxhp | DOC | private | TypeScript | 2025-05-04T02:33:24Z | 2025-05-04T04:39:00Z | https://github.com/SoMaCoSF/phxxhp | — | false | typescript | stale | |||
| SOM-REP-0130 | REPO | hexaphexah | DOC | public | TypeScript | 2025-05-04T00:49:24Z | 2025-05-04T01:21:26Z | https://github.com/SoMaCoSF/hexaphexah | — | false | typescript | stale | |||
| SOM-REP-0131 | REPO | system-prompts-and-models-of-ai-tools | FULL v0, Cursor, Manus, Same.dev, Lovable, Devin, Replit Agent, Windsurf Agent & VSCode Agent (And other Open Sourced) System Prompts, Tools & AI Models. | SCR | public | 2025-05-03T02:05:30Z | 2025-05-03T02:05:30Z | https://github.com/SoMaCoSF/system-prompts-and-models-of-ai-tools | — | true | typescript | stale | agent,cursor | ||
| SOM-GST-0151 | GIST | 95b3102a52c28948f10b202b8d5c06d7 | code sanitizer tool | SCR | public | — | 2025-04-30T22:20:23Z | 2025-04-30T22:20:23Z | https://gist.github.com/SoMaCoSF/95b3102a52c28948f10b202b8d5c06d7 | 2 | false | — | stale | ||
| SOM-GST-0152 | GIST | c4aacacfdf8fbfcb77ff83115f42709d | Wanting Cursor to detect when a file referenced in an import statement doesn't exist and prompt "File X not found. Create it?" | DOC | public | — | 2025-04-30T22:12:03Z | 2025-04-30T22:12:03Z | https://gist.github.com/SoMaCoSF/c4aacacfdf8fbfcb77ff83115f42709d | 4 | false | — | stale | cursor | |
| SOM-GST-0153 | GIST | 57fc7316f0601a20fd144de60c324ee5 | Wanting Cursor to detect when a file referenced in an import statement doesn't exist and prompt "File X not found. Create it?" | DOC | public | — | 2025-04-30T22:11:06Z | 2025-04-30T22:11:06Z | https://gist.github.com/SoMaCoSF/57fc7316f0601a20fd144de60c324ee5 | 4 | false | — | stale | cursor | |
| SOM-REP-0146 | REPO | Dither3D | Surface-Stable Fractal Dithering | DOC | public | ShaderLab | 2025-04-29T08:53:33Z | 2025-04-29T08:53:33Z | https://github.com/SoMaCoSF/Dither3D | — | true | shaderlab | stale | ||
| SOM-REP-0132 | REPO | giga-mcp | Project memory and task management for your codebase | DOC | public | JavaScript | 2025-04-28T17:32:37Z | 2025-04-28T17:32:37Z | https://github.com/SoMaCoSF/giga-mcp | — | true | javascript,web3 | stale | mcp | |
| SOM-REP-0134 | REPO | ibex | An iOS backup extraction tool written in Golang | SCR | public | Go | 2025-04-28T16:33:03Z | 2025-04-28T16:33:03Z | https://github.com/SoMaCoSF/ibex | — | true | go | stale | ||
| SOM-REP-0135 | REPO | manim-slides | Tool for live presentations using manim | SCR | public | Python | 2025-04-12T19:02:59Z | 2025-04-12T19:02:59Z | https://github.com/SoMaCoSF/manim-slides | — | true | python | stale | manim | |
| SOM-REP-0136 | REPO | cursor-projects-hub | A knowledge hub for Cursor projects and analysis | APP | public | HTML | 2025-04-05T17:01:22Z | 2025-04-05T20:18:01Z | https://github.com/SoMaCoSF/cursor-projects-hub | — | false | typescript | stale | cursor | |
| SOM-REP-0137 | REPO | Versatile-OCR-Program | Multi-modal OCR pipeline optimized for ML training (text, figure, math, tables, diagrams) | DOC | public | Python | 2025-04-05T13:54:40Z | 2025-04-05T13:54:40Z | https://github.com/SoMaCoSF/Versatile-OCR-Program | — | true | python | stale | ||
| SOM-REP-0138 | REPO | manimgl-commander | CursorX Challenge: Integrate ManimGL with Cursor IDE for AI-powered mathematical visualizations | DOC | public | 2025-04-05T00:42:23Z | 2025-04-05T00:42:27Z | https://github.com/SoMaCoSF/manimgl-commander | — | false | — | stale | cursor,manim | ||
| SOM-REP-0139 | REPO | CSSAIO-Compliance-Framework | Comprehensive framework for technical compliance audits across SOX, ISO, HIPAA and other standards for C-suite executives | DOC | public | 2025-03-29T23:13:55Z | 2025-03-29T23:13:55Z | https://github.com/SoMaCoSF/CSSAIO-Compliance-Framework | — | false | typescript | stale | |||
| SOM-REP-0140 | REPO | earthquake-tectonic-analysis | Analysis of major earthquakes, tectonic boundaries, and temporal patterns | DOC | public | PowerShell | 2025-03-29T16:49:12Z | 2025-03-29T16:49:21Z | https://github.com/SoMaCoSF/earthquake-tectonic-analysis | — | false | powershell | stale | ||
| SOM-REP-0141 | REPO | timbre | DOC | private | 2025-03-25T22:07:51Z | 2025-03-25T22:08:00Z | https://github.com/SoMaCoSF/timbre | — | false | — | stale | ||||
| SOM-GST-0157 | GIST | 1765805a8721c237b1f1a7bd3887a53e | figma to cursor flowchart gist | DOC | secret | — | 2025-03-22T20:29:12Z | 2025-03-22T20:29:12Z | https://gist.github.com/SoMaCoSF/1765805a8721c237b1f1a7bd3887a53e | 1 | false | — | stale | cursor | |
| SOM-REP-0142 | REPO | browser-history-analyzer | DOC | private | HTML | 2025-03-15T19:54:57Z | 2025-03-15T19:55:58Z | https://github.com/SoMaCoSF/browser-history-analyzer | — | false | html | stale | |||
| SOM-REP-0145 | REPO | fabric | fabric is an open-source framework for augmenting humans using AI. It provides a modular framework for solving specific problems using a crowdsourced set of AI prompts that can be used anywhere. | DOC | public | Go | 2025-03-03T21:03:18Z | 2025-03-03T21:03:18Z | https://github.com/SoMaCoSF/fabric | — | true | typescript,go | stale | ||
| SOM-GST-0160 | GIST | 65a716d644041947b4e01c67eed3c45c | Cursor Keybindings Manager - A PowerShell tool for managing Cursor editor keybindings | SCR | public | — | 2025-02-22T02:13:21Z | 2025-02-22T02:13:21Z | https://gist.github.com/SoMaCoSF/65a716d644041947b4e01c67eed3c45c | 2 | false | powershell | stale | cursor | |
| SOM-GST-0162 | GIST | 3c8c2b5c032bccf952003553054808c2 | MCP (Model Context Protocol) Documentation and Integration Guide | LIB | public | — | 2025-02-13T01:35:45Z | 2025-02-13T01:35:45Z | https://gist.github.com/SoMaCoSF/3c8c2b5c032bccf952003553054808c2 | 1 | false | — | stale | mcp | |
| SOM-GST-0183 | GIST | f9130949e746074c8837c5810f3c5178 | temp_linting_guide.md | DOC | public | — | 2025-02-11T22:30:12Z | 2025-02-11T22:30:12Z | https://gist.github.com/SoMaCoSF/f9130949e746074c8837c5810f3c5178 | 1 | false | — | stale | ||
| SOM-GST-0163 | GIST | 3f770d1681aaa0a6f4cc04709c6a0bfa | README.md | DOC | public | — | 2025-02-08T16:07:06Z | 2025-02-08T16:07:06Z | https://gist.github.com/SoMaCoSF/3f770d1681aaa0a6f4cc04709c6a0bfa | 4 | false | — | stale | ||
| SOM-REP-0161 | REPO | Sort_Memories | Sort photos based on the criteria of "Me with my fav people x,y,z" out of bunch of group photos/random photos | DOC | public | Python | 2025-02-08T14:42:29Z | 2025-02-08T14:42:30Z | https://github.com/SoMaCoSF/Sort_Memories | — | true | python | stale | ||
| SOM-REP-0147 | REPO | cognee-starter | Starter repo with examples of Cognee usages. | DOC | public | Python | 2025-02-08T06:15:24Z | 2025-02-08T06:15:24Z | https://github.com/SoMaCoSF/cognee-starter | — | false | python | stale | ||
| SOM-REP-0150 | REPO | deepclaude | A high-performance LLM inference API and Chat UI that integrates DeepSeek R1's CoT reasoning traces with Anthropic Claude models. | API | public | Rust | 2025-02-05T23:29:38Z | 2025-02-05T23:29:38Z | https://github.com/SoMaCoSF/deepclaude | — | true | rust | stale | claude,llm | |
| SOM-REP-0149 | REPO | wikitok | DOC | public | TypeScript | 2025-02-05T02:32:31Z | 2025-02-05T02:32:31Z | https://github.com/SoMaCoSF/wikitok | — | true | typescript | stale | |||
| SOM-REP-0185 | REPO | flutter-hexagon | DOC | public | Dart | 2025-02-05T01:06:17Z | 2025-02-05T01:06:17Z | https://github.com/SoMaCoSF/flutter-hexagon | — | true | dart | stale | |||
| SOM-REP-0157 | REPO | manim | Animation engine for explanatory math videos | DOC | public | Python | 2025-02-01T22:01:21Z | 2025-02-01T22:01:21Z | https://github.com/SoMaCoSF/manim | — | true | python | stale | manim | |
| SOM-GST-0172 | GIST | 8dc30b7cafa69e9accd26ff48555858f | New-AIComposer.ps1 | SCR | public | — | 2025-01-30T12:33:40Z | 2025-01-30T12:33:40Z | https://gist.github.com/SoMaCoSF/8dc30b7cafa69e9accd26ff48555858f | 6 | false | powershell | stale | ||
| SOM-REP-0151 | REPO | cursor-deepseek | A high-performance HTTP/2-enabled proxy server designed specifically to enable Cursor IDE's Composer to use DeepSeek's and OpenRouter's language models. This proxy translates OpenAI-compatible API req | API | public | Go | 2025-01-25T22:51:38Z | 2025-01-25T22:51:38Z | https://github.com/SoMaCoSF/cursor-deepseek | — | true | typescript,go | stale | cursor | |
| SOM-REP-0152 | REPO | cv | Write your CV in Markdown and generate both a responsive web page and a professional PDF with minimal setup. Features modern tooling (Vite, Puppeteer), beautiful icons, and automated PDF generation vi | SCR | public | JavaScript | 2025-01-25T21:43:41Z | 2025-01-25T21:43:42Z | https://github.com/SoMaCoSF/cv | — | true | javascript | stale | ||
| SOM-GST-0164 | GIST | dfcb90023e73659e8fdfd0ff8e308ffe | A script that sends an Android device's back camera video feed into a v4l2 sink and processes the image using YOLOv11 to check for airplanes. | SCR | public | — | 2025-01-25T15:05:45Z | 2025-01-25T15:05:45Z | https://gist.github.com/SoMaCoSF/dfcb90023e73659e8fdfd0ff8e308ffe | 1 | false | — | stale | ||
| SOM-GST-0165 | GIST | d1a1553edeac07005e5ed4218ac4aa5f | AI Services Status Dashboard - A PowerShell-based monitoring solution | APP | public | — | 2025-01-12T17:21:28Z | 2025-01-12T17:21:28Z | https://gist.github.com/SoMaCoSF/d1a1553edeac07005e5ed4218ac4aa5f | 6 | false | powershell | stale | ||
| SOM-GST-0166 | GIST | 17a312d2c7fcbf4331411b24407621ab | ProcessMonitor.ps1 | SCR | public | — | 2025-01-12T17:14:40Z | 2025-01-12T17:14:40Z | https://gist.github.com/SoMaCoSF/17a312d2c7fcbf4331411b24407621ab | 1 | false | powershell | stale | ||
| SOM-GST-0167 | GIST | 77f2545f545f298667fb382ad9581085 | New-AIComposer.ps1 | SCR | public | — | 2025-01-12T17:14:40Z | 2025-01-12T17:14:40Z | https://gist.github.com/SoMaCoSF/77f2545f545f298667fb382ad9581085 | 1 | false | powershell | stale | ||
| SOM-GST-0168 | GIST | cbc67d2b2d0344e21be3b719879c0da2 | DatabaseMonitor.ps1 | SCR | public | — | 2025-01-12T17:14:39Z | 2025-01-12T17:14:39Z | https://gist.github.com/SoMaCoSF/cbc67d2b2d0344e21be3b719879c0da2 | 1 | false | powershell | stale | ||
| SOM-GST-0169 | GIST | 6187c12ac75b752576ec93f2dcd3b941 | AIStatusChecks.ps1 | SCR | public | — | 2025-01-12T17:14:38Z | 2025-01-12T17:14:38Z | https://gist.github.com/SoMaCoSF/6187c12ac75b752576ec93f2dcd3b941 | 1 | false | powershell | stale | ||
| SOM-GST-0170 | GIST | f0e2eb34eeecfb922b32eb1fa4b2e3ff | AIServicesDashboard.ps1 | APP | public | — | 2025-01-12T17:14:37Z | 2025-01-12T17:14:37Z | https://gist.github.com/SoMaCoSF/f0e2eb34eeecfb922b32eb1fa4b2e3ff | 1 | false | powershell | stale | ||
| SOM-GST-0171 | GIST | 1e36d18ee018655d7bf72bb405b7250d | AI_Status.Rmd | DOC | public | — | 2025-01-12T17:14:36Z | 2025-01-12T17:14:36Z | https://gist.github.com/SoMaCoSF/1e36d18ee018655d7bf72bb405b7250d | 1 | false | — | stale | ||
| SOM-REP-0154 | REPO | dockview | Zero dependency Docking Layout Manager. Supports Vanilla TypeScript, React and Vue. | DOC | public | TypeScript | 2025-01-11T23:24:29Z | 2025-01-11T23:24:29Z | https://github.com/SoMaCoSF/dockview | — | true | next.js,typescript | stale | ||
| SOM-REP-0155 | REPO | cursor-agent-analysis | Analysis of Cursor's Agentic Context Processing | DOC | public | HTML | 2025-01-11T19:09:58Z | 2025-01-11T20:36:39Z | https://github.com/SoMaCoSF/cursor-agent-analysis | — | false | html | stale | agent,cursor | |
| SOM-REP-0158 | REPO | somacoprplx | A minimalistic AI-powered search engine that helps you find information on the internet. Powered by Vercel AI SDK! Search with models like Grok 2.0. | DOC | public | TypeScript | 2025-01-11T17:19:52Z | 2025-01-11T17:24:15Z | https://github.com/SoMaCoSF/somacoprplx | — | true | next.js,typescript | stale | ||
| SOM-REP-0159 | REPO | quantum-context | DOC | private | 2025-01-06T16:23:26Z | 2025-01-06T16:23:26Z | https://github.com/SoMaCoSF/quantum-context | — | false | — | stale | ||||
| SOM-REP-0160 | REPO | svg-smpte-test | DOC | public | 2025-01-04T15:50:07Z | 2025-01-04T15:50:08Z | https://github.com/SoMaCoSF/svg-smpte-test | — | false | — | stale | ||||
| SOM-REP-0143 | REPO | dnc-upwork-01 | DOC | private | Python | 2024-08-21T04:18:21Z | 2025-01-02T17:38:31Z | https://github.com/SoMaCoSF/dnc-upwork-01 | — | false | python | stale | dnc | ||
| SOM-GST-0174 | GIST | 531cb59ad0a1322835fcb6d2c89615fb | Cursor Workspace .ENV Themes - A guide to managing Cursor/VSCode workspace themes through environment variables | DOC | public | — | 2024-12-30T15:29:34Z | 2024-12-30T15:29:34Z | https://gist.github.com/SoMaCoSF/531cb59ad0a1322835fcb6d2c89615fb | 1 | false | — | stale | cursor | |
| SOM-GST-0175 | GIST | e06e830d9e43428464f397e21fca1d2b | Cursor Workspace .ENV Themes - A guide to managing Cursor/VSCode workspace themes through environment variables | DOC | public | — | 2024-12-30T15:22:32Z | 2024-12-30T15:22:32Z | https://gist.github.com/SoMaCoSF/e06e830d9e43428464f397e21fca1d2b | 1 | false | — | stale | cursor | |
| SOM-GST-0176 | GIST | 48acef3356a164dea9788bb6ad73b354 | [YOLOREN.AI] # Prefix for all gist descriptions Database State Documentation - YOLOREN.AI - 2024-12-29 | DOC | secret | — | 2024-12-29T22:17:37Z | 2024-12-29T22:17:37Z | https://gist.github.com/SoMaCoSF/48acef3356a164dea9788bb6ad73b354 | 1 | false | web3 | stale | ||
| SOM-GST-0177 | GIST | 789941142a7bc67ea05b4edfd28b41d3 | [YOLOREN.AI] # Prefix for all gist descriptions Database State Documentation - YOLOREN.AI - 2024-12-29 | DOC | secret | — | 2024-12-29T22:16:48Z | 2024-12-29T22:16:48Z | https://gist.github.com/SoMaCoSF/789941142a7bc67ea05b4edfd28b41d3 | 1 | false | web3 | stale | ||
| SOM-GST-0178 | GIST | 98a188310fb5172782dccb0983eb2f2a | [YOLOREN.AI] # Prefix for all gist descriptions Database State Documentation - YOLOREN.AI - 2024-12-29 | DOC | secret | — | 2024-12-29T22:13:33Z | 2024-12-29T22:13:33Z | https://gist.github.com/SoMaCoSF/98a188310fb5172782dccb0983eb2f2a | 1 | false | web3 | stale | ||
| SOM-GST-0179 | GIST | 9a1ef34949e35cfaee87264b1bf6f6f3 | [YOLOREN.AI] # Prefix for all gist descriptions Database State Documentation - YOLOREN.AI - 2024-12-29 | DOC | secret | — | 2024-12-29T22:10:34Z | 2024-12-29T22:10:34Z | https://gist.github.com/SoMaCoSF/9a1ef34949e35cfaee87264b1bf6f6f3 | 1 | false | web3 | stale | ||
| SOM-GST-0180 | GIST | c3319e5a73dade763fb9d7059862ec60 | [YOLOREN.AI] # Prefix for all gist descriptions Database State Documentation - YOLOREN.AI - 2024-12-29 | DOC | secret | — | 2024-12-29T22:08:01Z | 2024-12-29T22:08:01Z | https://gist.github.com/SoMaCoSF/c3319e5a73dade763fb9d7059862ec60 | 1 | false | web3 | stale | ||
| SOM-GST-0181 | GIST | 85d8fe20ee6a9e950ddf55775ad1ce0b | [YOLOREN.AI] # Prefix for all gist descriptions Database State Documentation - YOLOREN.AI - 2024-12-29 | DOC | secret | — | 2024-12-29T21:58:30Z | 2024-12-29T21:58:30Z | https://gist.github.com/SoMaCoSF/85d8fe20ee6a9e950ddf55775ad1ce0b | 1 | false | web3 | stale | ||
| SOM-REP-0162 | REPO | yolorenai-docs | DOC | private | HTML | 2024-12-29T21:21:02Z | 2024-12-29T21:21:54Z | https://github.com/SoMaCoSF/yolorenai-docs | — | false | html | stale | |||
| SOM-GST-0184 | GIST | 4a12b1672f167ebf124660a2e0bba8d7 | Strategic_Linting.rmd | DOC | secret | — | 2024-12-29T16:04:26Z | 2024-12-29T16:04:26Z | https://gist.github.com/SoMaCoSF/4a12b1672f167ebf124660a2e0bba8d7 | 1 | false | — | stale | ||
| SOM-REP-0163 | REPO | hexaphexah-toolchest | A collection of PowerShell tools for system administration and automation | SCR | public | PowerShell | 2024-12-28T22:33:07Z | 2024-12-28T22:34:32Z | https://github.com/SoMaCoSF/hexaphexah-toolchest | — | false | powershell | stale | ||
| SOM-REP-0164 | REPO | yolo-agent-history | A universal logging standard for AI agents | DOC | public | 2024-12-27T23:01:33Z | 2024-12-27T23:01:34Z | https://github.com/SoMaCoSF/yolo-agent-history | — | false | typescript | stale | agent | ||
| SOM-REP-0165 | REPO | swarm_crew | DOC | private | 2024-12-25T20:37:58Z | 2024-12-25T20:37:58Z | https://github.com/SoMaCoSF/swarm_crew | — | false | — | stale | ||||
| SOM-GST-0185 | GIST | 413aac73d6a784781244d36ec2662e93 | gist_content.json | DOC | public | — | 2024-12-24T01:26:19Z | 2024-12-24T01:26:19Z | https://gist.github.com/SoMaCoSF/413aac73d6a784781244d36ec2662e93 | 1 | false | — | stale | ||
| SOM-REP-0166 | REPO | cursor-control-plane | A PostgreSQL-based control plane for multi-instance Cursor IDE coordination | DOC | private | Python | 2024-12-24T01:01:02Z | 2024-12-24T01:10:16Z | https://github.com/SoMaCoSF/cursor-control-plane | — | false | python,db | stale | cursor | |
| SOM-GST-0186 | GIST | afec21db9a2809e2118d803c8fb6b819 | Linting: Definitions and method for linting directives for Cursor Compsoser IDE Agents | DOC | public | — | 2024-12-22T23:27:53Z | 2024-12-22T23:27:53Z | https://gist.github.com/SoMaCoSF/afec21db9a2809e2118d803c8fb6b819 | 4 | false | typescript | stale | agent,cursor | |
| SOM-GST-0187 | GIST | 8ee4f7fb764269c6850f5aa88357c891 | Agentic Workflow Documentation System - Source of Truth for Multi-Agent Development | DOC | public | — | 2024-12-22T06:43:34Z | 2024-12-22T06:43:34Z | https://gist.github.com/SoMaCoSF/8ee4f7fb764269c6850f5aa88357c891 | 1 | false | — | stale | agent | |
| SOM-GST-0188 | GIST | 0ef2e8812ae81d2b13fb6401a706150d | Cursor Database Documentation Standards | DOC | public | — | 2024-12-22T06:28:43Z | 2024-12-22T06:28:43Z | https://gist.github.com/SoMaCoSF/0ef2e8812ae81d2b13fb6401a706150d | 1 | false | web3 | stale | cursor | |
| SOM-GST-0190 | GIST | a9d2a5d830d8f093491f62cb013337eb | Cursor Project Environment Configuration | CFG | public | — | 2024-12-22T06:28:36Z | 2024-12-22T06:28:36Z | https://gist.github.com/SoMaCoSF/a9d2a5d830d8f093491f62cb013337eb | 1 | false | — | stale | cursor | |
| SOM-GST-0191 | GIST | d4386ef6a39d72f50d6cdbc40626bf97 | Cursor IDE Development Standards | DOC | public | — | 2024-12-22T06:28:30Z | 2024-12-22T06:28:30Z | https://gist.github.com/SoMaCoSF/d4386ef6a39d72f50d6cdbc40626bf97 | 1 | false | — | stale | cursor | |
| SOM-REP-0167 | REPO | aipyri_01 | Cursor Toolbelt for use by Compser Agents across projects | SCR | private | 2024-12-22T01:40:19Z | 2024-12-22T01:40:19Z | https://github.com/SoMaCoSF/aipyri_01 | — | false | typescript | stale | agent,cursor | ||
| SOM-GST-0192 | GIST | c063ed5ff55fca466b161b8fa0caae5b | Cursor Composer Agent Documentation Style_guide_rules | DOC | public | — | 2024-12-20T02:59:56Z | 2024-12-20T02:59:56Z | https://gist.github.com/SoMaCoSF/c063ed5ff55fca466b161b8fa0caae5b | 1 | false | — | stale | agent,cursor | |
| SOM-REP-0168 | REPO | grafana-11-3-2 | The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. | APP | public | TypeScript | 2024-12-04T23:36:12Z | 2024-12-04T23:36:12Z | https://github.com/SoMaCoSF/grafana-11-3-2 | — | true | typescript,db | stale | ||
| SOM-REP-0169 | REPO | dnc-grafana-1 | Cursor for creating a grafana repo and service. | DOC | private | 2024-12-04T23:15:31Z | 2024-12-04T23:15:34Z | https://github.com/SoMaCoSF/dnc-grafana-1 | — | false | — | stale | cursor,dnc | ||
| SOM-REP-0170 | REPO | ai-sheet-frontend | front end for ai sheet | DOC | public | HTML | 2024-10-14T15:53:35Z | 2024-10-14T15:53:35Z | https://github.com/SoMaCoSF/ai-sheet-frontend | — | false | html | stale | ||
| SOM-REP-0171 | REPO | CyberScraper-2077 | A Powerful web scraper powered by LLM | Open-AI & Ollama | DOC | public | Python | 2024-08-28T21:36:46Z | 2024-10-08T03:39:09Z | https://github.com/SoMaCoSF/CyberScraper-2077 | — | true | python | stale | llm,ollama | |
| SOM-GST-0193 | GIST | ace0cdbbeebc8d2d6a5b185c7ec828ca | api dashboard updates | APP | secret | — | 2024-09-04T02:16:11Z | 2024-09-04T02:16:11Z | https://gist.github.com/SoMaCoSF/ace0cdbbeebc8d2d6a5b185c7ec828ca | 1 | false | — | stale | ||
| SOM-REP-0183 | REPO | chatgpt-export | Browser script to share and export ChatGPT chat logs to Markdown, JSON, or as Image (PNG) | SCR | public | JavaScript | 2024-08-30T01:15:20Z | 2024-08-30T01:15:20Z | https://github.com/SoMaCoSF/chatgpt-export | — | true | javascript | stale | ||
| SOM-REP-0176 | REPO | html2canvas | Screenshots with JavaScript | SCR | public | TypeScript | 2024-08-30T01:14:36Z | 2024-08-30T01:14:36Z | https://github.com/SoMaCoSF/html2canvas | — | true | typescript,javascript | stale | ||
| SOM-REP-0179 | REPO | claude-export | Browser script to share and export Anthropic Claude chat logs to Markdown, JSON, or as Image (PNG) | SCR | public | JavaScript | 2024-08-30T01:10:59Z | 2024-08-30T01:10:59Z | https://github.com/SoMaCoSF/claude-export | — | true | javascript | stale | claude | |
| SOM-GST-0194 | GIST | 8ab9947e0f19497804477eff83eb1165 | dnc_timezone_logic | DOC | secret | — | 2024-08-25T17:47:11Z | 2024-08-25T17:47:11Z | https://gist.github.com/SoMaCoSF/8ab9947e0f19497804477eff83eb1165 | 1 | false | — | stale | dnc | |
| SOM-REP-0172 | REPO | dnc_admin | no_carrier dnc_admin | DOC | private | 2024-08-25T15:33:22Z | 2024-08-25T15:33:26Z | https://github.com/SoMaCoSF/dnc_admin | — | false | — | stale | dnc | ||
| SOM-REP-0186 | REPO | unitdb | A simple JSON database containing conversion factors and other information for a large number of measurement units | DOC | public | 2024-08-19T21:28:49Z | 2024-08-19T21:28:50Z | https://github.com/SoMaCoSF/unitdb | — | true | typescript,web3,db | stale | |||
| SOM-REP-0173 | REPO | do-js-dnc-00 | DO JamStack Lead | DOC | private | Python | 2024-07-25T07:54:57Z | 2024-07-25T08:20:07Z | https://github.com/SoMaCoSF/do-js-dnc-00 | — | false | python,javascript | stale | dnc | |
| SOM-REP-0175 | REPO | shape-of-motion | motion interpolation from single photo - practice for time lapse motion interpolation | DOC | public | Python | 2024-07-25T04:23:01Z | 2024-07-25T04:23:01Z | https://github.com/SoMaCoSF/shape-of-motion | — | true | python | stale | ||
| SOM-REP-0174 | REPO | dnc_lead | DOC | private | 2024-07-25T01:07:30Z | 2024-07-25T01:07:34Z | https://github.com/SoMaCoSF/dnc_lead | — | false | — | stale | dnc | |||
| SOM-REP-0177 | REPO | dnc_globalrap | Do Not Call | DOC | private | 2024-07-16T16:13:01Z | 2024-07-16T16:14:04Z | https://github.com/SoMaCoSF/dnc_globalrap | — | false | — | stale | dnc | ||
| SOM-REP-0178 | REPO | dnclist | do not call | SCR | private | Python | 2024-07-09T20:38:44Z | 2024-07-09T21:00:41Z | https://github.com/SoMaCoSF/dnclist | — | false | python | stale | dnc | |
| SOM-GST-0195 | GIST | 505a0397d81f7f6f9f5f384a26fac0ce | telco | DOC | secret | — | 2024-07-04T17:13:56Z | 2024-07-04T17:13:56Z | https://gist.github.com/SoMaCoSF/505a0397d81f7f6f9f5f384a26fac0ce | 2 | false | — | stale | ||
| SOM-GST-0196 | GIST | 932cb1349e62247e4893da221df6c293 | Congress | DOC | public | — | 2024-07-03T19:23:14Z | 2024-07-03T19:23:14Z | https://gist.github.com/SoMaCoSF/932cb1349e62247e4893da221df6c293 | 2 | false | — | stale | ||
| SOM-GST-0197 | GIST | 70550a8140eb390b726a6a8fb6316f05 | booms | DOC | secret | — | 2024-07-02T23:51:12Z | 2024-07-02T23:51:12Z | https://gist.github.com/SoMaCoSF/70550a8140eb390b726a6a8fb6316f05 | 1 | false | — | stale | ||
| SOM-GST-0198 | GIST | 3f375005ea149fc0f85c51b58f01e541 | c4 | DOC | public | — | 2024-07-02T22:33:21Z | 2024-07-02T22:33:21Z | https://gist.github.com/SoMaCoSF/3f375005ea149fc0f85c51b58f01e541 | 1 | false | — | stale | ||
| SOM-GST-0199 | GIST | 8ab7828453a48c2676948ca6038919e3 | c3 | DOC | public | — | 2024-07-02T22:32:27Z | 2024-07-02T22:32:27Z | https://gist.github.com/SoMaCoSF/8ab7828453a48c2676948ca6038919e3 | 1 | false | — | stale | ||
| SOM-GST-0200 | GIST | 22108041653c0784a83dc4d8f86b8d99 | connections | DOC | public | — | 2024-07-02T22:31:57Z | 2024-07-02T22:31:57Z | https://gist.github.com/SoMaCoSF/22108041653c0784a83dc4d8f86b8d99 | 1 | false | — | stale | ||
| SOM-GST-0203 | GIST | 15c9d0cbc49e6b323e13a69d83451e8f | Compare two PDFs using ImageMagick - provides a visual comaprison and a perceptual hash comparison (numerical) | DOC | public | — | 2024-07-02T19:11:34Z | 2024-07-02T19:11:34Z | https://gist.github.com/SoMaCoSF/15c9d0cbc49e6b323e13a69d83451e8f | 4 | false | — | stale | ||
| SOM-REP-0180 | REPO | hexaconspirals | Hex-node Context Archetype Framework | DOC | private | 2024-06-26T22:21:34Z | 2024-06-26T22:21:34Z | https://github.com/SoMaCoSF/hexaconspirals | — | false | — | stale | |||
| SOM-GST-0204 | GIST | 6840c085c74237b73ffff2720620337d | ManorLords Coat Of Arms Randomizer | DOC | public | — | 2024-06-15T08:24:24Z | 2024-06-15T08:24:24Z | https://gist.github.com/SoMaCoSF/6840c085c74237b73ffff2720620337d | 1 | false | — | stale | ||
| SOM-GST-0205 | GIST | 09a4316bb7558bd9927f3ecef7417807 | Little python script to make a backup of Outpost: Infinity Siege .sav files much easier to save, annotate and keep a history of. | SCR | secret | — | 2024-04-06T23:51:05Z | 2024-04-06T23:51:05Z | https://gist.github.com/SoMaCoSF/09a4316bb7558bd9927f3ecef7417807 | 2 | false | python | stale |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment