1
0 Comments

I Built a Company Brain for My Startup (Free Template Included)

I got tired of running team operations by hand.

Our founding team's standups happened in a channel when people remembered. Our GTM tracking lived in spreadsheets nobody updated. Weekly reports took an hour to compile and were read by no one. And nobody could answer the simplest question: "Are we on track?"

So I built a company brain. It's an AI agent that lives in our Discord, runs daily standups, tracks our GTM numbers, and generates dashboards. We named it Dojo. It costs about $2-5 a month to run.

Here's what it does every day:

  1. At 10:30 AM it posts a standup reminder: Yesterday / Today / Blockers / Metrics
  2. The team replies in the channel — the agent parses each reply into structured data
  3. Anyone who hasn't checked in gets a gentle nudge every 30 minutes
  4. "Off today" or "@dojo off tomorrow" is understood natively — no nagging
  5. At the end of the day it compiles everything into JSON and posts a summary

The weekly workflow reads those JSON files and generates a dashboard with charts: targets vs actuals, per-person contributions, trend lines. The monthly report adds channel breakdowns and strategic recommendations. The quarterly review checks the full-year trajectory against our revenue target.

The whole thing runs on:

  • A Mac mini we already owned
  • DeepSeek for the LLM (~$2-5/month)
  • Discord (free)
  • Cron jobs for scheduling

The stack: a Hermes Agent instance with a dedicated profile, a SOUL.md identity file, 13 skills (workflows), and a data folder of JSON files. Everything is files and schedules — no magic, fully inspectable.

The idea came from Gumclaw, the agent that runs all of Gumroad's operations. If an agent can run a company's support and engineering, I figured it can at least run our standups. It was right.

Lessons after a month of running it:

  • The parsing rules matter more than the model. Well-defined workflows run fine on a cheap LLM.
  • People stop replying to standups after two weeks unless leadership answers first, every day. The tool can't fix culture.
  • The self-learning skill is the sleeper feature. It watches for "X joined the team" or "project Y shipped" and updates the team files automatically. The brain maintains itself.
  • A brain that silently dies is worse than none. Monitor the gateway.
    I open-sourced the entire kit — all 13 skills, the Discord setup guide, cron examples, and JSON schemas: github.com/sanjuacodez/company-brain-kit

If you're a founder still compiling standups by hand, clone it and run your first standup tomorrow. It takes an afternoon, not a quarter.

on August 12, 2026