<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: vincentjiang</title><link>https://news.ycombinator.com/user?id=vincentjiang</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 23 Apr 2026 07:27:32 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=vincentjiang" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[There's a prediction market for jobs now. Software engineer is down 45% YTD]]></title><description><![CDATA[
<p>Article URL: <a href="https://honeycomb-staging.open-hive.com/job/swe">https://honeycomb-staging.open-hive.com/job/swe</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47595916">https://news.ycombinator.com/item?id=47595916</a></p>
<p>Points: 4</p>
<p># Comments: 2</p>
]]></description><pubDate>Wed, 01 Apr 2026 02:06:22 +0000</pubDate><link>https://honeycomb-staging.open-hive.com/job/swe</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=47595916</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47595916</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Agent framework that generates its own topology and evolves at runtime"]]></title><description><![CDATA[
<p>Fascinating concept, you essentially frame the backend not as a static codebase, but as an adaptive organism that evolves based on real-time usage.<p>A few things that come to my mind if I were to build this:<p>The 'Agent-User' Paradox: To make this work, you'd need the initial agents (the ones responding and testing the goals) to be 'chaotic' enough to explore edge cases, but 'structured' enough to provide meaningful feedback to the 'Architect' agent.<p>The Schema Contract: How would you ensure that as the backend "writes itself," it doesn't break the contract with the frontend? You’d almost need a JIT Documentation layer that updates in lockstep.<p>Verification: I wonder if the server should run the 'JIT-ed' code in a sandbox first, using the telemetry to verify the goal was met before promoting the code to the main branch.<p>It’s a massive shift from Code as an Asset to Code as a Runtime Behavior. Have you thought about how you'd handle state/database migrations in a world where the backend is rewriting itself on the fly? It feels to me that you're almost building a lovable for backend services. I've seen a few OS projects like this (e.g. MotiaDev) But none has executed this perfectly yet.</p>
]]></description><pubDate>Wed, 11 Feb 2026 23:34:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=46982758</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46982758</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46982758</guid></item><item><title><![CDATA[New comment by vincentjiang in "Y Combinator CEO Garry Tan launches dark-money group to influence CA politics"]]></title><description><![CDATA[
<p>hate to see that tech leaders getting into politics</p>
]]></description><pubDate>Wed, 11 Feb 2026 20:56:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=46980823</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46980823</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46980823</guid></item><item><title><![CDATA[New comment by vincentjiang in "Claude Code is being dumbed down?"]]></title><description><![CDATA[
<p>It's nerfed to a point that it feels more like lawyer than a coding assistant now. We were arguing about an 3rd party API ToU for 1 hour last night. VSC Copilot executed it within 1 minute.</p>
]]></description><pubDate>Wed, 11 Feb 2026 20:55:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=46980804</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46980804</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46980804</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Agent framework that generates its own topology and evolves at runtime"]]></title><description><![CDATA[
<p>To expand on the "Self-Healing" architecture mentioned in point #2:<p>The hardest mental shift for us was treating Exceptions as Observations. In a standard Python script, a FileNotFoundError is a crash. In Hive, we catch that stack trace, serialize it, and feed it back into the Context Window as a new prompt: "I tried to read the file and failed with this error. Why? And what is the alternative?"<p>The agent then enters a Reflection Step (e.g., "I might be in the wrong directory, let me run ls first"), generates new code, and retries.<p>We found this loop alone solved about 70% of the "brittleness" issues we faced in our ERP production environment. The trade-off, of course, is latency and token cost.<p>I'm curious how others are handling non-deterministic failures in long-running agent pipelines? Are you using simple retries, voting ensembles, or human-in-the-loop?<p>It'd be great to hear your thoughts.</p>
]]></description><pubDate>Wed, 11 Feb 2026 19:43:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=46979829</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46979829</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46979829</guid></item><item><title><![CDATA[Show HN: Agent framework that generates its own topology and evolves at runtime]]></title><description><![CDATA[
<p>Hi HN,<p>I’m Vincent from Aden. We spent 4 years building ERP automation for construction (PO/invoice reconciliation). We had real enterprise customers but hit a technical wall: Chatbots aren't for real work. Accountants don't want to chat; they want the ledger reconciled while they sleep. They want services, not tools.<p>Existing agent frameworks (LangChain, AutoGPT) failed in production - brittle, looping, and unable to handle messy data. General Computer Use (GCU) frameworks were even worse. My reflections:<p>1. The "Toy App" Ceiling & GCU Trap
Most frameworks assume synchronous sessions. If the tab closes, state is lost. You can't fit 2 weeks of asynchronous business state into an ephemeral chat session.<p>The GCU hype (agents "looking" at screens) is skeuomorphic. It’s slow (screenshots), expensive (tokens), and fragile (UI changes = crash). It mimics human constraints rather than leveraging machine speed. Real automation should be headless.<p>2. Inversion of Control: OODA > DAGs
Traditional DAGs are deterministic; if a step fails, the program crashes. In the AI era, the Goal is the law, not the Code. We use an OODA loop to manage stochastic behavior:<p>- Observe: Exceptions are observations (FileNotFound = new state), not crashes.<p>- Orient: Adjust strategy based on Memory and - Traits.<p>- Decide: Generate new code at runtime.<p>- Act: Execute.<p>The topology shouldn't be hardcoded; it should emerge from the task's entropy.<p>3. Reliability: The "Synthetic" SLA
You can't guarantee one inference ($k=1$) is correct, but you can guarantee a System of Inference ($k=n$) converges on correctness. Reliability is now a function of compute budget. By wrapping an 80% accurate model in a "Best-of-3" verification loop, we mathematically force the error rate down—trading Latency/Tokens for Certainty.<p>4. Biology & Psychology in Code
"Hard Logic" can't solve "Soft Problems." We map cognition to architectural primitives:
Homeostasis: Solving "Perseveration" (infinite loops) via a "Stress" metric. If an action fails 3x, "neuroplasticity" drops, forcing a strategy shift.
Traits: Personality as a constraint. "High Conscientiousness" increases verification; "High Risk" executes DROP TABLE without asking.<p>For the industry, we need engineers interested in the intersection of biology, psychology, and distributed systems to help us move beyond brittle scripts. It'd be great to have you roasting my codes and sharing feedback.<p>Repo: <a href="https://github.com/adenhq/hive" rel="nofollow">https://github.com/adenhq/hive</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46979781">https://news.ycombinator.com/item?id=46979781</a></p>
<p>Points: 107</p>
<p># Comments: 35</p>
]]></description><pubDate>Wed, 11 Feb 2026 19:39:43 +0000</pubDate><link>https://github.com/adenhq/hive/blob/main/README.md</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46979781</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46979781</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>100% usability right now is not optimal. I'm releasing a new version of the documentation and installation process today. Sync and pull tomorrow, it should be  a lot easier.</p>
]]></description><pubDate>Tue, 10 Feb 2026 18:02:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=46964041</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46964041</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46964041</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>I really appreciate your efforts!There're so many valuable use cases that people can deliver via your CRM integration (e.g. leads automation, qualification, scoring, engagement, reporting, etc) It'd be great to test your HubSpot integration and see if these use cases can be brought to life.</p>
]]></description><pubDate>Tue, 10 Feb 2026 18:00:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=46964012</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46964012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46964012</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>That's indeed very hard - we're building runtime captures and they are fed to the coding agent (claude code, cursor, etc) to update the agents' codes. However, the runtime data needs to be structured in a certain way so the coding agents won't get confused. We're testing this a lot right now.</p>
]]></description><pubDate>Tue, 10 Feb 2026 17:50:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=46963860</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46963860</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46963860</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>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.</p>
]]></description><pubDate>Tue, 10 Feb 2026 17:44:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=46963749</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46963749</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46963749</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>Thanks for you contribution so far! Yea, I saw that and I'm testing it today.</p>
]]></description><pubDate>Tue, 10 Feb 2026 17:39:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=46963676</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46963676</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46963676</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>Here's the full story behind this project:<p>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.<p>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.<p>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.<p>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<p>- Proactive Reasoning (anticipating future needs or consequences)<p>- Memory & Experience (events affecting himself/herself)<p>- Judgment (based on experience)<p>- Tools & Skills (capabilities to execute)<p>- Reactive Adaptiveness (handling immediate roadblocks)<p>- Contextual Communication (articulating intent and collaborating with others)<p>- Character & Traits (consistent behavioral biases: Risk profile, Integrity, Persistence)<p>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. (<a href="https://github.com/adenhq/hive" rel="nofollow">https://github.com/adenhq/hive</a>).</p>
]]></description><pubDate>Tue, 10 Feb 2026 17:33:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=46963555</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46963555</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46963555</guid></item><item><title><![CDATA[New comment by vincentjiang in "Show HN: Open sourcing our ERP (Sold $500k contracts, 7k stars)"]]></title><description><![CDATA[
<p>I'll share a more detailed story behind this shortly.I'm one of the main contributors.</p>
]]></description><pubDate>Tue, 10 Feb 2026 16:50:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46962707</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46962707</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46962707</guid></item><item><title><![CDATA[New comment by vincentjiang in "Ask HN: What are you working on? (February 2026)"]]></title><description><![CDATA[
<p>I've been thinking about this a lot after shutting down my previous startup. One problem I've identified is that tools like Claude Co-worker or Claw Bots will never truly deliver reliable agentic outcomes for people due to the fact that scaling a human-like agent is paradoxically harder than scaling a script.<p>- I see a lot error propagation with CUAs<p>- A GUI is very flakey and it produces a lot action latency<p>- There're hidden states behind each screen that CUAs simply can't capture<p>- Token consumption is absurd (but I guess this will alleviate as LLMs get cheaper)<p>What do you guys think? Any good ideas what'd be a good counter to this?</p>
]]></description><pubDate>Mon, 09 Feb 2026 03:48:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=46941374</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=46941374</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46941374</guid></item><item><title><![CDATA[New comment by vincentjiang in "Apple plans a slow, appointment-only rollout of Vision Pro"]]></title><description><![CDATA[
<p>I think the overall delayed and selective launch is attributed to the reasons you mentioned. They know they'll have to get this right 17 years after the initial iphone was released. I'd probably do the same thing if I were the head of commercialization/distribution. If they screwed this up (selling a few hundred Ks of units on a global release in the first few months), the stock will get hammered</p>
]]></description><pubDate>Tue, 11 Jul 2023 02:28:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=36675747</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=36675747</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36675747</guid></item><item><title><![CDATA[New comment by vincentjiang in "Coinbase employees petition to remove execs"]]></title><description><![CDATA[
<p>Brian, I feel your urge to solve this huge issue. Though I think only Elon gets to do this (with a tweet storm) while getting away with it  The mere mortals should probably solve it in meetings. Hope you can weather through this and wish you the best</p>
]]></description><pubDate>Sun, 12 Jun 2022 08:54:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=31712954</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=31712954</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31712954</guid></item><item><title><![CDATA[Acho Marketplace (YC W20) – An Open Data Marketplace]]></title><description><![CDATA[
<p>Article URL: <a href="https://marketplace.acho.io/">https://marketplace.acho.io/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=31327728">https://news.ycombinator.com/item?id=31327728</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 10 May 2022 14:44:36 +0000</pubDate><link>https://marketplace.acho.io/</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=31327728</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31327728</guid></item><item><title><![CDATA[Launch HN: Acho (YC S20) – No code data warehouse for big data]]></title><description><![CDATA[
<p>Hi HN!<p>This is Vincent, Chen and Sam here from Acho https://acho.io/. We've built a data warehouse for you to access big data with no code.<p>As a former financial analyst, I used to spend a lot of time building spreadsheets but always wanted to step up my game and gain more understanding in big data. Then I was faced with a slew of "big data" tools such as Hadoop, Hive, Redshift, Kafka etc. They all seemed useful but I could not possibly learn them all since I'm not a full stack SDE or data scientist. This frustration led me conceiving this idea about building a data warehouse for non-programmer like me. Luckily I met Chen, who's been building big data pipelines for big corporates for years.<p>This new data warehouse I'd imagined should integrate with data seamlessly, transform/clean data like an Excel, update data maintenance-free, and send data with permission controls all without me having to understand distributed computing, database architecture, schema design, ETL, or SQL on a deep level.<p>Then we built Acho. Here's how Acho works. First, you can set up an integration with a production system (eg. .CSV, MySQL, Salesforce etc.). Then you can load them into an Acho project. On each project, you can transform, update, and share your tables all without coding. Lastly, you can export data to a reporting UI, or BI tool.<p>Currently, Acho monetizes through monthly subscription on usage. We keep a free tier so you can test Acho out. When you process data on Acho, all data is encrypted in a batched file accessible to no one but you. We disclose detailed security practices, compliances and policies to our users.<p>Building a data warehouse for everyone is not easy, but we're constantly adding more services to the product. From additional integrations, transformation widgets, built-in BI tools, to pipeline management, we love to know what you might need and we'll get it built as soon as you need it.<p>Vincent, Chen, Sam</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=25336179">https://news.ycombinator.com/item?id=25336179</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 07 Dec 2020 19:36:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=25336179</link><dc:creator>vincentjiang</dc:creator><comments>https://news.ycombinator.com/item?id=25336179</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=25336179</guid></item></channel></rss>