Skip to content

Instantly share code, notes, and snippets.

View mdp's full-sized avatar

Mark Percival mdp

View GitHub Profile
@mdp
mdp / koe-community-analysis.md
Created July 1, 2026 23:39
Koe (koe.sh) Discord community channel analysis — early-user consensus on the AI video generation product

Koe — Community Channel Analysis

Source: Discord channel 1483773846338142229 (guild 1482384783739715694), last 78 messages (Apr 7 → ~Apr 28 2026), exported with @mdp/discord-dump.


What the product is

Koe (koe.sh) is an AI video/trailer generation platform — a "video production engine" that chains models (Kling, LTX 2.3 Pro, Seedance 2.0) into a storyboarded workflow: custom characters, scene editor, camera angles, duration/motion, preview frames, voice cloning, lip sync, and templates (Gothic 90s Anime, Pixar 3D Animated). It's run by jordyx (founder, based in NY), and the Discord is the community/support channel.

@mdp
mdp / o5QiW-jvAag.md
Created July 1, 2026 15:57
Baidu's CFO on How It Became a Full-Stack AI Player | Odd Lots — yt-summary

Baidu's CFO on How It Became a Full-Stack AI Player | Odd Lots

Channel: Bloomberg Podcasts · Duration: 49:11 · Watch: youtube.com/...

In a live recording at Bloomberg Invest Asia in Hong Kong, Odd Lots hosts Joe Weisenthal and Tracy Alloway interview Henry He, CFO of Baidu, about the company's full-stack AI strategy spanning chips, cloud, foundation models (Ernie), and robotaxis (Apollo Go). He argues Baidu is the closest structural analog to Google — own chips, own cloud, own model, own physical-AI applications — and reveals the company has filed to spin off its chip business in Hong Kong, ships robotaxis competitively with Waymo, and is shifting its key metric from daily active users to "daily active agents."


Cold Open & Introduction 00:00

@mdp
mdp / crm-enrichment-cline-sdk.md
Created May 20, 2026 18:04
CRM enrichment and Cline SDK integration

CRM Enrichment and Cline SDK Integration

This note explains how BigBrother runs the CRM enrichment task and how the CRM agent skill is executed through the Cline SDK. It is aimed at engineers who need to understand the moving parts, not at end users. Code samples below are trimmed excerpts from the referenced files.

High-Level Flow

The CRM enrichment job is a scheduled task, not a standalone script embedded in a skill.

  1. The daemon or CLI builds shared agent dependencies with buildAgents().
  2. The crm-enrichment task searches Notion CRM for recently created companies.
@mdp
mdp / POSTHOG.md
Created May 18, 2026 19:49
PostHog x BigBrother: Inception Debugging & Observability Strategy

🦔 PostHog × BigBrother: "Inception" Debugging & Observability Strategy

Author: AI Analysis
Date: May 18, 2026
Status: Exploration & Case-Making


1. Executive Summary

@mdp
mdp / bigbrother-cline-sdk-report.md
Created May 18, 2026 19:32
How BigBrotherBot uses @cline/sdk v0.0.41 — a comprehensive integration overview

BigBrotherBot × Cline SDK — Integration Overview

This document was produced by reviewing the BigBrotherBot codebase. It covers every meaningful way the project uses @cline/sdk.


Overview

BigBrotherBot is a production AI agent for 1984 Ventures. It processes inbound email, enriches a Notion CRM, scores applications, runs daily meeting prep, and provides a chatbot interface over Discord and WhatsApp.

@mdp
mdp / REPORT.md
Created May 18, 2026 19:11
SigMap Codebase Report v6.10.10

SigMap Codebase Report

Generated: 2026-05-18
Version: 6.10.10
Branch: main (up-to-date with origin)

Repository Status

Item Value
@mdp
mdp / BOXLITE_TECHNICAL_SUMMARY.md
Created May 15, 2026 12:33
BoxLite: Technical Summary for Engineers

BoxLite: Technical Summary for Engineers

What It Is (Elevator Pitch)

BoxLite is an embeddable micro-VM runtime that runs standard OCI containers (Docker images) inside lightweight hardware-virtualized sandboxes ("Boxes"). It follows the SQLite philosophy: you link it as a library into your application—no daemon, no root, no background service required.

It is positioned as a "compute substrate for AI agents," but the primitive is general-purpose: give me an isolated, stateful environment where I can run untrusted code with real kernel isolation, and I want it to feel as easy as docker run.

The Core Value Proposition

@mdp
mdp / AGENT_GUIDE.md
Last active May 21, 2026 01:17
WhatsApp Gateway — Agent Integration Guide

WhatsApp Gateway — Agent Integration Guide

This service bridges WhatsApp to a simple HTTP + WebSocket API. This guide tells you everything you need to operate it as an agent.

Base URL

https://whatsapp.anteater-snapper.ts.net   (HTTPS, port 443)
wss://whatsapp.anteater-snapper.ts.net     (WebSocket over TLS, port 443)
### Keybase proof
I hereby claim:
* I am mdp on github.
* I am mdp (https://keybase.io/mdp) on keybase.
* I have a public key whose fingerprint is 3977 96B0 0D37 D95B 3FDC F12F 32FC E8AB 7513 4EF9
To claim this, I am signing this object:
@mdp
mdp / env-to-ssm.sh
Created January 8, 2018 21:33
.env to SSM
#!/bin/bash
# Usage: ./env-to-ssm.sh prefix envfile
# Ex: ./env-to-ssm.sh prod.app .env
AWS_SSM_PREFIX=$1
ENV_FILE=$2
cat aws/.env | grep -v ^# | grep -v -e '^$' | while read line