Live data from Hacker News

Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

github.com

1–10 of 57 posts

Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#1
We recently open-sourced Hive after using it internally to support real production workflows tied to contracts totaling over $500k.

Instead of manually wiring workflows or building brittle automations, Hive is designed to let developers define a goal in natural language and generate an initial agent that can execute real tasks.

Today, Hive supports goal-driven agent generation, multi-agent coordination, and production-oriented execution with observability and guardrails. We are actively building toward a system that can capture failure context, evolve agent logic, and continuously improve workflows over time - that self-improving loop is still under development.

Hive is intended for teams that want:

- Autonomous agents running real business workflows

- Multi-agent coordination

- A foundation that can evolve through execution data

We currently have nearly 100 contributors across engineering, tooling, docs, and integrations. A huge portion of the framework’s capabilities - from CI improvements to agent templates - came directly from community pull requests and issue discussions. We want to highlight and thank everyone who has contributed. Specifically out top 11 contributors @vakrahul @Samir-atra @VasuBansal7576 @Aarav-shukla07 @Amdev-5 @Hundao @Antiarin @AadiSharma49 @Emart29 @srinuk9570 @levxn

Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)
github.com

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#3
Super excited to see Hive on HN! I recently started contributing, focusing specifically on agent stability and tool hardening. The Issue: Agents are fragile. I found that tools like grep or view_file could easily crash an agent if it encountered a massive file or binary data. The Fix: I'm working on adding safety caps, pagination, and stricter input validation (just sent a PR for web_search!) to the core toolset. The Impact: This ensures agents don't accidentally "suicide" when exploring large codebases, making them reliable enough for actual work, not just demos.

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#4
I've been contributing heavily to Hive/Aden recently to help bridge the gap between "research framework" and "production platform."

My recent PRs have focused on improving Developer Experience and safety:

- Goal Decomposition Preview: I noticed a lot of "blind generation" in agent frameworks. I implemented a CLI feature (hive preview) that performs a lightweight LLM pass to decompose a goal into a directed graph structure (nodes & flow logic). It explicitly flags risks (e.g., ambiguous success criteria) and provides cost/complexity estimates before you generate a single line of scaffold code.

- Simulation Mode: To tighten the dev loop, I added a simulation harness that allows for dry-running agent logic against mocked inputs. This lets you test decision trees and retry mechanisms without burning real API credits or triggering side effects (like actually sending an SMS or writing to a DB).

- Enterprise Integrations: I’ve been fleshing out the MCP (Model Context Protocol) layer to support actual business workflows, including Microsoft SQL Server, Twilio (SMS/WhatsApp), Google Maps, n8n, and Zendesk.

- Persistent Memory: Just shipped integration with Memori to solve the statelessness problem, giving agents long-term context retention across sessions.

Happy to answer any questions on the implementation details.

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#6
Hi everyone,

What was the issue? While exploring Hive for real-world finance use cases, I noticed there wasn’t a clear, reusable structure for implementing credit-risk logic inside agents. This made experimentation harder and limited how easily risk-related workflows could scale across agents. How did I fix it? I contributed by working on a credit-risk–focused agent/module, improving the structure, documentation, and alignment with the existing agent pipeline. The goal was to make the logic more modular and easier to extend as new agents and use cases are added. Why does it matter? Credit risk is a core problem in many real-world applications (fintech, lending, B2B workflows). Making this logic modular and transparent helps Hive support more serious production use cases, while keeping the system understandable and contributor-friendly.

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#7
What was the issue? While Hive provides a powerful backend for autonomous agents, execution was a "black box." Debugging complex agent workflows—like when a scraper hits a 403 and needs to rotate proxies—was painful through terminal logs. There was no easy way to visualize the decision-making process, track token usage, or monitor costs in real-time.

How did you fix it? I built the Web Dashboard (hive/web) using Next.js and Tailwind CSS to provide a dedicated observability layer that syncs directly with the local runtime.

Real-time Visualization: Created a live view of agent runs, showing every step, tool call, and state change as it happens. Decision Tracing: Implemented a timeline view that breaks down exactly why an agent made a decision (e.g., "Switching to residential proxy due to 403 error") and what options it discarded. Performance Metrics: Added effortless tracking for token consumption, latency, and cost per run. Why does it matter? Trust is the biggest barrier to adopting AI agents in production. By highlighting "Self-Healing" events and making the agent's "brain" visible, we move from "magic" to engineering. This dashboard gives developers the confidence to deploy agents and the insights needed to optimize them when they fail.

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#8
I’ve been contributing to Hive and opened Issue #3763 around production readiness specifically missing reliability controls (retry, recovery, persistence) and cost transparency (token and workflow-level visibility).

I proposed structured retry policies, crash-safe state persistence, and cost observability via CLI/TUI. Based on maintainer feedback, I broke this down into focused sub-issues under #3763 to make implementation incremental and aligned with Hive’s architecture. I also submitted PR #4398 from my fork to improve documentation around production hardening and cost visibility.

This matters because production agent workflows need reliability and predictable cost behavior otherwise deployment confidence and adoption suffer.

I also contributed to Issue #4131 by proposing a “Post-Quickstart Evaluation Walkthrough” to help developers validate agent behavior immediately after setup and improve onboarding clarity.

Hive’s event-loop architecture is solid these contributions focus on helping bridge the gap from experimentation → production deployment.

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#9
I’ve been contributing at Aden (Amdev-5 on GitHub), where my focus has been on closing the 'actionability' gap by building out Hive’s integration ecosystem. To make the framework truly plug-and-play for business environments, I’ve focused on merging high-utility connectors like X (Twitter), Cal.com, Apollo.io, serp api, while currently refining a Google Maps PR to give agents better geospatial awareness. Beyond the tools themselves, I’ve been working anround infrastructure and architecting the SDR and Blog Writer sample agents. These weren't just meant as demos, but as blueprints for how multi-turn coordination can replace brittle, hard-coded automations in a real-world workflow. It’s been a blast so far and I’m happy to dive into any questions regarding the integration layer or our approach to multi-agent task execution.

Re: Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)

#10
This is a really cool project and I've enjoyed exploring it. I've worked on a couple of things within this repo. My preference was to use local LLMs as opposed to LLM API keys, as I'm working on developing local LLM usage to address the enterprise concerns of data privacy. Hive supports the usage of Ollama for local model inference, which I felt was a good starting point. During development, I found the Hive docs to be primarily focused on using Claude Code and OpenAI LLM inference, and development on Linux OS. I absolutely use Linux frequently, and also understand that there are many devs using Windows as well. Issue: Hive docs needed some fleshing out to produce clear guides, walkthroughs, and examples using the above framework. How to fix: I proposed a fully fleshed out guide using Ollama models, and CLI, along with a breakdown for both Linux and Windows users. Though, WSL works, again, I wanted to appeal to less technical users that may have an interest in Hive, and suggested a less technical approach for simple PowerShell or Linux CLI instructions. Why does it matter?: There are several reasons this is important, but primarily it has to do with creating a platform that not only highly technical people can use, but also beginner or intermediate users as well. This not only broadens the audience, but also demonstrates professionalism.

I've really enjoyed using the Hive framework to build some local LLM inference projects (currently using Hive for a short term/long term memory agentic system to address context window limitations, attention deficit, and drift in long conversations.

Post reply on HN