frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: enveil – hide your .env secrets from prAIng eyes

https://github.com/GreatScott/enveil
42•parkaboy•3h ago•26 comments

Show HN: X86CSS – An x86 CPU emulator written in CSS

https://lyra.horse/x86css/
98•rebane2001•5h ago•29 comments

Show HN: Steerling-8B, a language model that can explain any token it generates

https://www.guidelabs.ai/post/steerling-8b-base-model-release/
128•adebayoj•7h ago•17 comments

Show HN: PgDog – Scale Postgres without changing the app

https://github.com/pgdogdev/pgdog
248•levkk•16h ago•51 comments

Show HN: Babyshark – Wireshark made easy (terminal UI for PCAPs)

https://github.com/vignesh07/babyshark
106•eigen-vector•11h ago•39 comments

Show HN: Notion-CLI – Full Notion API from the terminal, 39 commands, one binary

https://github.com/4ier/notion-cli
2•4ier•1h ago•0 comments

Show HN: Sowbot – Open-hardware agricultural robot (ROS2, RTK GPS)

https://sowbot.co.uk/
149•Sabrees•16h ago•41 comments

Show HN: AI Timeline – 171 LLMs from Transformer (2017) to GPT-5.3 (2026)

https://llm-timeline.com/
158•ai_bot•23h ago•55 comments

Show HN: AgentBudget – Real-time dollar budgets for AI agents

https://github.com/sahiljagtap08/agentbudget
5•sahiljagtapyc•2h ago•2 comments

Show HN: L88 – A Local RAG System on 8GB VRAM (Need Architecture Feedback)

3•adithyadrdo•3h ago•0 comments

Show HN: ClinTrialFinder –AI-powered clinical trial matching for cancer patients

https://www.clintrialfinder.info
2•chncwang•3h ago•0 comments

Show HN: CIA World Factbook Archive (1990–2025), searchable and exportable

https://cia-factbook-archive.fly.dev/
476•MilkMp•1d ago•98 comments

Show HN: Falcon – Chat-first communities built on Bluesky AT Protocol

5•JohannaWeb•5h ago•0 comments

Show HN: PaperBanana – Paste methodology text, get publication-ready diagrams

2•mylsz•5h ago•0 comments

Show HN: Enseal – Stop pasting secrets into Slack .env sharing from the terminal

https://github.com/FlerAlex/enseal
3•ops_mechanic•5h ago•0 comments

Show HN: BVisor – An Embedded Bash Sandbox, 2ms Boot, Written in Zig

https://github.com/butter-dot-dev/bVisor
17•edunteman•14h ago•5 comments

Show HN: Agent Multiplexer – manage Claude Code via tmux

https://github.com/mixpeek/amux
11•Beefin•16h ago•1 comments

Show HN: 3D Mahjong, Built in CSS

https://voxjong.com
130•rofko•1d ago•58 comments

Show HN: A geometric analysis of Chopin's Prelude No. 4 using 3D topology

https://github.com/jimishol/cholidean-harmony-structure/blob/main/docs/03-case-study-chopin-prelu...
48•jimishol•3d ago•11 comments

Show HN: A deadly simple tmux windows like start UI

https://github.com/liyu1981/tmux_start_ui
3•liyu1981au•7h ago•2 comments

Show HN: Implementing ping from the Ethernet layer (ARP,IPv4,ICMP in user space)

https://github.com/v420v/ping
8•ibuki256•22h ago•1 comments

Show HN: Local-First Linux MicroVMs for macOS

https://shuru.run
207•harshdoesdev•1d ago•63 comments

Show HN: Llama 3.1 70B on a single RTX 3090 via NVMe-to-GPU bypassing the CPU

https://github.com/xaskasdf/ntransformer
388•xaskasdf•2d ago•102 comments

Show HN: WorldCanvas – R/place, but with a real world map as the canvas

https://worldcanvas.art
3•recuerdame•10h ago•1 comments

Show HN: PureBee – A software-defined GPU running Llama 3.2 1B at 3.6 tok/SEC

https://github.com/PureBee/purebee
3•benryanx•10h ago•1 comments

Show HN: Peekl – A modern alternative to Ansible and Puppet

https://peekl.dev
2•redat00•10h ago•1 comments

Show HN: Rendering 18,000 videos in real-time with Python

https://madebymohammed.com/pysaic
41•mbmproductions•1d ago•5 comments

Show HN: Merkle Casino – Random CT Domains

https://merkle.altayakkus.dev
2•biosboiii•10h ago•0 comments

Show HN: Touch Trigonometry – interactive way to understand the trig functions

https://apps.apple.com/us/app/touch-trigonometry/id6758712159
2•matthewtoast•11h ago•0 comments

Show HN: Search-sessions – Search all your Claude Code session history in <300ms

https://github.com/sinzin91/search-sessions
4•sinzin91•11h ago•4 comments
Open in hackernews

Show HN: AgentBudget – Real-time dollar budgets for AI agents

https://github.com/sahiljagtap08/agentbudget
5•sahiljagtapyc•2h ago
Hey HN,

I built AgentBudget after an AI agent loop cost me $187 in 10 minutes — GPT-4o retrying a failed analysis over and over. Existing tools (LangSmith, Langfuse) track costs after execution but don't prevent overspend.

AgentBudget is a Python SDK that gives each agent session a hard dollar budget with real-time enforcement. Integration is two lines:

    import agentbudget
    agentbudget.init("$5.00")
It monkey-patches the OpenAI and Anthropic SDKs (same pattern as Sentry/Datadog), so existing code works without changes. When the budget is hit, it raises BudgetExhausted before the next API call goes out.

How it works:

- Two-phase enforcement: estimates cost pre-call (input tokens + average completion), reconciles post-call with actual usage. Worst-case overshoot is bounded to one call. - Loop detection: sliding window over (tool_name, argument_hash, timestamp) tuples. Catches infinite retries even if budget remains. - Cost engine: pricing table for 50+ models across OpenAI, Anthropic, Google, Mistral, Cohere. Fuzzy matching for dated model variants. - Unified ledger: tracks both LLM calls and external tool costs (via track() or @track_tool decorator) in a single session.

Benchmarks: 3.5μs median overhead per enforcement check. Zero budget overshoot across all tested scenarios. Loop detection: 0 false positives on diverse workloads, catches pathological loops at exactly N+1 calls.

No infrastructure needed — it's a library, not a platform. No Redis, no cloud services, no accounts.

I also wrote a whitepaper covering the architecture and integration with Coinbase's x402 payment protocol (where agents make autonomous stablecoin payments): https://doi.org/10.5281/zenodo.18720464

1,300+ PyPI installs in the first 4 days, all organic. Apache 2.0.

Happy to answer questions about the design.

Comments

dayumsam•2h ago
I found this from your twitter post, crazy that i found your post here hahaha, i am trying to implement it for my side project to keep the agents from taking over my side project budget.

Looks really promising so far!

sahiljagtapyc•2h ago
Thanks! That's awesome - love that the Twitter thread connected here. Let me know how the integration goes, happy to help if you hit any issues. What are your agents running on?