Skip to content
View P1rate5ec's full-sized avatar

Block or report P1rate5ec

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
P1rate5ec/README.md

Bobby Meher Yerremsetty

I build AI systems that are allowed to say no.

focus stack also


Most of my work sits at the same seam: a model that is confident, and a system that has to be correct. The interesting engineering is almost never the prompt. It is the budget cap, the approval gate, the audit log, the fallback path, and knowing which parts of the problem the model should not be touching at all.

A few things I keep coming back to:

  • Let the model translate, not compute. In calpt, an LLM turns English into a command and SymPy does every piece of arithmetic — because a language model that is 97% right about calculus is a language model that is wrong in a way you will not notice.
  • Autonomy needs brakes before it needs features. trent runs multi-agent workflows behind hard spend caps, an approval queue, a kill switch, and a tamper-evident hash chain over every state change.
  • Say what is actually proven. trent's README opens with a status table that says Not-yet-wired in three places, next to the exact command that would prove otherwise.

🤖 AI & LLM systems

Project What it is Why it's interesting
KoSh (case study) Predictive dispatch for trucking fleets — risk scoring, HOS-legal recovery options, a learning loop behind safety gates A seeded evaluation lab, a 9-metric scorecard, and shadow → canary → auto-rollback promotion. The eval evidence is itself treated as untrusted: stale, dirty-tree or commit-mismatched artifacts are refused
trent AI cofounder OS — planner builds a DAG, specialist agents execute, a critic loops, a consolidator writes the brief Approval-first architecture, per-agent token budgets, SHA-256 audit chain. 1,731 tests, 0 typecheck errors
ai-pipeline-builder A Claude Code Skill for 30+ step autonomous pipelines Steps are data, not code paths — so a run that dies at 19 of 30 says so, and the 18 outputs before it survive
calpt A stock TI-84 doing real calculus over a phone hotspot SymPy computes, the LLM only translates. Character-whitelist input validation, pinned TLS on an ESP32-C3
casems-v1 AI-augmented law-enforcement case management Voice-to-report and court-readiness scoring with NIBRS-compatible structured output
stash Second brain for ephemeral content Vision-capable enrichment that degrades to a heuristic fallback instead of failing
Trench-OS Content OS for creators A brand-voice model extracted from real samples conditions every generation

📡 Hardware, RF & sensing

Project What it is
RudeStorm Passive RF sensing — turns the WiFi already in a room into a sensor. Deploys no new primary sensors and transmits nothing
rf433-gateway Standalone ESP32 433 MHz decoder and replayer — 56 protocol families, hundreds of real devices, no cloud and no home WiFi required

🛡️ Defensive security

Ten small, sharp defensive tools, each rebuilt to one standard — shared rich CLI, hardened network surfaces, safe-by-default flags, 275 tests passing across the set. Built to make the right thing easy and the wrong thing hard.

byte-bouncer · phish-pond · lantern-lan · threat-tea · key-kettle · caesar-salad · floodlight · lockbox-lane · sentry-sundae · patch-peeker

Every web UI binds to loopback. Every active scan is gated behind an explicit authorization flag. No exploits, no payloads.

Popular repositories Loading

  1. rf433-gateway rf433-gateway Public

    Standalone ESP32 433MHz decoder & replayer — mobile web UI + Bluetooth LE + TFT. Decodes hundreds of weather sensors, meters & remotes out of the box (56 pilight protocols).

    C++ 3

  2. calpt calpt Public

    TI-84 Plus does real calculus over a phone hotspot — cloud SymPy brain, LLM as translator only, security-hardened. Educational hardware+AI build.

    Python 3

  3. RudeStorm RudeStorm Public

    Passive urban sensing fusion middleware (WiFi-CSI + passive Remote ID + acoustic)

    Python 2

  4. byte-bouncer byte-bouncer Public

    Magic-number file-type identification and mismatch detection for defensive triage.

    Python

  5. caesar-salad caesar-salad Public

    Caesar-cipher cryptanalysis by frequency analysis, with a confidence verdict and Index-of-Coincidence sanity check.

    Python

  6. floodlight floodlight Public

    Traffic-rate flood detection from real access-log timestamps, with statistical burst detection on top of static thresholds.

    Python