I don't know how they can justify 250 USD / month bill. let alone 1000 USD / month.
We prevent way more than that from being added to the cloud bill by showing engineers cost estimates that enables them to make better decisions pre-deploy - e.g. when an engineer knows the IOPS option on their EC2 instance is costing them a lot, they're more likely to reduce that or not use that in dev envs vs just copy/paste what's on production. There's an ROI report on infracost.io that shows how we measure the co…
Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
31–40 of 41 posts
Re: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
#32Re: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
#33Re: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
#34Re: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
#35I'm wondering why all these token-saving solutions focus their benchmarks exclusively on simple Q&A tasks. If their tools truly saved money in real, long-term programming tasks, they would have definitely published those benchmark results instead of just Q&A tests, especially since a simple code editing benchmark with a hidden eval harness is very easy to design. Personally, asking a coding agent questions without an…
Re: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
#36how are you handling errors? when an agent gets a flag wrong, cli help text is usually massive. could eat a lot of the savings on retries.
Which is also how we've gone about working out how to improve the CLI. It's usually one or more of:
* rethinking the subcommands and hierarchy to something more obvious and aligned to the task
* providing clear documentation upfront (i.e, in the skills file)
* keeping help text concise, but not too concise. You can't assume the reader is already a power user and it's simply looking for a reminder/reference. So include usage examples for common use cases
* where possible on errors, suggest the likely commands the person meant.
* In general offer affordances on what likely next steps will be. This goes for help output, success, and errors.
> cli help text is usually massive
That doesn't have to be true.
> could eat a lot of the savings on retries
This doesn't have to be true either. You don't need to give the same full help output on every single error, once they've got it once they've got it. Also the size of the entire help output for most CLIs is generally insignificant compared to even just a couple of source files in most repos.
Re: Show HN: Cost.dev (YC W21) – making agents cost-aware and cheaper to call
#37I'm wondering why all these token-saving solutions focus their benchmarks exclusively on simple Q&A tasks. If their tools truly saved money in real, long-term programming tasks, they would have definitely published those benchmark results instead of just Q&A tests, especially since a simple code editing benchmark with a hidden eval harness is very easy to design. Personally, asking a coding agent questions without an…
I did exactly that and it's all covered in the blog post. There's no hidden eval harness, it's in the same codebase as the CLI so others can reproduce and/or extend as they see fit. It also includes code editing tasks and measures them too. The only asterisk on the code editing is I didn't automate the reporting of accuracy because the test only uses Claude and having it judge it's own work seemed dubious, and having…