Live data from Hacker News

Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

bitboard.work

11–20 of 30 posts

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#11

First, I love this concept and I think your demo is great! Collaboration with existing harnesses makes a ton of sense. Just had a conversation with some folks in the non-tech world raving about using Claude. A few questions: - How do you think about competing with ChatGPT Canvas or Anthropic's artifacts, when these are shareable, native experiences in their products where users already work? - Is a "dashboard" limite…

Thanks! Non-OP BitBoard cofounder here. Would love to hear your thoughts when you get a chance to check it out.

> How do you think about competing with ChatGPT Canvas or Anthropic's artifacts, when these are shareable, native experiences in their products where users already work?

The flexibility is amazing for static content and playing around with visuals, the experience is just more like a whiteboard than a dashboard. It's hard to do both well in the same place. For reporting I want live connections, consistent logic, the ability to trace provenance, and a more opinionated starting point for the UI.

We started with an extremely flexible surface but there are just a ton of things you don't want to leave up to the agent to implement and we gradually layered those in. It's no fun having to prompt the agent to expose a "view source" affordance, "run" button, or working data labels. But it's a lot of fun building whatever visualization you want and generating a dashboard without a billion clicks in some SQL-abstraction UI.

> Is a "dashboard" limited to analytics or are you trying to expand it to include written reports?

We weakly support written reports today (technically possible with markdown blocks in dashboards for commentary) but will do more to support them in the future for exactly the reasons you called out.

We actually built a more notebook-like artifact for this but cut it to focus on dashboards since they seemed to be a bigger pain point for users. One-off reports can be hit or miss with a chat or coding agent today but static reporting is at least supported with some effort. Live reporting with connection infrastructure, provenance, etc. is much harder to pull together.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#13
Nice, I recently did a similar but much simpler thing and open-sourced it under MIT, maybe some bits and pieced will be useful https://github.com/eatmydata-org/eatmydata

For example, MIT-licensed sqlite vector search extension.

Overall, I have a orchestrator - sql coder - js coder - dashboards, all without backend, running locally in the browser. It's mostly tested on small analysis and question answering with Gemini Flash Lite, and the overall target was speed from question to answer, including data sharing and waiting.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#14
I do exactly this (and more since my role is much broader and so is my approach) as a fractional head of product, data, and operations for multiple companies all in healthcare (fast growing self-funded to series D/IPOing soon). I saw your initial launch and felt validated by you all working on it, and now I’m further validated by the pivot. I have more work than I can handle, so I’m happy to share tips. You can find me via a bit of googling my HN handle or just adding a dot com to the end.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#15

Nice, I recently did a similar but much simpler thing and open-sourced it under MIT, maybe some bits and pieced will be useful https://github.com/eatmydata-org/eatmydata For example, MIT-licensed sqlite vector search extension. Overall, I have a orchestrator - sql coder - js coder - dashboards, all without backend, running locally in the browser. It's mostly tested on small analysis and question answering with Gemini…

There are a lot of cool and useful things in there. What are you most excited about?

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#16
post #15

Nice, I recently did a similar but much simpler thing and open-sourced it under MIT, maybe some bits and pieced will be useful https://github.com/eatmydata-org/eatmydata For example, MIT-licensed sqlite vector search extension. Overall, I have a orchestrator - sql coder - js coder - dashboards, all without backend, running locally in the browser. It's mostly tested on small analysis and question answering with Gemini…

There are a lot of cool and useful things in there. What are you most excited about?

Fast response. I can upload Excel/csv and iterate under 10 seconds from question to result. Doing same thing in Claude with 10x less data takes 5 minutes.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#17
post #15

Earlier quoted context omitted.

There are a lot of cool and useful things in there. What are you most excited about?

Fast response. I can upload Excel/csv and iterate under 10 seconds from question to result. Doing same thing in Claude with 10x less data takes 5 minutes.

I hear you on fast responses. One of the frustrations I've had using BI / data tools in the past was not being able to get local performance... which led to me exporting data to spreadsheets or local code. We're taking this to heart for BitBoard as well.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#18
post #14

I do exactly this (and more since my role is much broader and so is my approach) as a fractional head of product, data, and operations for multiple companies all in healthcare (fast growing self-funded to series D/IPOing soon). I saw your initial launch and felt validated by you all working on it, and now I’m further validated by the pivot. I have more work than I can handle, so I’m happy to share tips. You can find…

Appreciate the validation. Would be great to connect and exchange notes - will reach out directly.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#19
post #17

Earlier quoted context omitted.

Fast response. I can upload Excel/csv and iterate under 10 seconds from question to result. Doing same thing in Claude with 10x less data takes 5 minutes.

I hear you on fast responses. One of the frustrations I've had using BI / data tools in the past was not being able to get local performance... which led to me exporting data to spreadsheets or local code. We're taking this to heart for BitBoard as well.

Totally. One thing that all major AI vendors are not doing currently is merging server AI with edge devices.

For example, there is no way neither in Claude nor in ChatGPT to run your own WASM or JS or whatever AI produces directly in user's browser context as a tool/skill - there is no call site for that. The only option is remote server-side.

My whole idea was that AI can perfectly write SQL and dashboard code knowing only the shape of your data and not it's contents. With direct upload to vendor now we're forced to share the contents.

Re: Launch HN: BitBoard (YC P25) – Analytics Workspace for Agents

#20
post #17

Earlier quoted context omitted.

I hear you on fast responses. One of the frustrations I've had using BI / data tools in the past was not being able to get local performance... which led to me exporting data to spreadsheets or local code. We're taking this to heart for BitBoard as well.

Totally. One thing that all major AI vendors are not doing currently is merging server AI with edge devices. For example, there is no way neither in Claude nor in ChatGPT to run your own WASM or JS or whatever AI produces directly in user's browser context as a tool/skill - there is no call site for that. The only option is remote server-side. My whole idea was that AI can perfectly write SQL and dashboard code knowi…

I suspect stronger edge performance will come as a side-effect of local inference. Your point on edge tool calls is interesting and I'll think about that. Features like offline mode could be a great motivating reason. Re knowing the shape vs not the internals - I'm mixed here. It feels like there's always a sampling period where you have to look at contents in order to understand what you want. But edge AI (like antirez's work running DeepSeek on Mac) will let you have both. I'm excited for that future!
Post reply on HN