Personal knowledge base for ideas, specs, and plans — structured so an AI coding agent can read one folder and build the application from it.
Owner: @DDancingDeath Visibility: private.
Each idea becomes a self-contained folder under projects/,
grouped by kind:
projects/apps/— real products (in production or a working POC).projects/agents/— AI agent ideas (personal utilities, team-facing teammates, intern-project pitches).
One folder = one product / experiment / utility.
projects/<kind>/<slug>/
├── README.md ← the narrative entry point. Idea first, then
│ a tour of the detailings, then links into spec/.
├── idea.md ← the why, in detail: problem, users, north star
├── spec/ ← the what: functional spec, page specs, data design
├── plan/ ← the how: roadmap, review notes, promotion
├── prompts/ ← ready-to-paste agent prompts ("build this for me")
└── assets/ ← mockups, screenshots, diagrams
The project README.md is the canonical narrative doc. Read it
top-to-bottom and you have: the idea, how the system works at a glance,
what it does today, the tech stack, the known issues, and a reading
order pointing into spec/ and plan/ for the deep details. New
projects should follow _templates/project-readme.md.
Reusable scaffolding:
_templates/— start a new idea from a templateAGENTS.md— orientation for AI agents.github/copilot-instructions.md— picked up by GitHub Copilot CLI / coding agent
Three one-liners. See CONVENTIONS.md for the full
contract and tools/README.md for prerequisites.
# 1. Add a new idea (a new folder in this repo)
.\tools\add-idea.ps1 -Slug my-new-idea -Kind agents `
-Title "My new idea" -Pitch "One paragraph."
# 2. Add a new skill (new GitHub repo, or PR to internal ADO)
.\tools\add-skill.ps1 -Slug my-skill -Target github
# 3. Add a new agent
.\tools\add-agent.ps1 -Slug my-agent -Target githubEach script scaffolds from _templates/, commits with
the Co-authored-by: Copilot trailer, and pushes. Use -NoPush /
-NoCommit to inspect before publishing.
- Read
AGENTS.md. - Read the project's
README.md(it points to the canonical spec + plan). - If a
prompts/build-from-spec.mdexists, follow it. - When unsure, prefer
spec/overplan/(spec is the source of truth for what to build; plan is for order and status).
Grouped by kind:
| Slug | One-liner | Status |
|---|---|---|
| aadhat-management | Hindi/English wholesale-retail business management app (Firebase + Capacitor). | In production; spec frozen, security hardening pending. |
| cross-device-personal-agent | iOS app + cloud control plane + device agents on each of my dev boxes — run commands on my machines from the phone (Phase 1), receive notifications from agents (Phase 2), drive it in natural language (Phase 3), chain into multi-agent workflows (Phase 4). | Idea — design captured (rescoped 2026-06-06 from notification inbox to cross-device personal agent; folder renamed from agent-companion); no prototype yet. |
| remote-app-launcher | Weekend spike of cross-device-personal-agent: type notepad on the phone → notepad opens on the dev box. One command kind, one device, shared-secret auth, in-memory storage, Expo Go. ~500 LoC, ≤12 h build target. Designed for a parallel 3-agent build (backend/agent/phone) with a frozen contracts file and per-track prompts; sequential single-agent fallback also documented. |
Idea — fully designed, code not started; ready to build. |
| identityposc | POC for shop-floor ambient identity from CCTV (camera + mic) — learns who people are by overhearing how they're addressed. | POC complete (F1 80 % on Tears of Steel, recall 100 %); next phase is production hardening. |
| notes-reminders | Voice-first AI memory & knowledge app — speak naturally; embeddings route the note to the right topic (or create a new one), each topic keeps its own summary, timeline, open actions, related topics. No folders, no tags, no filing. | Idea pivot 2026-06-06 from type-classifier to topic-organised; mobile platform + embedding store undecided. |
| parenting-companion | AI-driven parenting & child-growth companion — age-aware nutrition/habit/education guidance, growth tracking against WHO/IAP curves, vaccination reminders, plus long-term financial planning tied to education goals (Indian fee context + inflation). | Early-stage idea capture; platform (Flutter vs RN), AI provider, and Indian-fee dataset all undecided. |
| reflective-friend | Always-on personal AI as a reflective guide and fair witness — passive ambient listening (opt-in, evidence-backed, never an arbiter), nightly reflection prompts, monthly growth summaries, in-conversation transcript recall, rehearsal practice. Same memory thread across years. | Early-stage idea capture; capture model (phone-only vs phone + wearable), LLM provider, recording-law model, and consent UX all undecided. Reflection-only v0 ships before any passive listening. |
| wake-word-poc | Android POC that validates a wake-word pipeline end-to-end — say "Hey Laddu" and the app vibrates, shows a toast + 3 s on-screen confirmation, and speaks a fixed Text-to-Speech reply ("Hey Hitesh"), with a 5 s cooldown. Fully on-device / offline; no speech-to-text. Upstream spike for the aadhat-management in-app wake-word. | Idea — spec authored 2026-06-20 (Detection Behavior, TTS, cooldown, expected flow); wake-word engine (Porcupine / Vosk / TFLite / SpeechRecognizer) undecided for production (Porcupine planned); POC built 2026-06-20 → wake-word-poc-app (Manual + SpeechRecognizer detectors, Porcupine stub; core unit-tested). |
| Slug | One-liner | Status |
|---|---|---|
| winui-expert-teammate | An AI teammate for the WinUI team — one brain, many surfaces (Teams, Outlook, GitHub/ADO, Agency); identity, memory, proactive behaviour layered onto existing WinUI agents. | Pitched as intern project; phased delivery plan ready. |
| inbox-triage | Personal AI that watches my mail, Teams, PRs, and bugs and tells me what's worth doing today (Microsoft-internal). | Early-stage idea capture; open decisions on surface + runtime. |
| prompt-optimizer | An agent that makes me better at using AI — by rewriting prompts in flight, replaying my sessions, or coaching me in real time. | Early-stage idea capture; three competing shapes on the table. |
| ado-bugfixer | Agency-mode agent that walks my ADO bug list and proposes fixes — draft PRs, root-cause notes, dupe calls. Personal-scope. | Early-stage idea capture; needs area allow-list + audit of existing internal tools. |
| agent-guidelines-hub | A single source of truth for my cross-project agent guidelines that propagates by default into every repo I own, so any agent starting work already follows my rules without me pasting them in each time. | Idea — captured 2026-06-20 (problem, design sketch, open decisions); no build yet, parked to work on later. |