Live data from Hacker News

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

github.com

21–30 of 57 posts

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

#23
Congrats to the team on the launch

I’ve been contributing to Hive over the past couple of weeks, mostly around agent design patterns, integrations, and production-readiness.

What was the issue? Hive has powerful agent primitives, but early on there were few concrete reference patterns showing how to apply them to real-world, multi-step workflows.

How did I address it? I contributed by proposing and designing reference agent pipelines (e.g. multi-agent content research workflows) and scoped integrations focused on production use cases like security automation, scheduling, and external systems.

Why does it matter? Clear reference agents and narrowly scoped integrations make it much easier for teams to move from experimentation to real business workflows, which is where agent frameworks tend to break down.

Happy to answer questions or dive deeper into any of the designs.

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

#25
Here's the full story behind this project:

I grew up helping my dad run his factory so I'm very familiar with ERP systems for manufacturing. A few years ago, when I decided to build a startup and I indentified the biggest problems with ERP is the fact they all just serve as data integration and system of records now - there're not enough processes automation. Therefore, I thought it'd be very meaningful to leverage AI to automate business processes such as PO, Price Requisition, and invoices, etc.

3 years in, I realized that every customer in our space (construction and contracting) want process automation, however, AI is simply not good enough - it's too slow, unpredictable, inconsistent, and overall hard to count on. For example, automating a quote by asking AI to insert dynamic variables from a relational database is hit or miss. Asking voice AI to provide training does not capture full breadth of the offline activities. Asking AI to fill out a work order creates a ton of errors.

Later, we decided that though LLM and the foundation models were progressing fast, the dev tools were lacking way behind, particular behind all the hypes and promises these AI applications claimed. The agents are not reliable, consistent, intelligent, evolving, and chances are the market would demand more apps to keep the party going.

Therefore, we went full open-source. The mission we have in mind is really to "generate reliable agents that can run business processes autonomously". We see all this hype about general computer use (GCUs) and can't help but making an opposing argument - that the AI agents need guardrails, more defined paths, and most importantly consistent results just like a human would need

- Proactive Reasoning (anticipating future needs or consequences)

- Memory & Experience (events affecting himself/herself)

- Judgment (based on experience)

- Tools & Skills (capabilities to execute)

- Reactive Adaptiveness (handling immediate roadblocks)

- Contextual Communication (articulating intent and collaborating with others)

- Character & Traits (consistent behavioral biases: Risk profile, Integrity, Persistence)

The project seems to have gained a bit of a traction so far and I hope that you can fork it and tell the community what's missing and what we should be working on. I deeply thank you because the it's truly painful to build and deploy these one-off agents that don't get utilized. (https://github.com/adenhq/hive).

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

#26
I contributed by identifying and reproducing an onboarding blocker where Hive examples could not be executed from a clean clone.

Issue: Running example scripts failed due to unresolved internal imports, since the repository was not installable as a package and no supported execution path was documented (issue #3207).

What I did: I reproduced the failure on a clean environment, documented clear reproduction steps, and provided a minimal fix so examples could run out of the box.

Why it matters: First-time users should be able to clone a repo and run an example immediately. Fixing this reduces onboarding friction and makes Hive easier to evaluate and contribute to.

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

#27
post #14

I developed a comprehensive Slack MCP tool suite that transforms Slack from a simple chat interface into a fully operational control plane for AI agents. It was tested end to end with other tool capabilities like CRM, where all executions can happen from slack itself, all you have to do is call this slack bot which is connected via webhooks hence anything you name it, it will use available tools to help you out with…

Thanks for you contribution so far! Yea, I saw that and I'm testing it today.

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

#28

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…

Interesting application - how'd you like to implement the credit-risk logics? Do you want to write SQL expressions, mathematical models via Python, or some other way? By design, the framework should containerize these logics. But it'd better learn more.

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

#30

I contributed by identifying and reproducing an onboarding blocker where Hive examples could not be executed from a clean clone. Issue: Running example scripts failed due to unresolved internal imports, since the repository was not installable as a package and no supported execution path was documented (issue #3207). What I did: I reproduced the failure on a clean environment, documented clear reproduction steps, and…

Thanks for your contribution, much appreciated
Post reply on HN