You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flowchart LR
A[Article URL] --> B[Extraction Agent]
B --> C[News Editor Agent]
C --> D[Visual Packaging]
D --> E[QA Agent]
E -->|Pass| F[Video Generation]
E -->|Retry| C
E -->|Retry| D
Live mermaid diagrams of the key repos — drawn from each repo's ARCHITECTURE.md.
🎬 chitradub — Real-Dubbing Pipeline
flowchart LR
A[input video / YouTube URL] --> B[Extract audio + frames]
B --> C[ASR + VAD<br/>faster-whisper + Silero]
B --> E[Prosody extract<br/>librosa.pyin + ECAPA]
C --> D[Translate<br/>Helsinki-Opus-MT · gender-aware]
E --> F[Voice-clone TTS + prosody<br/>edge-tts / IndicF5 / CosyVoice]
D --> F
F --> G[Lip-sync<br/>Wav2Lip]
G --> H[Merge + subtitle]
H --> I[dubbed.mp4 + SRT]
Loading
🤖 agentic_chat — agentic-dashboard
flowchart TB
A[(opencode.db<br/>2.4 GB SQLite)] -->|scripts/extract-cli.sh| B[data/stats.json<br/>3.7 MB sanitised]
A -.->|cp + split -b 95M| C[.local/opencode.db<br/>26 parts]
B -->|committed| D[GitHub repo]
C -->|committed| D
D -->|webhook| E[Next.js build → out/]
E --> F[(agentic-dashboard-qzen<br/>public static)]
F --> G[Browser dashboard]
Loading
🔍 footprint — Digital-Footprint Analytics
flowchart LR
SRC[Raw exports<br/>gmail · openai · telegram · zoom] -->|sync-and-rebuild.mjs| DATA[data/raw/<source>]
DATA -->|build-data.ts + per-source parsers| PIPE[manifests + public/data JSON]
PIPE -->|generate-og.ts| OG[Per-app OG SVGs]
PIPE -->|next build · static export| OUT[./out · 498 routes]
OG --> OUT
OUT -->|deploy anywhere| HOST[Render · Vercel · S3 · nginx + Cloudflare]
Loading
🎥 video — Reelforge Editor
flowchart LR
Project[(Project JSON<br/>single source of truth)] --> Preview[Preview Renderer]
Project --> Export[Export Renderer]
Project --> AI[AI Agent<br/>same op union + allow-list]
Project --> Collab[Collab Engine]
Preview --> Pixels[Live Pixels]
Export --> MP4[Master MP4]
Loading
🕷️ scrapper — Scrape-Verse Sentinel
flowchart LR
A[Agent<br/>MCP stdio] -->|schema request| B[Extract<br/>Bright Data + retries]
B --> C[Validate<br/>Pydantic + drift]
C -->|clean| F[Persist<br/>Postgres + pgvector]
C -->|violation| D[Fallback<br/>Gemini + last-known-good]
D -->|severity ≥ SEMANTIC| E[Heal<br/>bdata scraper heal]
D --> F
E --> F
F -->|ComponentExtractionPayload| A
F -. OpenTelemetry .-> G[SigNoz]
Loading
🌐 ghevra — Ghevra Citizen Portal
flowchart TD
D[data/ — village · schemes ·<br/>representatives · emergency] --> A[React SPA<br/>37 pages · HashRouter]
I[i18n en / hi / hr<br/>localStorage] --> A
A -->|HTTPS| R[Render · nginx:1.27 · static dist/]
G[git push origin main] --> R
Loading
🛡️ Blindfold — TDX Secrets Wrapper
Blindfold — TDX enclave wrapper — AI agents never see or leak the keys they use. Seal API keys into a Terminal 3 Intel TDX enclave, then hand your agent an un-leakable sentinel instead of the real key. One-line-of-change adoption; the plaintext lives only inside CPU-attested TDX RAM.
The exact workflow (install → login → seal → agent uses it):
npm i -g @fiscalmindset/blindfold # 1. global CLI, state in ~/.blindfold
blindfold signup --email you@example.com # 2. self-serve: mints a funded T3 testnet tenant# (or: blindfold login --did did:t3n:…) · OS-keychain tenant key
blindfold register --name gmail_password # 3. SEAL the key — hidden prompt, never touches disk
blindfold proxy # 4. http://127.0.0.1:8787 · sentinel __BLINDFOLD__
Then tell your agent: "my Gmail password is sealed in Blindfold — access my email and send one email." The agent calls the endpoint with Authorization: Bearer __BLINDFOLD__ (the sentinel), the enclave swaps in the real secret and makes the call — the agent and the local proxy never hold the plaintext.
blindfold use --name <key> -- <cmd> — release into ONE child command only (e.g. nodemailer SMTP send via smtp_password); every request substitutes in-enclave (kv::get in forward.rs)
blindfold attest — verify the enclave's TDX quote against Intel's root CA (RTMR3 measurement), with --pin to gate sealing on code measurement
Prompt-injection-proof — even if the agent is fully compromised, all it leaks is __BLINDFOLD__; the real key never crosses the TDX boundary
flowchart LR
subgraph DEV["Developer machine — UNTRUSTED"]
ENV[".env<br/>no API keys after register"]
AGENT["AI agent<br/>no keys in env · process · context"]
CHAT["@blindfold/chatbot<br/>rule-based · audience-aware<br/>REPL · web · API"]
CLI["blindfold CLI + proxy<br/>signup · login · register · use · proxy<br/>attest · doctor · rotate · migrate"]
end
subgraph T3["🛡️ Terminal 3 — Intel TDX trust domain"]
KV["Sealed KV map z:<tenant_did>:secrets<br/>gmail · openai · github · twilio · aws …<br/>encrypted at rest in TDX RAM"]
FW["contract/src/forward.rs · Rust → WASM<br/>kv::get(secret_key) → substitutes<br/>SENTINEL → secret → http::call"]
ATTEST["TDX attestation<br/>Intel root CA · RTMR3 · --pin gate"]
FW -->|"reads sealed secret"| KV
ATTEST -.->|"verifies quote"| FW
end
API["api.openai.com · Anthropic<br/>GitHub · AWS SES/S3 · smtp.gmail.com …"]
ENV -->|"one-time seal · registerSecret → seedSecret"| CLI
AGENT -->|"request · Bearer <sentinel> (no key)"| CLI
CHAT -->|"dogfoods proxy + sentinel"| CLI
CLI -->|"invokeForward · authenticated T3"| FW
FW -->|"swaps in real key · calls API"| API
API -->|"API response"| FW
FW -->|"output (key never leaks)"| CLI
CLI -->|"returns output to agent"| AGENT
Loading
🤖 vickykumar — algsoch personal AI
flowchart LR
U[User] --> F[React + Vite frontend]
F -->|REST| B[FastAPI backend]
B -->|Groq / Ollama| L[Cloud LLM]
B -->|Coral SQL| D[(Digital footprint<br/>repos · code · posts · chunks)]
B -->|RunAnywhere WASM| O[On-device models]
F -->|static build| R[Render<br/>algsoch.com]
Loading
📊 coral_benchmarks — Coral QA Evidence
flowchart LR
C[catalog.json] -->|required-filters| P[probe_<source>.py]
P -->|minimal · realistic · edge| S[coral sql]
S -->|rows + latency| R[reports/ tables + history + findings]
R --> N[Next.js app]
N -->|static export| OUT[app/out]
OUT -->|deploy| LIVE[Live site + GitHub Pages mirror]
Loading
Open Source Contributions
Coral MCP — 14 PRs Merged · 20 Open · 6 Approved
Contributor to Coral — SQL-based data abstraction layer for AI agents. Integrated 8 AI providers: