← back to Build Debrief
data/projects.json
5450 lines
{
"generated_at": "2026-05-10T14:49:32.198Z",
"total": 245,
"projects": [
{
"path": "/Users/macstudio3/Projects/build-debrief",
"name": "build-debrief",
"has_git": true,
"first_at": "2026-05-10T07:30:47-07:00",
"last_at": "2026-05-10T07:30:47-07:00",
"last_subject": "initial scaffold: build-debrief — per-project pros/cons board with Claude chat per build",
"commit_count": 1,
"size_mb": 6,
"days_since": 0,
"health": "hot",
"pkg_name": "build-debrief",
"pkg_description": "Per-project debrief board: pros vs cons, verdicts, and Claude chat per build.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallsandfabrics",
"name": "wallsandfabrics",
"has_git": true,
"first_at": "2026-05-10T04:43:26-07:00",
"last_at": "2026-05-10T04:43:26-07:00",
"last_subject": "initial scaffold + GA gtag G-429EVNMHVY (port 9934)",
"commit_count": 1,
"size_mb": 11,
"days_since": 0,
"health": "hot",
"pkg_name": "wallsandfabrics",
"pkg_description": "Walls & Fabrics — combo storefront across DW wallcoverings + fabrics + murals + trims",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": [
{
"role": "user",
"content": "Roast this project. Be honest. Where am I kidding myself?",
"at": "2026-05-10T16:30:11.879Z"
},
{
"role": "assistant",
"content": "You're kidding yourself if you think this is a viable project yet. The repo is a 11MB skeleton with zero functional code — just a GA tag and a scaffold. No storefront logic, no product data, no UI, no e-commerce infrastructure. You’ve built a tracking pixel, not a business. The \"combo storefront\" promise is aspirational, but the codebase is a blank canvas. You’re 0% done. \n\n**Next move:** `/kill` or `/pivot` — this isn’t a project, it’s a placeholder. Either build something real (e.g., `/commit` a working product page) or admit it’s a dead end.",
"at": "2026-05-10T16:31:58.045Z"
}
]
},
{
"path": "/Users/macstudio3/Projects/wallpaperestimator",
"name": "wallpaperestimator",
"has_git": true,
"first_at": "2026-05-10T04:35:26-07:00",
"last_at": "2026-05-10T04:35:26-07:00",
"last_subject": "initial scaffold + GA gtag",
"commit_count": 1,
"size_mb": 5,
"days_since": 0,
"health": "hot",
"pkg_name": "wallpaperestimator",
"pkg_description": "Wallpaper Estimator — pure client-side yardage calculator with closing CTA grid of curated wallpaper picks",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "go",
"verdict": null,
"priority": 0,
"notes": "",
"chat": [
{
"role": "user",
"content": "build out",
"at": "2026-05-10T16:37:44.724Z"
},
{
"role": "assistant",
"content": "/build out: \n1. **Add core calculator logic** (room dimensions → yardage math). \n2. **Implement CTA grid UI** (static sample wallpapers for MVP). \n3. **Set up form validation** (e.g., numeric inputs, error states). \n4. **Add responsive design** (mobile/tablet layout). \n\n```bash\n# 1. Create calculator component\nmkdir src/components/Calculator\ntouch src/components/Calculator/index.jsx\n\n# 2. Add sample wallpapers data\nmkdir src/data\ntouch src/data/wallpapers.json\n```\n\n```jsx\n// Example calculator logic (src/components/Calculator/index.jsx)\nfunction calculateYardage(length, height, patternRepeat) {\n const area = length * height;\n const repeatAdjustment = patternRepeat ? 1.2 : 1;\n return Math.ceil((area * repeatAdjustment) / 10); // 10 sq ft per roll\n}\n```\n\n```json\n// Sample wallpapers data (src/data/wallpapers.json)\n[\n { id: 1, name: \"Modern Geometric\", image: \"https://via.placeholder.com/300\", cta: \"Shop Now\" },\n { id: 2, name: \"Elegant Floral\", image: \"https://via.placeholder.com/300\", cta: \"View Details\" }\n]\n```\n\nNext: **Write unit tests** for `calculateYardage` with Jest. \nThen: **Wire up form inputs** to trigger calculations.",
"at": "2026-05-10T16:38:31.258Z"
},
{
"role": "user",
"content": "yes and use abramstasks to plan out",
"at": "2026-05-10T16:38:51.688Z"
},
{
"role": "assistant",
"content": "/build out with abramstasks: \n1. **Create task list** in abramstasks for core features and technical debt. \n2. **Link tasks to code** (e.g., \"Implement room dimension input\" → `src/components/Calculator/index.jsx`). \n\n```bash\n# Initialize abramstasks (if not already set up)\nnpx abramstasks init\n\n# Add core tasks\nnpx abramstasks add \"Implement room dimension input\" --project wallpaperestimator --estimate 2h --depends-on \"initial scaffold\"\nnpx abramstasks add \"Add pattern repeat toggle\" --project wallpaperestimator --estimate 1h --depends-on \"Implement room dimension input\"\nnpx abramstasks add \"Write yardage calculation formula\" --project wallpaperestimator --estimate 1h --depends-on \"Add pattern repeat toggle\"\nnpx abramstasks add \"Build CTA grid with sample wallpapers\" --project wallpaperestimator --estimate 3h --depends-on \"initial scaffold\"\nnpx abramstasks add \"Add form validation for numeric inputs\" --project wallpaperestimator --estimate 2h --depends-on \"Implement room dimension input\"\nnpx abramstasks add \"Make UI responsive for mobile\" --project wallpaperestimator --estimate 4h --depends-on \"Build CTA grid with sample wallpapers\"\nnpx abramstasks add \"Write unit tests for calculator logic\" --project wallpaperestimator --estimate 2h --depends-on \"Write yardage calculation formula\"\n```\n\nNext: \n```bash\n# Sync tasks with code (optional but recommended)\nnpx abramstasks sync\n```",
"at": "2026-05-10T16:39:43.365Z"
}
]
},
{
"path": "/Users/macstudio3/Projects/wallpaperdistributors",
"name": "wallpaperdistributors",
"has_git": true,
"first_at": "2026-05-10T04:25:02-07:00",
"last_at": "2026-05-10T04:25:02-07:00",
"last_subject": "initial scaffold + GA gtag",
"commit_count": 1,
"size_mb": 7,
"days_since": 0,
"health": "hot",
"pkg_name": "wallpaperdistributors",
"pkg_description": "Wallpaper Distributors — directory of B2B wallcovering distributors and the vendor lines each one carries, for designers and trade buyers sourcing residential and commercial wallpaper.",
"pkg_version": "0.1.0",
"readme_snippet": "B2B wallcovering distributor directory. Operated by Designer Wallcoverings as a free industry resource.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpapercontractor",
"name": "wallpapercontractor",
"has_git": true,
"first_at": "2026-05-10T04:13:20-07:00",
"last_at": "2026-05-10T04:13:20-07:00",
"last_subject": "initial scaffold + GA gtag G-LC83F70YHV",
"commit_count": 1,
"size_mb": 7,
"days_since": 0,
"health": "hot",
"pkg_name": "wallpapercontractor",
"pkg_description": "Commercial wallpaper contractor directory — bonded, insured, large-format wallcovering installation contractors for hospitality, retail, corporate, healthcare, and multifamily projects",
"pkg_version": "0.1.0",
"readme_snippet": "Commercial wallpaper contractor directory — bonded, insured, large-format wallcovering installation contractors for hospitality, retail, corporate, healthcare, multifamily, and government projects across the United States.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallco",
"name": "wallco",
"has_git": true,
"first_at": "2026-05-10T03:59:35-07:00",
"last_at": "2026-05-10T03:59:35-07:00",
"last_subject": "initial scaffold + GA gtag (G-H47K8H8G5J) — wallco.ai AI search",
"commit_count": 1,
"size_mb": 9,
"days_since": 0,
"health": "hot",
"pkg_name": "wallco-ai",
"pkg_description": "wallco.ai — describe a room, get matching wallcoverings via Gemini retrieval over the DW catalog.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/starsofdesign",
"name": "starsofdesign",
"has_git": true,
"first_at": "2026-05-10T03:50:34-07:00",
"last_at": "2026-05-10T03:50:34-07:00",
"last_subject": "initial scaffold + GA gtag (G-YCT0F2Q692) + 27 designer profiles",
"commit_count": 1,
"size_mb": 7,
"days_since": 0,
"health": "hot",
"pkg_name": "starsofdesign",
"pkg_description": "Stars of Design — profile directory of notable interior designers and the wallcoverings that match their signature style.",
"pkg_version": "0.1.0",
"readme_snippet": "Editorial profile directory of notable interior designers — historic and\ncontemporary — paired with the Designer Wallcoverings collections that match\neach designer's signature style.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/hospitalitydesignreps",
"name": "hospitalitydesignreps",
"has_git": true,
"first_at": "2026-05-10T03:37:08-07:00",
"last_at": "2026-05-10T03:37:08-07:00",
"last_subject": "initial scaffold + GA gtag (G-M79CJBLRFH, port 9927)",
"commit_count": 1,
"size_mb": 7,
"days_since": 0,
"health": "hot",
"pkg_name": "hospitalitydesignreps",
"pkg_description": "Hospitality design sales rep directory — find independent reps for boutique hotels, hotel brands, resorts, F&B, casino, cruise, and spa interior design",
"pkg_version": "0.1.0",
"readme_snippet": "Hospitality design sales-rep directory. Independent reps and showroom agencies covering U.S. boutique hotels, hotel brands, resorts, casinos, cruise lines, F&B, and spa interior design.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designtradelive",
"name": "designtradelive",
"has_git": true,
"first_at": "2026-05-10T03:26:25-07:00",
"last_at": "2026-05-10T03:26:25-07:00",
"last_subject": "initial scaffold + GA gtag G-E8R8V9RDXN — designtradelive events directory (25 seed events)",
"commit_count": 1,
"size_mb": 7,
"days_since": 0,
"health": "hot",
"pkg_name": "designtradelive",
"pkg_description": "Design industry events + trade shows aggregator (ICFF, NeoCon, KBIS, High Point Market, BDNY, Salone del Mobile, etc.)",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designerwallcoverings",
"name": "designerwallcoverings",
"has_git": true,
"first_at": "2026-05-10T03:17:51-07:00",
"last_at": "2026-05-10T03:19:48-07:00",
"last_subject": "deploy: pm2 port 9925 + nginx :80 vhost, gemini env loader",
"commit_count": 2,
"size_mb": 9,
"days_since": 0,
"health": "hot",
"pkg_name": "designerwallcoverings-ai",
"pkg_description": "designerwallcoverings.ai — AI room-render landing. Upload a room photo, get matching wallcoverings.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": [
{
"role": "user",
"content": "run this code",
"at": "2026-05-10T16:40:11.695Z"
},
{
"role": "assistant",
"content": "To run the project, execute these commands in the project directory:\n\n```bash\ncd /Users/macstudio3/Projects/designerwallcoverings\nnpm install\npm2 start app.js --port 9925\n```\n\nIf `app.js` is not the correct entry file, adjust the filename in the `pm2 start` command based on your project's actual entry point (e.g., `index.js`, `server.js`).",
"at": "2026-05-10T16:41:04.023Z"
},
{
"role": "user",
"content": "also, add 10 new designs daily using the art generator combiming artists like mondrian and van gogh... and ideas for Whimsical Designs. Think drunk animals, not monkeys, but aorangutans or any that gear towrd adults drinking and smoking cigars and smoking joints. Do this for 30 days in a grid slider and show like novasuede.com for css an hamburger details unsing my own database of all images",
"at": "2026-05-10T16:42:08.093Z"
},
{
"role": "assistant",
"content": "(LLM unreachable. Try again or open a Claude tab via the Open-iTerm action.)",
"at": "2026-05-10T16:44:11.570Z",
"error": true
}
]
},
{
"path": "/Users/macstudio3/Projects/designerrepresentatives",
"name": "designerrepresentatives",
"has_git": true,
"first_at": "2026-05-10T03:02:03-07:00",
"last_at": "2026-05-10T03:02:03-07:00",
"last_subject": "initial scaffold + GA gtag (designer representatives directory, build_only phase)",
"commit_count": 1,
"size_mb": 8,
"days_since": 0,
"health": "hot",
"pkg_name": "designer-representatives",
"pkg_description": "Designer Representatives — directory of independent sales reps for designers, showrooms, and contract specifiers.",
"pkg_version": "0.1.0",
"readme_snippet": "Canonical directory of independent sales reps for designers, showrooms,\nand contract specifiers. Sister property of Designer Wallcoverings.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designerlookbooks",
"name": "designerlookbooks",
"has_git": true,
"first_at": "2026-05-10T02:49:20-07:00",
"last_at": "2026-05-10T02:49:20-07:00",
"last_subject": "initial scaffold + GA gtag (8 aesthetic clusters, magazine layout)",
"commit_count": 1,
"size_mb": 8,
"days_since": 0,
"health": "hot",
"pkg_name": "designerlookbooks",
"pkg_description": "designerlookbooks.com — visual lookbook hub grouping wallcoverings by aesthetic cluster",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/commercialdesignreps",
"name": "commercialdesignreps",
"has_git": true,
"first_at": "2026-05-10T02:40:14-07:00",
"last_at": "2026-05-10T02:40:14-07:00",
"last_subject": "initial scaffold + GA gtag",
"commit_count": 1,
"size_mb": 7,
"days_since": 0,
"health": "hot",
"pkg_name": "commercialdesignreps",
"pkg_description": "Commercial design sales rep directory — find independent reps for hospitality, healthcare, contract, and commercial interior design markets",
"pkg_version": "0.1.0",
"readme_snippet": "Commercial design sales-rep directory. Independent reps and showroom agencies covering U.S. commercial, hospitality, healthcare, and contract interior design lines.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/bleachresistantfabrics",
"name": "bleachresistantfabrics",
"has_git": true,
"first_at": "2026-05-10T02:15:23-07:00",
"last_at": "2026-05-10T02:15:23-07:00",
"last_subject": "initial scaffold + GA gtag (G-5XZST5KTQC)",
"commit_count": 1,
"size_mb": 6,
"days_since": 0,
"health": "hot",
"pkg_name": "bleachresistantfabrics",
"pkg_description": "Bleach Resistant Fabrics — hospitality + healthcare contract fabrics rated for bleach cleanup. DW family vertical.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/bestwallpaperplace",
"name": "bestwallpaperplace",
"has_git": true,
"first_at": "2026-05-10T01:11:04-07:00",
"last_at": "2026-05-10T01:11:04-07:00",
"last_subject": "initial scaffold: bestwallpaperplace.com — curated 600-pattern showcase + GA G-SSNGG2BQC3 + theme toggle + sort/density grid",
"commit_count": 1,
"size_mb": 6,
"days_since": 0,
"health": "hot",
"pkg_name": "bestwallpaperplace",
"pkg_description": "Best Wallpaper Place — curated 'best of' wallpaper showcase",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ventura-bus-3d",
"name": "ventura-bus-3d",
"has_git": true,
"first_at": "2026-05-10T00:45:02-07:00",
"last_at": "2026-05-10T04:21:28-07:00",
"last_subject": "integrate multi-route data + new top header (search/brand/theme) + per-route toggle legend",
"commit_count": 5,
"size_mb": 6,
"days_since": 0,
"health": "hot",
"pkg_name": "ventura-bus-3d",
"pkg_description": "Express + Three.js 3D experience for the Ventura Boulevard pitch pipeline",
"pkg_version": "0.1.0",
"readme_snippet": "Express + Three.js scaffold for a Ventura Boulevard 3D corridor experience.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/lifestyle-asset-intel",
"name": "lifestyle-asset-intel",
"has_git": true,
"first_at": "2026-05-09T21:36:26-07:00",
"last_at": "2026-05-10T07:21:00-07:00",
"last_subject": "yolo tick #15: launchd-driven overnight autonomous loop",
"commit_count": 20,
"size_mb": 10,
"days_since": 0,
"health": "hot",
"pkg_name": "lifestyle-asset-intel",
"pkg_description": "Lifestyle Asset Intelligence — valuation, liquidity, and ownership-cost platform (handbags first)",
"pkg_version": "0.0.1",
"readme_snippet": "v0 scaffold for an enterprise Lifestyle Asset Intelligence platform — valuation,\nliquidity, and ownership-cost intelligence for luxury secondary-market assets,\nstarting with Hermès Birkin/Kelly handbags.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/AbramsOS",
"name": "AbramsOS",
"has_git": true,
"first_at": "2026-05-09T21:33:03-07:00",
"last_at": "2026-05-10T07:22:50-07:00",
"last_subject": "tick 10: /audit page (read-only viewer for audit_log + auth_event)",
"commit_count": 14,
"size_mb": 234,
"days_since": 0,
"health": "hot",
"pkg_name": "abramsos",
"pkg_description": "Household rights operating system — receipts, warranties, recalls, claims",
"pkg_version": "0.1.0",
"readme_snippet": "A household \"rights operating system.\" Ingests receipts (Gmail), warranties, recall feeds, and service guarantees into a unified ownership graph; runs a case engine that decides what's owned, what risks/deadlines apply, and what next action is worth taking.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/losangelesfabrics-tmp",
"name": "losangelesfabrics-tmp",
"has_git": false,
"first_at": "2026-05-08T08:01:02Z",
"last_at": "2026-05-08T08:01:02Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-theme-toggle",
"name": "dw-theme-toggle",
"has_git": true,
"first_at": "2026-05-08T07:35:06-07:00",
"last_at": "2026-05-08T08:17:49-07:00",
"last_subject": "add local web viewer (port 9769) for token paste + theme list + push",
"commit_count": 2,
"size_mb": 1,
"days_since": 1,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/loops-dashboard",
"name": "loops-dashboard",
"has_git": true,
"first_at": "2026-05-08T07:26:08-07:00",
"last_at": "2026-05-08T07:34:54-07:00",
"last_subject": "fix: cache + background refresh — 21s → <100ms page load",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "Single-pane aggregator for every AI loop running on Steve's Mac2 stack.\nDark-theme HTML page, auto-refresh every 60s, KeepAlive supervised by launchd at http://127.0.0.1:9930.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/macstudio2-dashboard",
"name": "macstudio2-dashboard",
"has_git": true,
"first_at": "2026-05-07T23:56:35-07:00",
"last_at": "2026-05-08T01:06:19-07:00",
"last_subject": "fix: same TS-annotation crash",
"commit_count": 6,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "macstudio2-dashboard",
"pkg_description": "'57 Cadillac Eldorado dashboard for Mac Studio 2 — Ollama state, CPU/RAM, hyperdrive controls",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/costa-rica",
"name": "costa-rica",
"has_git": true,
"first_at": "2026-05-07T23:22:40-07:00",
"last_at": "2026-05-08T13:20:44-07:00",
"last_subject": "yolo tick 8: /about page (data sources, attribution, contact, roadmap, live stats) + Open Graph + Twitter card meta tags on home/provinces/verticals/search/stats + About nav across all pages + sitemap",
"commit_count": 15,
"size_mb": 23,
"days_since": 1,
"health": "hot",
"pkg_name": "costa-rica",
"pkg_description": "Costa Rica multi-vertical directory — tourism, rentals, local services. Ventura-Corridor pattern.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/macstudio1-dashboard",
"name": "macstudio1-dashboard",
"has_git": true,
"first_at": "2026-05-07T23:11:02-07:00",
"last_at": "2026-05-08T01:06:19-07:00",
"last_subject": "fix: drop TS-style :any annotations from server.js (was crashing on parse)",
"commit_count": 12,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": "macstudio1-dashboard",
"pkg_description": "'57 Chevy convertible dashboard for Mac Studio 1 — Ollama state, CPU/RAM, hyperdrive controls",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-design-bridge",
"name": "dw-design-bridge",
"has_git": true,
"first_at": "2026-05-07T23:03:44-07:00",
"last_at": "2026-05-07T23:37:40-07:00",
"last_subject": "fix: progressive-truncation JSON parser handles qwen3 trailing-junk responses",
"commit_count": 3,
"size_mb": 8,
"days_since": 2,
"health": "hot",
"pkg_name": "dw-design-bridge",
"pkg_description": "AI-driven DW design generator — bridges ai-factory orchestrator to designer-wallcoverings catalog. Generates novel pattern briefs + descriptions per design request.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/glassbeadedwallpaper",
"name": "glassbeadedwallpaper",
"has_git": true,
"first_at": "2026-05-07T20:38:38-07:00",
"last_at": "2026-05-08T07:35:22-07:00",
"last_subject": "Hamburger always visible on right — propagated from novasuede a815690",
"commit_count": 3,
"size_mb": 59,
"days_since": 2,
"health": "hot",
"pkg_name": "glassbeadedwallpaper.com",
"pkg_description": "Glass Beaded, Sequin & Glitter Wallpaper Collection",
"pkg_version": "1.0.0",
"readme_snippet": "Premium glass beaded, sequin, and glitter wallcoverings - All Class \"A\" Fire Rated",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/flockedwallpaper",
"name": "flockedwallpaper",
"has_git": true,
"first_at": "2026-05-07T20:38:37-07:00",
"last_at": "2026-05-08T07:35:37-07:00",
"last_subject": "Hamburger always visible on right — propagated from novasuede a815690",
"commit_count": 2,
"size_mb": 91,
"days_since": 2,
"health": "hot",
"pkg_name": "flockedwallpaper.com",
"pkg_description": "Flocked Wallpaper Collection",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/shopify-oauth-catcher",
"name": "shopify-oauth-catcher",
"has_git": false,
"first_at": "2026-05-07T17:53:44Z",
"last_at": "2026-05-07T17:53:44Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "shopify-oauth-catcher",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designerssalesreps",
"name": "designerssalesreps",
"has_git": false,
"first_at": "2026-05-07T17:11:08Z",
"last_at": "2026-05-07T17:11:08Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": "designerssalesreps",
"pkg_description": "Designers Sales Reps — map-first B2B trade rep directory",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designersalesreps",
"name": "designersalesreps",
"has_git": false,
"first_at": "2026-05-07T17:10:01Z",
"last_at": "2026-05-07T17:10:01Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": "designersalesreps",
"pkg_description": "Designer Sales Reps directory — B2B trade rep stub directory",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designerschat",
"name": "designerschat",
"has_git": false,
"first_at": "2026-05-07T17:08:25Z",
"last_at": "2026-05-07T17:08:25Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designtradereps",
"name": "designtradereps",
"has_git": false,
"first_at": "2026-05-07T17:08:25Z",
"last_at": "2026-05-07T17:08:25Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpaperhistory",
"name": "wallpaperhistory",
"has_git": true,
"first_at": "2026-05-07T16:48:42-07:00",
"last_at": "2026-05-07T16:48:42-07:00",
"last_subject": "initial scaffold: wallpaperhistory.com chronological timeline",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "wallpaperhistory",
"pkg_description": "Chronological history of wallpaper — wallpaperhistory.com",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpaperwednesday",
"name": "wallpaperwednesday",
"has_git": true,
"first_at": "2026-05-07T16:48:01-07:00",
"last_at": "2026-05-07T16:48:01-07:00",
"last_subject": "initial scaffold: wallpaperwednesday.com botanical green pinned-reveal site",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "wallpaperwednesday",
"pkg_description": "Wallpaper Wednesday — weekly wallpaper feature by Designer Wallcoverings",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpaperglossary",
"name": "wallpaperglossary",
"has_git": true,
"first_at": "2026-05-07T16:46:15-07:00",
"last_at": "2026-05-07T16:46:15-07:00",
"last_subject": "initial scaffold: wallpaperglossary.com trade jargon reference",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "wallpaperglossary",
"pkg_description": "Trade-jargon glossary for designers — wallpaperglossary.com",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/textiletuesday",
"name": "textiletuesday",
"has_git": true,
"first_at": "2026-05-07T16:44:40-07:00",
"last_at": "2026-05-07T16:44:40-07:00",
"last_subject": "initial scaffold: textiletuesday.com editorial indigo site",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "textiletuesday",
"pkg_description": "Textile Tuesday — weekly textile feature by Designer Wallcoverings",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpaperdefinitions",
"name": "wallpaperdefinitions",
"has_git": true,
"first_at": "2026-05-07T16:43:34-07:00",
"last_at": "2026-05-07T16:43:34-07:00",
"last_subject": "initial scaffold: wallpaperdefinitions.com plain-language definitions",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "wallpaperdefinitions",
"pkg_description": "Plain-language wallpaper definitions — wallpaperdefinitions.com",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/fabricfriday",
"name": "fabricfriday",
"has_git": true,
"first_at": "2026-05-07T16:41:31-07:00",
"last_at": "2026-05-07T16:41:31-07:00",
"last_subject": "initial scaffold: fabricfriday.com cinematic saffron site",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "fabricfriday",
"pkg_description": "Fabric Friday — weekly fabric feature by Designer Wallcoverings",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpaperdictionary",
"name": "wallpaperdictionary",
"has_git": true,
"first_at": "2026-05-07T16:41:12-07:00",
"last_at": "2026-05-07T16:41:12-07:00",
"last_subject": "initial scaffold: wallpaperdictionary.com A-Z reference site",
"commit_count": 1,
"size_mb": 5,
"days_since": 2,
"health": "hot",
"pkg_name": "wallpaperdictionary",
"pkg_description": "A-Z dictionary of wallpaper terms — wallpaperdictionary.com",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dwla-rebrand",
"name": "dwla-rebrand",
"has_git": true,
"first_at": "2026-05-07T15:09:42-07:00",
"last_at": "2026-05-07T18:00:35-07:00",
"last_subject": "phase 1 push script: 3 dream-team guardrails (vendor verify, tag sweep, metafield carry-over)",
"commit_count": 3,
"size_mb": 2,
"days_since": 2,
"health": "hot",
"pkg_name": "dwla-rebrand",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "Migrating the Pointe (PI-) and Justin David (JD-) products from\n\"Phillipe Romano\" branding to \"Los Angeles Fabrics\" / DWLA prefix.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/chinoiseriewallpaper",
"name": "chinoiseriewallpaper",
"has_git": true,
"first_at": "2026-05-07T15:03:50-07:00",
"last_at": "2026-05-07T15:12:04-07:00",
"last_subject": "add finish_dns.sh + deploy artifacts: nginx vhost, pm2 live at :9853",
"commit_count": 2,
"size_mb": 7,
"days_since": 2,
"health": "hot",
"pkg_name": "chinoiseriewallpaper",
"pkg_description": "Chinoiserie wallpaper microsite — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/goldleafwallpaper",
"name": "goldleafwallpaper",
"has_git": true,
"first_at": "2026-05-07T15:02:09-07:00",
"last_at": "2026-05-07T19:37:40-07:00",
"last_subject": "Goldleaf: ns-header + Atelier Aurum + ghost sample-btn (recovered after deploy mismatch)",
"commit_count": 3,
"size_mb": 7,
"days_since": 2,
"health": "hot",
"pkg_name": "goldleafwallpaper-website",
"pkg_description": "Goldleaf Wallpaper — Phillipe Romano Renaissance Metal Leaf storefront",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/carmelwallpapers",
"name": "carmelwallpapers",
"has_git": true,
"first_at": "2026-05-07T15:01:28-07:00",
"last_at": "2026-05-07T15:01:28-07:00",
"last_subject": "initial scaffold: carmelwallpapers.com DW microsite, 2182 coastal products",
"commit_count": 1,
"size_mb": 8,
"days_since": 2,
"health": "hot",
"pkg_name": "carmelwallpapers",
"pkg_description": "Carmel-by-the-Sea luxury wallpaper storefront — DW microsite",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/naturaltextilewallpaper",
"name": "naturaltextilewallpaper",
"has_git": true,
"first_at": "2026-05-07T15:00:26-07:00",
"last_at": "2026-05-07T15:00:26-07:00",
"last_subject": "initial scaffold: NTW site — 4166 natural-fiber products, Loro Piana aesthetic, dark/light toggle, material filter pills, infinite scroll",
"commit_count": 1,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "naturaltextilewallpaper",
"pkg_description": "Natural Textile Wallpaper — category aggregator for natural-fiber wallcoverings",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/customdigitalmurals",
"name": "customdigitalmurals",
"has_git": true,
"first_at": "2026-05-07T15:00:06-07:00",
"last_at": "2026-05-07T15:00:06-07:00",
"last_subject": "initial scaffold: customdigitalmurals.com Off-White storefront, 3663 products",
"commit_count": 1,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "customdigitalmurals",
"pkg_description": "Custom Digital Murals — printed-to-order large-format wall art storefront",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/graphics-loop",
"name": "graphics-loop",
"has_git": true,
"first_at": "2026-05-07T12:05:24-07:00",
"last_at": "2026-05-07T12:05:24-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 1,
"size_mb": 6,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/restaurant-directory",
"name": "restaurant-directory",
"has_git": true,
"first_at": "2026-05-07T12:05:24-07:00",
"last_at": "2026-05-08T00:15:19-07:00",
"last_subject": "rel=alternate JSON + HTTP Link header on / and /c/:slug",
"commit_count": 3,
"size_mb": 418,
"days_since": 2,
"health": "hot",
"pkg_name": "lacountyeats",
"pkg_description": "LA County Eats — comprehensive directory of every LA County restaurant",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/analytics-chips",
"name": "analytics-chips",
"has_git": true,
"first_at": "2026-05-07T08:24:00-07:00",
"last_at": "2026-05-07T14:09:37-07:00",
"last_subject": "add categorized fleet view at /categories.html with sort + density slider",
"commit_count": 3,
"size_mb": 48,
"days_since": 2,
"health": "hot",
"pkg_name": "analytics-chips",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/grassclothwallpaper",
"name": "grassclothwallpaper",
"has_git": false,
"first_at": "2026-05-07T08:13:21Z",
"last_at": "2026-05-07T08:13:21Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 16,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ventura-claw-leads",
"name": "ventura-claw-leads",
"has_git": true,
"first_at": "2026-05-06T16:20:28-07:00",
"last_at": "2026-05-07T17:57:49-07:00",
"last_subject": "Fix legal-page ZIP in CAN-SPAM footer: 91335→91403",
"commit_count": 63,
"size_mb": 56,
"days_since": 2,
"health": "hot",
"pkg_name": "ventura-claw-leads",
"pkg_description": "Lead-routing directory for unregulated small businesses on Ventura Blvd. Restaurants, salons, retail, fitness, pet services, auto detail, cleaning, tutoring — businesses pay subscription/per-lead, consumer pays nothing. Sister project to NPH; explicitly NOT for licensed professionals (medical, legal, financial, real estate, contracting).",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/daily-reporting",
"name": "daily-reporting",
"has_git": true,
"first_at": "2026-05-06T14:36:08-07:00",
"last_at": "2026-05-06T14:36:08-07:00",
"last_subject": "initial scaffold (relocated from ~/.claude/skills/)",
"commit_count": 1,
"size_mb": 49,
"days_since": 3,
"health": "hot",
"pkg_name": "dw-agents-daily-reporting",
"pkg_description": "Comprehensive daily reporting system for DW-Agents hierarchy with morning standup and end-of-day reports",
"pkg_version": "1.0.0",
"readme_snippet": "# Daily Reporting System for DW-Agents",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/agent-cabinet",
"name": "agent-cabinet",
"has_git": true,
"first_at": "2026-05-06T11:25:14-07:00",
"last_at": "2026-05-07T12:29:19-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (dist/ build/ .next/)",
"commit_count": 7,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Designer-Wallcoverings",
"name": "Designer-Wallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:36:48-07:00",
"last_at": "2026-05-08T00:44:39-07:00",
"last_subject": "novasuede: collapse all nav tabs into hamburger on right at every width (Novasuede brand name kept in banner)",
"commit_count": 8,
"size_mb": 44881,
"days_since": 2,
"health": "hot",
"pkg_name": "designer-wallcoverings",
"pkg_description": "Designer Wallcoverings Shopify Management",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wine-finder-next",
"name": "wine-finder-next",
"has_git": true,
"first_at": "2026-05-06T10:25:56-07:00",
"last_at": "2026-05-06T10:25:56-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 6,
"days_since": 3,
"health": "hot",
"pkg_name": "wine-finder-next",
"pkg_description": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wine-finder",
"name": "wine-finder",
"has_git": true,
"first_at": "2026-05-06T10:25:55-07:00",
"last_at": "2026-05-07T12:29:35-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (node_modules/ .env* *.log dist/ .next/)",
"commit_count": 2,
"size_mb": 77,
"days_since": 2,
"health": "hot",
"pkg_name": "winefinder",
"pkg_description": "Wine Pricing Tracker - Red Thunder Wine Tracker",
"pkg_version": "1.0.0",
"readme_snippet": "A secure, luxury-themed Wine Pricing Tracker web platform for viewing and analyzing wine prices from K&L Wine Merchants and other sources.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/web-viewer-3877",
"name": "web-viewer-3877",
"has_git": true,
"first_at": "2026-05-06T10:25:54-07:00",
"last_at": "2026-05-07T12:29:55-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 2555 files; files preserved on disk)",
"commit_count": 3,
"size_mb": 36,
"days_since": 2,
"health": "hot",
"pkg_name": "web-viewer-3877",
"pkg_description": "Interactive web viewer with conversation mode",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/website-analysis",
"name": "website-analysis",
"has_git": true,
"first_at": "2026-05-06T10:25:54-07:00",
"last_at": "2026-05-06T10:25:54-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/videos-agentabrams-worker",
"name": "videos-agentabrams-worker",
"has_git": true,
"first_at": "2026-05-06T10:25:51-07:00",
"last_at": "2026-05-06T11:51:51-07:00",
"last_subject": "keep gemma3:4b warm with 30m keep_alive (eliminate 6min cold-load timeouts)",
"commit_count": 3,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/vinylwallpaper",
"name": "vinylwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:51-07:00",
"last_at": "2026-05-07T17:55:29-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "vinylwallpaper",
"pkg_description": "VINYL WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/voice-clone",
"name": "voice-clone",
"has_git": true,
"first_at": "2026-05-06T10:25:51-07:00",
"last_at": "2026-05-06T10:25:51-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpapersback",
"name": "wallpapersback",
"has_git": true,
"first_at": "2026-05-06T10:25:51-07:00",
"last_at": "2026-05-07T17:55:03-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 10,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "wallpapersback",
"pkg_description": "Retro Walls — vintage/midcentury/deco wallcoverings storefront. DW family vertical. Goldleaf-inspired palette.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/watches",
"name": "watches",
"has_git": true,
"first_at": "2026-05-06T10:25:51-07:00",
"last_at": "2026-05-06T10:25:51-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 10,
"days_since": 3,
"health": "hot",
"pkg_name": "watches",
"pkg_description": "Omega watch price tracking system",
"pkg_version": "1.0.0",
"readme_snippet": "# Omega Watch Price History System",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/student-debt-crisis-redesign",
"name": "student-debt-crisis-redesign",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-06T10:25:50-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 96,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "# SDCC Redesign Sprint — final deliverable bundle",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/suedewallpaper",
"name": "suedewallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-07T17:55:33-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "suedewallpaper",
"pkg_description": "SUEDE WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/tailscale-acl-design",
"name": "tailscale-acl-design",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-06T10:25:50-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/tailscale-funnel-research",
"name": "tailscale-funnel-research",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-06T10:25:50-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/textilewallpaper",
"name": "textilewallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-07T17:55:33-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "textilewallpaper",
"pkg_description": "TEXTILE WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/timeout-agent",
"name": "timeout-agent",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-06T10:25:50-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 6,
"days_since": 3,
"health": "hot",
"pkg_name": "timeout-agent",
"pkg_description": "24/7 process watchdog - restarts timed out, errored, and stuck PM2 processes",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/vendor-discount-agent",
"name": "vendor-discount-agent",
"has_git": true,
"first_at": "2026-05-06T10:25:50-07:00",
"last_at": "2026-05-06T10:25:50-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 42,
"days_since": 3,
"health": "hot",
"pkg_name": "vendor-discount-agent",
"pkg_description": "Logs into vendor trade portals to verify net discount percentages",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/silkwallpaper",
"name": "silkwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:48-07:00",
"last_at": "2026-05-07T17:55:18-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 9,
"days_since": 2,
"health": "hot",
"pkg_name": "silkwallpaper",
"pkg_description": "SILK WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/silverleafwallpaper",
"name": "silverleafwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:48-07:00",
"last_at": "2026-05-07T17:55:26-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 10,
"size_mb": 13,
"days_since": 2,
"health": "hot",
"pkg_name": "silverleafwallpaper",
"pkg_description": "SILVER LEAF — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/sku-check-skill",
"name": "sku-check-skill",
"has_git": true,
"first_at": "2026-05-06T10:25:48-07:00",
"last_at": "2026-05-06T10:25:48-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 6,
"days_since": 3,
"health": "hot",
"pkg_name": "sku-check-skill",
"pkg_description": "SKU Check Skill - Cross-reference DW SKUs with vendor websites",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/slack-dm-viewer",
"name": "slack-dm-viewer",
"has_git": true,
"first_at": "2026-05-06T10:25:48-07:00",
"last_at": "2026-05-06T10:25:48-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": "slack-dm-viewer",
"pkg_description": "View Steve's Slack self-DMs / notes to self",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/static-pitch-server",
"name": "static-pitch-server",
"has_git": true,
"first_at": "2026-05-06T10:25:48-07:00",
"last_at": "2026-05-06T10:25:48-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/stringwallpaper",
"name": "stringwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:48-07:00",
"last_at": "2026-05-06T10:25:48-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 6,
"days_since": 3,
"health": "hot",
"pkg_name": "stringwallpaper",
"pkg_description": "STRING WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/sdcc-awards",
"name": "sdcc-awards",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-06T10:25:47-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 3,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/sdcc-images",
"name": "sdcc-images",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-06T10:25:47-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 6,
"days_since": 3,
"health": "hot",
"pkg_name": "sdcc-images",
"pkg_description": "Local SDCC image gallery — admin-only viewer, links to Steve's Google Drive",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/sdcc-mockups",
"name": "sdcc-mockups",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-06T10:25:47-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/selfadhesivewallpaper",
"name": "selfadhesivewallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-07T17:55:35-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 11,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "selfadhesivewallpaper",
"pkg_description": "SELF-ADHESIVE WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/session-2026-05-05-finalize",
"name": "session-2026-05-05-finalize",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-06T10:25:47-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/shopify-apps",
"name": "shopify-apps",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-06T10:25:47-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/silkwallcoverings",
"name": "silkwallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:47-07:00",
"last_at": "2026-05-08T01:32:29-07:00",
"last_subject": "Hamburger always visible on right — propagated from novasuede a815690",
"commit_count": 2,
"size_mb": 6,
"days_since": 2,
"health": "hot",
"pkg_name": "silkwallcoverings",
"pkg_description": "SILK WALLCOVERINGS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/qty-bulk-2026-04-23",
"name": "qty-bulk-2026-04-23",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-06T10:25:46-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 4,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/raffiawallcoverings",
"name": "raffiawallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-07T17:55:21-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 8,
"days_since": 2,
"health": "hot",
"pkg_name": "raffiawallcoverings",
"pkg_description": "RAFFIA WALLCOVERINGS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/raffiawalls",
"name": "raffiawalls",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-06T10:25:46-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 7,
"days_since": 3,
"health": "hot",
"pkg_name": "raffiawalls",
"pkg_description": "RAFFIA WALLS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/recycledwallpaper",
"name": "recycledwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-06T10:25:46-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 7,
"days_since": 3,
"health": "hot",
"pkg_name": "recycledwallpaper",
"pkg_description": "RECYCLED WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/restaurantwallpaper",
"name": "restaurantwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-07T17:55:28-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "restaurantwallpaper",
"pkg_description": "RESTAURANT WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/restorationwallpaper",
"name": "restorationwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-06T10:25:46-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 7,
"days_since": 3,
"health": "hot",
"pkg_name": "restorationwallpaper",
"pkg_description": "RESTORATION WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/retrowalls",
"name": "retrowalls",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-07T23:04:46-07:00",
"last_subject": "Scrub Designer Wallcoverings from products.json (vendor/imageAlt/tags)",
"commit_count": 10,
"size_mb": 13,
"days_since": 2,
"health": "hot",
"pkg_name": "retrowalls",
"pkg_description": "Retro Walls — vintage/midcentury/deco wallcoverings storefront. DW family vertical. Goldleaf-inspired palette.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/saloonwallpaper",
"name": "saloonwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-06T10:25:46-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 7,
"days_since": 3,
"health": "hot",
"pkg_name": "saloonwallpaper",
"pkg_description": "SALOON WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/screenprintedwallpaper",
"name": "screenprintedwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:46-07:00",
"last_at": "2026-05-07T17:55:36-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 10,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "screenprintedwallpaper",
"pkg_description": "SCREEN-PRINTED WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/pastelwallpaper",
"name": "pastelwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:45-07:00",
"last_at": "2026-05-07T17:55:37-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "pastelwallpaper",
"pkg_description": "PASTEL WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/philipperomano",
"name": "philipperomano",
"has_git": true,
"first_at": "2026-05-06T10:25:45-07:00",
"last_at": "2026-05-06T10:25:45-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 8,
"days_since": 3,
"health": "hot",
"pkg_name": "philipperomano",
"pkg_description": "philipperomano.com — Phillipe Romano private-label storefront",
"pkg_version": "0.1.0",
"readme_snippet": "Standalone storefront for the Phillipe Romano private label (currently sold via DesignerWallcoverings.com).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/pm2-migration",
"name": "pm2-migration",
"has_git": true,
"first_at": "2026-05-06T10:25:45-07:00",
"last_at": "2026-05-06T10:25:45-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "# PM2 Migration Kit — Kamatera → Local",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/port-viewer",
"name": "port-viewer",
"has_git": true,
"first_at": "2026-05-06T10:25:45-07:00",
"last_at": "2026-05-06T10:25:45-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "port-viewer",
"pkg_description": "A beautiful web app to view active network ports",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/project-portfolio-viewer",
"name": "project-portfolio-viewer",
"has_git": true,
"first_at": "2026-05-06T10:25:45-07:00",
"last_at": "2026-05-06T10:25:45-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "project-portfolio-viewer",
"pkg_description": "Beautiful web interface to browse and explore all projects",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/purelymail-mcp",
"name": "purelymail-mcp",
"has_git": true,
"first_at": "2026-05-06T10:25:45-07:00",
"last_at": "2026-05-06T10:25:45-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 25,
"days_since": 3,
"health": "hot",
"pkg_name": "purelymail-mcp",
"pkg_description": "MCP wrapper around the Purelymail v0 HTTP API (domains, routing rules, users, credit)",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/nova-recolor",
"name": "nova-recolor",
"has_git": true,
"first_at": "2026-05-06T10:25:44-07:00",
"last_at": "2026-05-06T10:25:44-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 62,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/oauth-proxy-design",
"name": "oauth-proxy-design",
"has_git": true,
"first_at": "2026-05-06T10:25:44-07:00",
"last_at": "2026-05-06T10:25:44-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/omega-watches-2",
"name": "omega-watches-2",
"has_git": true,
"first_at": "2026-05-06T10:25:44-07:00",
"last_at": "2026-05-07T12:29:28-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (.env*)",
"commit_count": 2,
"size_mb": 2,
"days_since": 2,
"health": "hot",
"pkg_name": "omega-watches-2",
"pkg_description": "Enterprise-Grade Omega Price History & Daily MSRP Tracking System",
"pkg_version": "2.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/osborne-redesign",
"name": "osborne-redesign",
"has_git": true,
"first_at": "2026-05-06T10:25:44-07:00",
"last_at": "2026-05-06T10:25:44-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/pastdoor-nginx-watch",
"name": "pastdoor-nginx-watch",
"has_git": true,
"first_at": "2026-05-06T10:25:44-07:00",
"last_at": "2026-05-06T10:25:44-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/naturalwallcoverings",
"name": "naturalwallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:43-07:00",
"last_at": "2026-05-07T17:55:34-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 10,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "naturalwallcoverings",
"pkg_description": "NATURAL WALLCOVERINGS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/new-items-dashboard",
"name": "new-items-dashboard",
"has_git": true,
"first_at": "2026-05-06T10:25:43-07:00",
"last_at": "2026-05-06T10:25:43-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 18,
"days_since": 3,
"health": "hot",
"pkg_name": "new-items-dashboard",
"pkg_description": "Dashboard for NEW wines and handbags",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/melanie-project",
"name": "melanie-project",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-06T10:25:42-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 13,
"days_since": 3,
"health": "hot",
"pkg_name": "melanie",
"pkg_description": "AI-powered hair styling app for stylists",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/metallicwallpaper",
"name": "metallicwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-07T17:55:23-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 9,
"days_since": 2,
"health": "hot",
"pkg_name": "metallicwallpaper",
"pkg_description": "METALLIC WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/mfr-review-viewer",
"name": "mfr-review-viewer",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-06T10:25:42-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 4,
"days_since": 3,
"health": "hot",
"pkg_name": "mfr-review-viewer",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/micawallpaper",
"name": "micawallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-07T17:55:30-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 8,
"days_since": 2,
"health": "hot",
"pkg_name": "micawallpaper",
"pkg_description": "MICA WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/morning-review",
"name": "morning-review",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-08T07:56:49-07:00",
"last_subject": "fix(server): cache + background refresh for /api/findings (60s+ → <100ms)",
"commit_count": 2,
"size_mb": 0,
"days_since": 1,
"health": "hot",
"pkg_name": "morning-review",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/morning-review-features",
"name": "morning-review-features",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-06T10:25:42-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/museumwallpaper",
"name": "museumwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-08T00:12:43-07:00",
"last_subject": "fleet UX: novasuede-style hamburger drawer (DW-Websites/_shared/dw-fleet-nav.js)",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "museumwallpaper",
"pkg_description": "MUSEUM WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/my-childhood-pics",
"name": "my-childhood-pics",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-06T10:25:42-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "mychildhoodpics",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/mylarwallpaper",
"name": "mylarwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:42-07:00",
"last_at": "2026-05-07T23:04:47-07:00",
"last_subject": "Scrub Designer Wallcoverings from products.json (vendor/imageAlt/tags)",
"commit_count": 10,
"size_mb": 9,
"days_since": 2,
"health": "hot",
"pkg_name": "mylarwallpaper",
"pkg_description": "MYLAR WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/jutewallpaper",
"name": "jutewallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:41-07:00",
"last_at": "2026-05-07T17:55:20-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 8,
"days_since": 2,
"health": "hot",
"pkg_name": "jutewallpaper",
"pkg_description": "JUTE WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/kravet-fabric-fix-2026-04-23",
"name": "kravet-fabric-fix-2026-04-23",
"has_git": true,
"first_at": "2026-05-06T10:25:41-07:00",
"last_at": "2026-05-06T10:25:41-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/kravet-sheet-sync-2026-04-20",
"name": "kravet-sheet-sync-2026-04-20",
"has_git": true,
"first_at": "2026-05-06T10:25:41-07:00",
"last_at": "2026-05-06T10:25:41-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 38,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/launchd-reminders",
"name": "launchd-reminders",
"has_git": true,
"first_at": "2026-05-06T10:25:41-07:00",
"last_at": "2026-05-06T10:25:41-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/linenwallpaper",
"name": "linenwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:41-07:00",
"last_at": "2026-05-07T17:55:19-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 10,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "linenwallpaper",
"pkg_description": "LINEN WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/madagascarwallpaper",
"name": "madagascarwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:41-07:00",
"last_at": "2026-05-07T17:55:31-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "madagascarwallpaper",
"pkg_description": "MADAGASCAR WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ffepurchasing",
"name": "ffepurchasing",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-10T00:14:32-07:00",
"last_subject": "add gated figma capture loader (only fires on ?figmacapture= URL param)",
"commit_count": 11,
"size_mb": 12,
"days_since": 0,
"health": "hot",
"pkg_name": "ffepurchasing",
"pkg_description": "FFE PURCHASING — B2B trade portal and public hospitality FF&E catalog. NET30, MOQ-aware, tear-sheets. DW family vertical.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/handbag-authentication",
"name": "handbag-authentication",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-07T12:29:26-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (*.log)",
"commit_count": 2,
"size_mb": 511,
"days_since": 2,
"health": "hot",
"pkg_name": "japanese-handbag-arbitrage",
"pkg_description": "Japanese handbag arbitrage platform with AI-powered deal detection",
"pkg_version": "1.0.0",
"readme_snippet": "# Japanese Handbag Arbitrage Platform",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/handcraftedwallpaper",
"name": "handcraftedwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-07T17:55:35-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 8,
"days_since": 2,
"health": "hot",
"pkg_name": "handcraftedwallpaper",
"pkg_description": "HANDCRAFTED WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/healthcarewallpaper",
"name": "healthcarewallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-07T17:55:27-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "healthcarewallpaper",
"pkg_description": "HEALTHCARE WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/hollywood-wallcoverings",
"name": "hollywood-wallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-07T21:33:58-07:00",
"last_subject": "Add novasuede ns-header to hollywood server-rendered layout",
"commit_count": 3,
"size_mb": 7,
"days_since": 2,
"health": "hot",
"pkg_name": "hollywood-wallcoverings",
"pkg_description": "hollywood-wallcoverings.com — Phillipe Romano private-label storefront",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/hospitalitywallcoverings",
"name": "hospitalitywallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-10T00:14:32-07:00",
"last_subject": "add gated figma capture loader (only fires on ?figmacapture= URL param)",
"commit_count": 11,
"size_mb": 12,
"days_since": 0,
"health": "hot",
"pkg_name": "hospitalitywallcoverings",
"pkg_description": "HOSPITALITY WALLCOVERINGS — contract-grade wallcoverings for hotels, restaurants & healthcare. DW family vertical.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/hospitalitywallpaper",
"name": "hospitalitywallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-08T00:12:42-07:00",
"last_subject": "fleet UX: novasuede-style hamburger drawer (DW-Websites/_shared/dw-fleet-nav.js)",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "hospitalitywallpaper",
"pkg_description": "HOSPITALITY WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/hotelwallcoverings",
"name": "hotelwallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-07T17:55:25-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "hotelwallcoverings",
"pkg_description": "HOTEL WALLCOVERINGS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/jim-gravity",
"name": "jim-gravity",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-06T10:25:40-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wallpapercanada",
"name": "wallpapercanada",
"has_git": true,
"first_at": "2026-05-06T10:25:40-07:00",
"last_at": "2026-05-10T00:14:32-07:00",
"last_subject": "add gated figma capture loader (only fires on ?figmacapture= URL param)",
"commit_count": 11,
"size_mb": 12,
"days_since": 0,
"health": "hot",
"pkg_name": "wallpapercanada",
"pkg_description": "WALLPAPER CANADA — premium wallcoverings shipped across Canada, priced in CAD. DW family vertical.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/handbag-auth-nextjs",
"name": "handbag-auth-nextjs",
"has_git": true,
"first_at": "2026-05-06T10:25:33-07:00",
"last_at": "2026-05-06T10:25:33-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 243,
"days_since": 3,
"health": "hot",
"pkg_name": "handbag-auth-nextjs",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/goodquestion-ai",
"name": "goodquestion-ai",
"has_git": true,
"first_at": "2026-05-06T10:25:30-07:00",
"last_at": "2026-05-06T10:25:30-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1352,
"days_since": 3,
"health": "hot",
"pkg_name": "goodquestion-ai",
"pkg_description": "Agent Abrams - A developer's journey with Claude Code",
"pkg_version": "1.0.0",
"readme_snippet": "**A developer's daily journey with Claude Code.** Blog, skills, and tools.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/google-places-key-provisioner",
"name": "google-places-key-provisioner",
"has_git": true,
"first_at": "2026-05-06T10:25:30-07:00",
"last_at": "2026-05-06T10:25:30-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 19,
"days_since": 3,
"health": "hot",
"pkg_name": "google-places-key-provisioner",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/greenwallcoverings",
"name": "greenwallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:25:30-07:00",
"last_at": "2026-05-07T17:55:42-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "greenwallcoverings",
"pkg_description": "GREEN WALLCOVERINGS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/goodquestion",
"name": "goodquestion",
"has_git": true,
"first_at": "2026-05-06T10:25:20-07:00",
"last_at": "2026-05-06T10:25:20-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 61,
"days_since": 3,
"health": "hot",
"pkg_name": "swot-analysis-platform",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "AI-Powered Local Business Viability Analysis using Claude and Model Context Protocol (MCP)",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/george-mcp",
"name": "george-mcp",
"has_git": true,
"first_at": "2026-05-06T10:25:19-07:00",
"last_at": "2026-05-06T10:25:19-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 24,
"days_since": 3,
"health": "hot",
"pkg_name": "george-mcp",
"pkg_description": "MCP wrapper around George (DW Gmail HTTP agent on Kamatera)",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/glitterwalls",
"name": "glitterwalls",
"has_git": true,
"first_at": "2026-05-06T10:25:19-07:00",
"last_at": "2026-05-08T09:13:43-07:00",
"last_subject": "sort modal works + 142/143 SKUs have real-pixel hex via sips",
"commit_count": 19,
"size_mb": 16,
"days_since": 1,
"health": "hot",
"pkg_name": "glitterwalls",
"pkg_description": "GLITTER WALLS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dwjs-consolidation-2026-04-23",
"name": "dwjs-consolidation-2026-04-23",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-06T10:25:18-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 51,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/embroideredwallpaper",
"name": "embroideredwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-07T17:55:31-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 9,
"days_since": 2,
"health": "hot",
"pkg_name": "embroideredwallpaper",
"pkg_description": "EMBROIDERED WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/epstein-card",
"name": "epstein-card",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-06T10:25:18-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "epstein-card",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/fabricwallpaper",
"name": "fabricwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-07T17:55:22-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "fabricwallpaper",
"pkg_description": "FABRIC WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/fleet-rag",
"name": "fleet-rag",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-06T10:25:18-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 27,
"days_since": 3,
"health": "hot",
"pkg_name": "fleet-rag",
"pkg_description": "Fleet RAG — natural-language queries over pm2 services and project READMEs",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/fleet-tv",
"name": "fleet-tv",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-06T16:52:37-07:00",
"last_subject": "fleet-tv: broaden channel list beyond DW micro-sites — added LOCAL_FRONTS hardcoded-port list of 17 hand-picked Steve services (ventura-corridor /, /magazine.html, /issue, victorystays, smb-builder, a",
"commit_count": 2,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": "fleet-tv",
"pkg_description": "Live wall display cycling every Steve-owned site — stadium scoreboard for personal SaaS.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/george-gmail",
"name": "george-gmail",
"has_git": true,
"first_at": "2026-05-06T10:25:18-07:00",
"last_at": "2026-05-06T10:25:18-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 212,
"days_since": 3,
"health": "hot",
"pkg_name": "george-gmail-agent",
"pkg_description": "George the Gmail Agent — secure email access for DW-Agents",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-showroom",
"name": "dw-showroom",
"has_git": true,
"first_at": "2026-05-06T10:25:17-07:00",
"last_at": "2026-05-06T10:25:17-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 145,
"days_since": 3,
"health": "hot",
"pkg_name": "dw-showroom",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-universe",
"name": "dw-universe",
"has_git": true,
"first_at": "2026-05-06T10:25:17-07:00",
"last_at": "2026-05-06T10:25:17-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": "dw-universe",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-war-room",
"name": "dw-war-room",
"has_git": true,
"first_at": "2026-05-06T10:25:17-07:00",
"last_at": "2026-05-06T10:25:17-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "dw-war-room",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-boardroom-v2",
"name": "dw-boardroom-v2",
"has_git": true,
"first_at": "2026-05-06T10:25:15-07:00",
"last_at": "2026-05-06T10:25:15-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": "dw-boardroom-v2",
"pkg_description": "DW Boardroom V2 — Meeting orchestration engine with 47 AI agents",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-nextjs-admin-login",
"name": "dw-nextjs-admin-login",
"has_git": true,
"first_at": "2026-05-06T10:25:15-07:00",
"last_at": "2026-05-06T10:25:15-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 354,
"days_since": 3,
"health": "hot",
"pkg_name": "@dw/nextjs-admin-login",
"pkg_description": null,
"pkg_version": "0.2.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/YOLO-Progress-Viewer",
"name": "YOLO-Progress-Viewer",
"has_git": true,
"first_at": "2026-05-06T10:25:14-07:00",
"last_at": "2026-05-07T12:29:56-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 854 files; files preserved on disk)",
"commit_count": 3,
"size_mb": 13,
"days_since": 2,
"health": "hot",
"pkg_name": "yolo-progress-viewer",
"pkg_description": "Real-time YOLO mode progress viewer for vendor testing",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dear-bubbe-next",
"name": "dear-bubbe-next",
"has_git": true,
"first_at": "2026-05-06T10:25:14-07:00",
"last_at": "2026-05-06T10:25:14-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/directory-core",
"name": "directory-core",
"has_git": true,
"first_at": "2026-05-06T10:25:14-07:00",
"last_at": "2026-05-06T10:25:14-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 45,
"days_since": 3,
"health": "hot",
"pkg_name": "directory-core",
"pkg_description": "Shared TypeScript primitives for Steve's directory verticals (lawyer/doctor/animals/restaurant). Carved out 2026-05-04 after overnight YOLO review found the same provider→directory→3-mockups→claim→upgrade pattern duplicated across 4 codebases.",
"pkg_version": "0.1.0",
"readme_snippet": "Shared TypeScript primitives for Steve's **directory verticals** — currently lawyer/doctor/animals/restaurant, future architects/dentists/etc.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-boardroom-governance",
"name": "dw-boardroom-governance",
"has_git": true,
"first_at": "2026-05-06T10:25:14-07:00",
"last_at": "2026-05-06T10:25:14-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "dw-boardroom-governance",
"pkg_description": "DW Boardroom Governance Engine — Isolated decision management, delegation, and meeting orchestration",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/SmokeShop",
"name": "SmokeShop",
"has_git": true,
"first_at": "2026-05-06T10:25:13-07:00",
"last_at": "2026-05-06T10:25:13-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 234,
"days_since": 3,
"health": "hot",
"pkg_name": "smokeshop",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/StudentLoanTracker",
"name": "StudentLoanTracker",
"has_git": true,
"first_at": "2026-05-06T10:25:13-07:00",
"last_at": "2026-05-06T10:25:13-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 20,
"days_since": 3,
"health": "hot",
"pkg_name": "student-loan-tracker",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Travis",
"name": "Travis",
"has_git": true,
"first_at": "2026-05-06T10:25:13-07:00",
"last_at": "2026-05-06T10:25:13-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": "travis",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/SDCC-Stories",
"name": "SDCC-Stories",
"has_git": true,
"first_at": "2026-05-06T10:25:12-07:00",
"last_at": "2026-05-06T10:25:12-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 101,
"days_since": 3,
"health": "hot",
"pkg_name": "sdcc-stories",
"pkg_description": "SDCC Story Engine — borrower stories, social media, lawmaker outreach",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Sascha",
"name": "Sascha",
"has_git": true,
"first_at": "2026-05-06T10:25:12-07:00",
"last_at": "2026-05-06T10:25:12-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Norma",
"name": "Norma",
"has_git": true,
"first_at": "2026-05-06T10:25:11-07:00",
"last_at": "2026-05-06T10:25:11-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 325,
"days_since": 3,
"health": "hot",
"pkg_name": "norma",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "Multi-tenant nonprofit intelligence platform. Three-tier UI: **Norma** (admin), **Nikki** (org staff), **Pulse** (end user). Covers email & outreach, Gmail CRM, news intelligence, petition management, and a credential platform for issuing & managing API access.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/FashionCrawler",
"name": "FashionCrawler",
"has_git": true,
"first_at": "2026-05-06T10:25:05-07:00",
"last_at": "2026-05-06T10:25:05-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "# Web Scraper for Fashion Marketplace Sites",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Hub",
"name": "Hub",
"has_git": true,
"first_at": "2026-05-06T10:25:05-07:00",
"last_at": "2026-05-06T10:25:05-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 491,
"days_since": 3,
"health": "hot",
"pkg_name": "hub-command",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/IWasCute",
"name": "IWasCute",
"has_git": true,
"first_at": "2026-05-06T10:25:05-07:00",
"last_at": "2026-05-06T10:25:05-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 653,
"days_since": 3,
"health": "hot",
"pkg_name": "iwascute",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Letsbegin",
"name": "Letsbegin",
"has_git": true,
"first_at": "2026-05-06T10:25:05-07:00",
"last_at": "2026-05-06T10:25:05-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 2,
"days_since": 3,
"health": "hot",
"pkg_name": "goodquestionralph",
"pkg_description": null,
"pkg_version": "0.2.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/NEW-SKU-Viewer",
"name": "NEW-SKU-Viewer",
"has_git": true,
"first_at": "2026-05-06T10:25:05-07:00",
"last_at": "2026-05-06T10:25:05-07:00",
"last_subject": "initial scaffold (gitify-all 2026-05-06)",
"commit_count": 1,
"size_mb": 22,
"days_since": 3,
"health": "hot",
"pkg_name": "new-sku-viewer",
"pkg_description": "Web viewer for NEW-SKU vendors with live product counts",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/PoppyPetitions",
"name": "PoppyPetitions",
"has_git": true,
"first_at": "2026-05-06T10:22:14-07:00",
"last_at": "2026-05-06T10:22:14-07:00",
"last_subject": "initial scaffold (2026-05-06 overnight session)",
"commit_count": 1,
"size_mb": 478,
"days_since": 3,
"health": "hot",
"pkg_name": "poppy-petitions",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Freddy",
"name": "Freddy",
"has_git": true,
"first_at": "2026-05-06T10:22:13-07:00",
"last_at": "2026-05-06T10:22:13-07:00",
"last_subject": "initial scaffold (2026-05-06 overnight session)",
"commit_count": 1,
"size_mb": 408,
"days_since": 3,
"health": "hot",
"pkg_name": "freddy-tmp",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Grant",
"name": "Grant",
"has_git": true,
"first_at": "2026-05-06T10:22:13-07:00",
"last_at": "2026-05-06T10:22:13-07:00",
"last_subject": "initial scaffold (2026-05-06 overnight session)",
"commit_count": 1,
"size_mb": 643,
"days_since": 3,
"health": "hot",
"pkg_name": "grant-app",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Patty",
"name": "Patty",
"has_git": true,
"first_at": "2026-05-06T10:22:13-07:00",
"last_at": "2026-05-06T10:22:13-07:00",
"last_subject": "initial scaffold (2026-05-06 overnight session)",
"commit_count": 1,
"size_mb": 381,
"days_since": 3,
"health": "hot",
"pkg_name": "patty-petitions",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/linkedin-agent",
"name": "linkedin-agent",
"has_git": true,
"first_at": "2026-05-06T10:22:13-07:00",
"last_at": "2026-05-06T10:22:13-07:00",
"last_subject": "initial scaffold (2026-05-06 overnight session)",
"commit_count": 1,
"size_mb": 63,
"days_since": 3,
"health": "hot",
"pkg_name": "linkedin-agent",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "Steve's autonomous LinkedIn presence — posts, comments, connection requests,\nCompany Page management, AI-drafted content — all wired into Claude Code via\nan MCP server.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Kamatera",
"name": "Kamatera",
"has_git": false,
"first_at": "2026-05-06T10:20:49Z",
"last_at": "2026-05-06T10:20:49Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 4,
"health": "warm",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dear-bubbe-nextjs",
"name": "dear-bubbe-nextjs",
"has_git": true,
"first_at": "2026-05-06T10:20:46-07:00",
"last_at": "2026-05-07T12:29:23-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ *.log dist/)",
"commit_count": 2,
"size_mb": 869,
"days_since": 2,
"health": "hot",
"pkg_name": "dear-bubbe-nextjs",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "# Dear Bubbe - AI Grandmother Chat",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/designer-portfolio-pages",
"name": "designer-portfolio-pages",
"has_git": true,
"first_at": "2026-05-06T10:20:46-07:00",
"last_at": "2026-05-06T10:20:46-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "designer-portfolio-pages",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dear-bubbe-admin",
"name": "dear-bubbe-admin",
"has_git": true,
"first_at": "2026-05-06T10:20:44-07:00",
"last_at": "2026-05-06T10:20:44-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 4,
"days_since": 3,
"health": "hot",
"pkg_name": "dear-bubbe-admin",
"pkg_description": "Admin Dashboard for Dear Bubbe AI with Real-time Monitoring and Alert Systems",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/codex-review-2026-05-03",
"name": "codex-review-2026-05-03",
"has_git": true,
"first_at": "2026-05-06T10:20:43-07:00",
"last_at": "2026-05-06T10:20:43-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/codex-yolo",
"name": "codex-yolo",
"has_git": true,
"first_at": "2026-05-06T10:20:43-07:00",
"last_at": "2026-05-06T10:20:43-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/compliance-agent",
"name": "compliance-agent",
"has_git": true,
"first_at": "2026-05-06T10:20:43-07:00",
"last_at": "2026-05-06T10:20:43-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 6,
"days_since": 3,
"health": "hot",
"pkg_name": "compliance-agent",
"pkg_description": "Internal compliance gate — suppression list + contact-attempt audit log for Steve's stack. Every outbound call/SMS/email checks here first.",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/contractwallpaper",
"name": "contractwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:43-07:00",
"last_at": "2026-05-07T17:55:24-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "contractwallpaper",
"pkg_description": "CONTRACT WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/corkwallcovering",
"name": "corkwallcovering",
"has_git": true,
"first_at": "2026-05-06T10:20:43-07:00",
"last_at": "2026-05-08T07:35:15-07:00",
"last_subject": "Hamburger always visible on right — propagated from novasuede a815690",
"commit_count": 13,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "corkwallcovering",
"pkg_description": "CORK WALLCOVERING — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/cypress-awards",
"name": "cypress-awards",
"has_git": true,
"first_at": "2026-05-06T10:20:43-07:00",
"last_at": "2026-05-06T10:20:43-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 2,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "**A comprehensive database of US non-profit organizations with cy pres statements for legal settlement distribution.**",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/codex-review-2026-04-30",
"name": "codex-review-2026-04-30",
"has_git": true,
"first_at": "2026-05-06T10:20:42-07:00",
"last_at": "2026-05-06T10:20:42-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 48,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ClawCoder",
"name": "ClawCoder",
"has_git": true,
"first_at": "2026-05-06T10:20:41-07:00",
"last_at": "2026-05-07T12:29:22-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ *.log .DS_Store dist/)",
"commit_count": 2,
"size_mb": 3,
"days_since": 2,
"health": "hot",
"pkg_name": "clawcoder",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/cncp-domains",
"name": "cncp-domains",
"has_git": true,
"first_at": "2026-05-06T10:20:41-07:00",
"last_at": "2026-05-06T10:20:41-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/calc-67",
"name": "calc-67",
"has_git": true,
"first_at": "2026-05-06T10:20:40-07:00",
"last_at": "2026-05-07T12:29:22-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ *.log dist/)",
"commit_count": 2,
"size_mb": 258,
"days_since": 2,
"health": "hot",
"pkg_name": "67calc",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "**The World's Most Accurate Calculator Suite™**",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/claude-code-dashboard",
"name": "claude-code-dashboard",
"has_git": true,
"first_at": "2026-05-06T10:20:40-07:00",
"last_at": "2026-05-06T10:20:40-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/claude-email-responder",
"name": "claude-email-responder",
"has_git": true,
"first_at": "2026-05-06T10:20:40-07:00",
"last_at": "2026-05-08T00:35:15-07:00",
"last_subject": "Reverse channel: directive parser bypasses Claude for 'act on X' / 'status' / 'pause loop' / 'resume loop'",
"commit_count": 2,
"size_mb": 13,
"days_since": 2,
"health": "hot",
"pkg_name": "claude-email-responder",
"pkg_description": "Polls George Gmail for inbound mail from Steve and auto-replies in-thread via Claude API.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/boomer-calculator",
"name": "boomer-calculator",
"has_git": true,
"first_at": "2026-05-06T10:20:33-07:00",
"last_at": "2026-05-07T12:29:21-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ *.log dist/)",
"commit_count": 2,
"size_mb": 3,
"days_since": 2,
"health": "hot",
"pkg_name": "nofrillscalculator",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "**The World's Most Accurate Calculator Suite™**",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/brand-selector-viewer",
"name": "brand-selector-viewer",
"has_git": true,
"first_at": "2026-05-06T10:20:33-07:00",
"last_at": "2026-05-06T10:20:33-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/B_Version_1",
"name": "B_Version_1",
"has_git": true,
"first_at": "2026-05-06T10:20:32-07:00",
"last_at": "2026-05-06T10:20:32-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 2,
"days_since": 3,
"health": "hot",
"pkg_name": "dear-bubbe",
"pkg_description": "AI-powered Yiddish grandmother advice column with SMS delivery",
"pkg_version": "1.0.0",
"readme_snippet": "# 🥯 Dear Bubbe - AI-Powered Yiddish Grandma Advice",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/auto-deploy-watcher",
"name": "auto-deploy-watcher",
"has_git": true,
"first_at": "2026-05-06T10:20:32-07:00",
"last_at": "2026-05-06T10:20:32-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 5,
"days_since": 3,
"health": "hot",
"pkg_name": "auto-deploy-watcher",
"pkg_description": "Watches project git HEADs on main and runs scripts/deploy-*.sh on change.",
"pkg_version": "0.1.0",
"readme_snippet": "Watches each enabled project's git HEAD on `main` and runs that project's\n`scripts/deploy-*.sh` whenever the SHA changes.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/billy-website",
"name": "billy-website",
"has_git": true,
"first_at": "2026-05-06T10:20:32-07:00",
"last_at": "2026-05-06T10:20:32-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": "laurel-canyon-rental",
"pkg_description": "High-end luxury rental website for 2755 Carmar Drive in historic Laurel Canyon, Los Angeles",
"pkg_version": "1.0.0",
"readme_snippet": "# 2755 Carmar Drive - Laurel Canyon Luxury Rental",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/blockprintedwallpaper",
"name": "blockprintedwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:32-07:00",
"last_at": "2026-05-07T17:55:40-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 10,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "blockprintedwallpaper",
"pkg_description": "BLOCK-PRINTED WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/animate-museum-posts",
"name": "animate-museum-posts",
"has_git": true,
"first_at": "2026-05-06T10:20:31-07:00",
"last_at": "2026-05-07T12:29:20-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ .DS_Store build/)",
"commit_count": 2,
"size_mb": 1134,
"days_since": 2,
"health": "hot",
"pkg_name": "animate-museum-posts",
"pkg_description": "Automated museum art animation and posting bot",
"pkg_version": "1.0.0",
"readme_snippet": "Automated bot that fetches random public domain artwork from Rijksmuseum, animates it using Grok AI, and posts to X.com.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/apartmentwallpaper",
"name": "apartmentwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:31-07:00",
"last_at": "2026-05-07T17:55:40-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 11,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "apartmentwallpaper",
"pkg_description": "APARTMENT WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/architecturalwallcoverings",
"name": "architecturalwallcoverings",
"has_git": true,
"first_at": "2026-05-06T10:20:31-07:00",
"last_at": "2026-05-07T23:04:48-07:00",
"last_subject": "Scrub Designer Wallcoverings from products.json (vendor/imageAlt/tags)",
"commit_count": 10,
"size_mb": 13,
"days_since": 2,
"health": "hot",
"pkg_name": "architecturalwallcoverings",
"pkg_description": "ARCHITECTURAL WALLCOVERINGS — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/archive-agent",
"name": "archive-agent",
"has_git": true,
"first_at": "2026-05-06T10:20:31-07:00",
"last_at": "2026-05-07T12:29:21-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ .DS_Store dist/ build/ .next/)",
"commit_count": 2,
"size_mb": 6,
"days_since": 2,
"health": "hot",
"pkg_name": "archive-agent",
"pkg_description": "Archive Agent — watches Shopify archives, flags wrongful ones, reports",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-collections-viewer",
"name": "dw-collections-viewer",
"has_git": true,
"first_at": "2026-05-06T10:20:19-07:00",
"last_at": "2026-05-07T08:59:43-07:00",
"last_subject": "dw-collections-viewer: gold ↕<sort> pill on tiles when persisted sort != default 'textures'; surfaces last_sort_applied at a glance",
"commit_count": 17,
"size_mb": 6,
"days_since": 2,
"health": "hot",
"pkg_name": "dw-collections-viewer",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/AgentAbrams",
"name": "AgentAbrams",
"has_git": true,
"first_at": "2026-05-06T10:20:07-07:00",
"last_at": "2026-05-07T12:29:20-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (node_modules/ tmp/ .next/)",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "A public build-in-public operating system by Agent Abrams.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/abrams-discovery-viewer",
"name": "abrams-discovery-viewer",
"has_git": true,
"first_at": "2026-05-06T10:20:07-07:00",
"last_at": "2026-05-07T12:29:54-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 645 files; files preserved on disk)",
"commit_count": 3,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "abrams-discovery-viewer",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ad-signals-rolodex",
"name": "ad-signals-rolodex",
"has_git": true,
"first_at": "2026-05-06T10:20:07-07:00",
"last_at": "2026-05-06T10:20:07-07:00",
"last_subject": "initial snapshot — gitify all builds (CLAUDE.md rule 2026-05-06)",
"commit_count": 1,
"size_mb": 1,
"days_since": 3,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/agedwallpaper",
"name": "agedwallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:07-07:00",
"last_at": "2026-05-07T17:55:32-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "agedwallpaper",
"pkg_description": "AGED WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/angels-flowers",
"name": "angels-flowers",
"has_git": true,
"first_at": "2026-05-06T10:20:07-07:00",
"last_at": "2026-05-07T12:29:20-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ *.log dist/)",
"commit_count": 2,
"size_mb": 2,
"days_since": 2,
"health": "hot",
"pkg_name": "angels-flowers",
"pkg_description": "Angel's Flowers - Premium Ecuadorian Flowers in East Los Angeles",
"pkg_version": "1.0.0",
"readme_snippet": "# Angel's Flowers - Premium Ecuadorian Flowers",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1930swallpaper",
"name": "1930swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:05-07:00",
"last_at": "2026-05-07T23:04:46-07:00",
"last_subject": "Scrub Designer Wallcoverings from products.json (vendor/imageAlt/tags)",
"commit_count": 10,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "1930swallpaper",
"pkg_description": "1930s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1940swallpaper",
"name": "1940swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:05-07:00",
"last_at": "2026-05-07T17:55:11-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "1940swallpaper",
"pkg_description": "1940s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1950swallpaper",
"name": "1950swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:05-07:00",
"last_at": "2026-05-07T17:55:12-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "1950swallpaper",
"pkg_description": "1950s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1960swallpaper",
"name": "1960swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:05-07:00",
"last_at": "2026-05-07T17:55:13-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "1960swallpaper",
"pkg_description": "1960s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1970swallpaper",
"name": "1970swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:05-07:00",
"last_at": "2026-05-07T23:04:47-07:00",
"last_subject": "Scrub Designer Wallcoverings from products.json (vendor/imageAlt/tags)",
"commit_count": 12,
"size_mb": 9,
"days_since": 2,
"health": "hot",
"pkg_name": "the-1970s-wallpaper",
"pkg_description": "Retro Walls — vintage/midcentury/deco wallcoverings storefront. DW family vertical. Goldleaf-inspired palette.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1980swallpaper",
"name": "1980swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:05-07:00",
"last_at": "2026-05-07T17:55:16-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 9,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "1980swallpaper",
"pkg_description": "1980s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1800swallpaper",
"name": "1800swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:04-07:00",
"last_at": "2026-05-08T09:03:55-07:00",
"last_subject": "add favicon",
"commit_count": 9,
"size_mb": 12,
"days_since": 1,
"health": "hot",
"pkg_name": "1800swallpaper",
"pkg_description": "1800s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1890swallpaper",
"name": "1890swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:04-07:00",
"last_at": "2026-05-07T17:55:05-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 12,
"days_since": 2,
"health": "hot",
"pkg_name": "1890swallpaper",
"pkg_description": "1890s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1900swallpaper",
"name": "1900swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:04-07:00",
"last_at": "2026-05-07T17:55:07-07:00",
"last_subject": "graphic-loop pass 13: real footer brand + Facebook link + OG/Twitter meta tags",
"commit_count": 8,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "1900swallpaper",
"pkg_description": "1900s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/1920swallpaper",
"name": "1920swallpaper",
"has_git": true,
"first_at": "2026-05-06T10:20:04-07:00",
"last_at": "2026-05-07T23:04:46-07:00",
"last_subject": "Scrub Designer Wallcoverings from products.json (vendor/imageAlt/tags)",
"commit_count": 10,
"size_mb": 11,
"days_since": 2,
"health": "hot",
"pkg_name": "1920swallpaper",
"pkg_description": "1920s WALLPAPER — DW family vertical",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/NationalPaperHangers",
"name": "NationalPaperHangers",
"has_git": true,
"first_at": "2026-05-06T10:18:07-07:00",
"last_at": "2026-05-07T23:19:09-07:00",
"last_subject": "rel=alternate JSON + HTTP Link header on /find — applies VCL pattern",
"commit_count": 41,
"size_mb": 418,
"days_since": 2,
"health": "hot",
"pkg_name": "national-paper-hangers",
"pkg_description": "Luxury wallcovering installer marketplace + scheduling platform",
"pkg_version": "0.1.0",
"readme_snippet": "Luxury wallcovering installer marketplace + scheduling platform.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/dw-product-manager",
"name": "dw-product-manager",
"has_git": false,
"first_at": "2026-05-06T10:01:27Z",
"last_at": "2026-05-06T10:01:27Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 0,
"days_since": 4,
"health": "warm",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/business-claw",
"name": "business-claw",
"has_git": false,
"first_at": "2026-05-06T09:04:47Z",
"last_at": "2026-05-06T09:04:47Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 4,
"health": "warm",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ventura-claw",
"name": "ventura-claw",
"has_git": true,
"first_at": "2026-05-06T02:22:52-07:00",
"last_at": "2026-05-07T13:23:36-07:00",
"last_subject": "marketing: pre-flight section flags Show HN draft is unshippable until demo widget returns to homepage; fix 56→67 connector count",
"commit_count": 72,
"size_mb": 14,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/ventura-corridor",
"name": "ventura-corridor",
"has_git": true,
"first_at": "2026-05-05T06:49:06-07:00",
"last_at": "2026-05-10T00:48:31-07:00",
"last_subject": "task #4: source CC0 glTF bus + car models (Kenney Car Kit + Quaternius Public Transport)",
"commit_count": 160,
"size_mb": 312,
"days_since": 0,
"health": "hot",
"pkg_name": "ventura-corridor",
"pkg_description": "Ventura Blvd corridor business directory — inventory, front-page audit, SEO scoring, mind-map view. Local-only (Mac).",
"pkg_version": "0.1.0",
"readme_snippet": "Local-only directory of every business on Ventura Blvd (Calabasas → North Hollywood). Inventory + front-page audit + SEO scoring + ownership classification + three view surfaces.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/bubbesblock",
"name": "bubbesblock",
"has_git": true,
"first_at": "2026-05-04T06:58:43-07:00",
"last_at": "2026-05-07T12:05:24-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "Community surface for the three-domain home-history ecosystem.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/claimmyaddress",
"name": "claimmyaddress",
"has_git": true,
"first_at": "2026-05-04T06:39:14-07:00",
"last_at": "2026-05-07T12:05:24-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "Onboarding / login surface for the three-domain home-history ecosystem.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/wholivedthere",
"name": "wholivedthere",
"has_git": true,
"first_at": "2026-05-04T06:19:05-07:00",
"last_at": "2026-05-07T12:05:25-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 2,
"size_mb": 41,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/stayclaim",
"name": "stayclaim",
"has_git": true,
"first_at": "2026-05-04T05:58:39-07:00",
"last_at": "2026-05-07T12:29:31-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ dist/ build/)",
"commit_count": 2,
"size_mb": 459,
"days_since": 2,
"health": "hot",
"pkg_name": "stayclaim",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "Address-first property-history platform. Pivoted from the original\n\"Airbnb listing claim\" concept after the deep research in\n[docs/deep-research-report.md](docs/deep-research-report.md).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/jill-website",
"name": "jill-website",
"has_git": true,
"first_at": "2026-05-04T05:38:44-07:00",
"last_at": "2026-05-07T12:29:26-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ .DS_Store build/)",
"commit_count": 2,
"size_mb": 118,
"days_since": 2,
"health": "hot",
"pkg_name": "nosara-beachfront-rentals",
"pkg_description": "Luxury beachfront vacation rental website for Nosara, Costa Rica",
"pkg_version": "1.0.0",
"readme_snippet": "A luxury beachfront vacation rental website for Nosara, Costa Rica. This application provides property listings, guest inquiry management, and email notifications for vacation rental properties.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/malden-house",
"name": "malden-house",
"has_git": true,
"first_at": "2026-05-04T05:18:47-07:00",
"last_at": "2026-05-07T12:05:24-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Ken",
"name": "Ken",
"has_git": true,
"first_at": "2026-05-04T03:46:34-07:00",
"last_at": "2026-05-07T12:29:27-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (.env* tmp/ *.log .DS_Store dist/ build/ .next/)",
"commit_count": 2,
"size_mb": 3,
"days_since": 2,
"health": "hot",
"pkg_name": "bertha-weather-betting",
"pkg_description": "Weather forecast micro-betting system for Polymarket",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/trademarks-copyright",
"name": "trademarks-copyright",
"has_git": true,
"first_at": "2026-05-04T03:19:49-07:00",
"last_at": "2026-05-07T12:29:32-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (.env* tmp/ dist/ build/)",
"commit_count": 2,
"size_mb": 667,
"days_since": 2,
"health": "hot",
"pkg_name": "trademarks-copyright",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "# Trademarks & Copyright — Opportunity Finder",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/yolo-agent",
"name": "yolo-agent",
"has_git": true,
"first_at": "2026-05-04T02:42:17-07:00",
"last_at": "2026-05-07T12:30:20-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 633 files; files preserved on disk)",
"commit_count": 3,
"size_mb": 13,
"days_since": 2,
"health": "hot",
"pkg_name": "yolo-agent",
"pkg_description": "YOLO Agent — Autonomous Claude Code task runner",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/resize-it",
"name": "resize-it",
"has_git": true,
"first_at": "2026-05-04T02:23:31-07:00",
"last_at": "2026-05-07T12:29:30-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/)",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Hormuzy",
"name": "Hormuzy",
"has_git": true,
"first_at": "2026-05-04T02:04:45-07:00",
"last_at": "2026-05-07T12:05:24-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 2,
"size_mb": 7,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/secrets-manager",
"name": "secrets-manager",
"has_git": true,
"first_at": "2026-05-04T01:46:00-07:00",
"last_at": "2026-05-07T15:41:37-07:00",
"last_subject": "log: 9-domain batch DNS+cert session 2026-05-07",
"commit_count": 6,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/the-ai-factory",
"name": "the-ai-factory",
"has_git": true,
"first_at": "2026-05-04T01:08:09-07:00",
"last_at": "2026-05-07T12:29:32-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ dist/ build/ .next/)",
"commit_count": 2,
"size_mb": 29,
"days_since": 2,
"health": "hot",
"pkg_name": "the-ai-factory",
"pkg_description": "Meta-orchestrator: prompt -> shipped AI artifact (subagent, skill, agent, script).",
"pkg_version": "0.1.0",
"readme_snippet": "Meta-orchestrator that turns one prompt into a shipped AI artifact (subagent, skill, agent, or script).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/site-factory",
"name": "site-factory",
"has_git": true,
"first_at": "2026-05-04T00:49:03-07:00",
"last_at": "2026-05-07T12:29:54-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 804 files; files preserved on disk)",
"commit_count": 3,
"size_mb": 1068,
"days_since": 2,
"health": "hot",
"pkg_name": "site-factory",
"pkg_description": "Steve's site-factory: domain → branded, monetized, app-store-ready site, with Manager critic per stage",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/bankrupt-leads",
"name": "bankrupt-leads",
"has_git": true,
"first_at": "2026-05-03T23:52:25-07:00",
"last_at": "2026-05-07T12:05:24-07:00",
"last_subject": "add canonical .gitignore per standing rule",
"commit_count": 2,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "MVP: scrape bankruptcy court filings, extract asset schedules + 363 sale motions, resell as vertical lead digests.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/session-debrief",
"name": "session-debrief",
"has_git": true,
"first_at": "2026-05-03T23:51:24-07:00",
"last_at": "2026-05-07T12:30:20-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 601 files; files preserved on disk)",
"commit_count": 13,
"size_mb": 0,
"days_since": 2,
"health": "hot",
"pkg_name": "session-debrief",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/debate-ring-viewer",
"name": "debate-ring-viewer",
"has_git": true,
"first_at": "2026-05-03T23:46:26-07:00",
"last_at": "2026-05-07T12:30:19-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 1635 files; files preserved on disk)",
"commit_count": 5,
"size_mb": 30,
"days_since": 2,
"health": "hot",
"pkg_name": "debate-ring-viewer",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/small-business-builder",
"name": "small-business-builder",
"has_git": true,
"first_at": "2026-05-03T23:46:26-07:00",
"last_at": "2026-05-07T12:29:31-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (dist/ build/ .next/)",
"commit_count": 8,
"size_mb": 44,
"days_since": 2,
"health": "hot",
"pkg_name": "small-business-builder",
"pkg_description": "Template-driven landing-page builder for small businesses. First vertical: LA salons / barbershops / nail salons. 5 templates per business, scrape existing website + Instagram for initial data, three pricing tiers (free / plus $19 / premium $79).",
"pkg_version": "0.1.0",
"readme_snippet": "Template-driven landing-page builder for small businesses.\nFirst vertical: LA salons / barbershops / nail salons. Generic for any small business after that.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/claude-codex-meeting",
"name": "claude-codex-meeting",
"has_git": true,
"first_at": "2026-05-01T13:07:44-07:00",
"last_at": "2026-05-08T00:08:49-07:00",
"last_subject": "auto-act: tolerate ## or ### heading depth + grep-empty (pipefail crash); now handles meeting-format drift cleanly",
"commit_count": 8,
"size_mb": 2,
"days_since": 2,
"health": "hot",
"pkg_name": "claude-codex-meeting",
"pkg_description": null,
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/animals",
"name": "animals",
"has_git": true,
"first_at": "2026-05-01T11:33:17-07:00",
"last_at": "2026-05-10T07:08:46-07:00",
"last_subject": "fix: animals-hawk pm2 path portable across Mac1/Mac2",
"commit_count": 40,
"size_mb": 3402,
"days_since": 0,
"health": "hot",
"pkg_name": "animals",
"pkg_description": "Compliance-first directory + monetization platform for the entire animal ecosystem: vets, clinics, breeds, breeders, shelters, groomers, trainers. Powers the AnimalsDirectory consumer site, the Vet Site Upgrade SaaS upsell, and a lead-gen funnel.",
"pkg_version": "0.1.0",
"readme_snippet": "Compliance-first directory + monetization platform for the U.S. animal-care\necosystem (vets, clinics, breeds, breeders, shelters, groomers, trainers).",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/visual-factory",
"name": "visual-factory",
"has_git": true,
"first_at": "2026-04-30T23:06:29-07:00",
"last_at": "2026-05-07T12:29:34-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ dist/ build/ .next/)",
"commit_count": 8,
"size_mb": 33,
"days_since": 2,
"health": "hot",
"pkg_name": "visual-factory",
"pkg_description": "Meta-orchestrator: brief -> rendered visual artifact (HTML→PNG via Playwright; llava vision review; Claude CLI critic).",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/professional-directory",
"name": "professional-directory",
"has_git": true,
"first_at": "2026-04-30T00:41:56-07:00",
"last_at": "2026-05-07T12:29:29-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (build/ .next/)",
"commit_count": 3,
"size_mb": 13339,
"days_since": 2,
"health": "hot",
"pkg_name": "professional-directory",
"pkg_description": "Compliance-first PostgreSQL data platform for licensed professionals (LA County doctors first). Powers profile sites, SEO pages, directories, CRM enrichment.",
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/lawyer-directory-builder",
"name": "lawyer-directory-builder",
"has_git": true,
"first_at": "2026-04-30T00:35:33-07:00",
"last_at": "2026-05-07T12:29:27-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (build/ .next/)",
"commit_count": 34,
"size_mb": 6845,
"days_since": 2,
"health": "hot",
"pkg_name": "lawyer-directory-builder",
"pkg_description": "Compliance-first PostgreSQL data platform for licensed legal professionals (LA County first). Powers profile websites, SEO pages, directories, and CRM enrichment.",
"pkg_version": "0.1.0",
"readme_snippet": "# LA Lawyer Directory — Office Map",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/lahomespecs",
"name": "lahomespecs",
"has_git": false,
"first_at": "2026-04-29T13:24:39Z",
"last_at": "2026-04-29T13:24:39Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 11,
"health": "warm",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/VictoryStays",
"name": "VictoryStays",
"has_git": true,
"first_at": "2026-04-24T00:33:57-07:00",
"last_at": "2026-05-07T12:29:33-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (dist/ build/ .next/)",
"commit_count": 23,
"size_mb": 3537,
"days_since": 2,
"health": "hot",
"pkg_name": "victorystays",
"pkg_description": null,
"pkg_version": "0.1.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Forza",
"name": "Forza",
"has_git": true,
"first_at": "2026-04-23T11:14:43-07:00",
"last_at": "2026-05-07T12:29:25-07:00",
"last_subject": "tighten .gitignore: add missing standing-rule patterns (tmp/ dist/ build/ .next/)",
"commit_count": 6,
"size_mb": 1,
"days_since": 2,
"health": "hot",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "Website mockups for **forza.legal** — a boutique Costa Rica law, tax & outsourcing firm.",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/test",
"name": "test",
"has_git": false,
"first_at": "2026-02-21T01:43:41Z",
"last_at": "2026-02-21T01:43:41Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 78,
"health": "cold",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/project-67",
"name": "project-67",
"has_git": false,
"first_at": "2026-02-21T01:43:34Z",
"last_at": "2026-02-21T01:43:34Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 78,
"health": "cold",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Hospitality",
"name": "Hospitality",
"has_git": false,
"first_at": "2026-02-21T01:42:51Z",
"last_at": "2026-02-21T01:42:51Z",
"last_subject": "",
"commit_count": 0,
"size_mb": 1,
"days_since": 78,
"health": "cold",
"pkg_name": null,
"pkg_description": null,
"pkg_version": null,
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
},
{
"path": "/Users/macstudio3/Projects/Bertha",
"name": "Bertha",
"has_git": true,
"first_at": "2026-02-12T21:40:16Z",
"last_at": "2026-05-07T12:29:54-07:00",
"last_subject": "untrack node_modules per standing rule (was tracking 12516 files; files preserved on disk)",
"commit_count": 56,
"size_mb": 118,
"days_since": 2,
"health": "hot",
"pkg_name": "bertha-weather-betting",
"pkg_description": "Weather forecast micro-betting system for Polymarket",
"pkg_version": "1.0.0",
"readme_snippet": "",
"pros": "",
"cons": "",
"verdict": null,
"priority": 0,
"notes": "",
"chat": []
}
]
}