frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Doom-ASCII: Doom in the Terminal

https://github.com/wojciech-graj/doom-ascii
1•tanelpoder•5s ago•0 comments

Google Did Not Unilaterally Decide to Kill XSLT

https://meyerweb.com/eric/thoughts/2025/08/22/no-google-did-not-unilaterally-decide-to-kill-xslt/
1•bkardell•1m ago•0 comments

Modal built their own container runtime, file system, GPU solver, and more [video]

https://www.youtube.com/watch?v=pLBxrY8RX6w
1•birdculture•1m ago•0 comments

Show HN: Open-source web browser with GPT-OSS

https://github.com/browseros-ai/BrowserOS
1•felarof•3m ago•0 comments

Debugging the Human Layer

http://blog.joac.com.ar/2025/08/debugging-human-layer-how-philosophy.html
1•joac•3m ago•0 comments

What Went Wrong with Social Media?

https://arun626588.substack.com/p/what-went-wrong-with-social-media
1•arunbains•3m ago•0 comments

US banks lobby regulators for national standards to curb state influence

https://www.reuters.com/legal/transactional/us-banks-lobby-regulators-national-standards-curb-state-influence-sources-say-2025-08-22/
1•petethomas•5m ago•0 comments

Math Not Required (2023)

https://programmersstone.blog/posts/math-not-required/
2•zdw•5m ago•0 comments

AI Helps UK Woman Rediscover Lost Voice After 25 Years

https://www.barrons.com/news/ai-helps-uk-woman-rediscover-lost-voice-after-25-years-32c93bda
1•speckx•6m ago•0 comments

Criminal background checker APCS faces data breach

https://www.theregister.com/2025/08/22/apcs_breach/
1•rntn•7m ago•0 comments

Why Publishers Care More About AI 'Grounding' Than Training Deals

https://digiday.com/media/wtf-is-ai-grounding-licensing-and-why-do-publishers-say-it-matters-over-training-deals/
2•petethomas•8m ago•0 comments

Designer – Generate UI with one prompt for free on an infinite canvas

https://designer.tesslate.com
1•u-mesh•10m ago•0 comments

Jokes on You, We All Use Juicero Now

https://idiallo.com/blog/we-all-use-juicero-now
2•foxfired•10m ago•0 comments

Cursor charges me $10.67 for a single sonnet call, a mod on X removed my post

https://old.reddit.com/r/cursor/comments/1mwyyp9/cursor_charges_me_1067_for_a_single_sonnet_call_a
1•AgentMatrixAI•10m ago•0 comments

WDC's unreleased W65C832 (32-bit 6502) CPU implemented in an FPGA

https://github.com/mikeakohn/w65c832
2•lproven•13m ago•0 comments

TikTok to layoff hundreds of UK content reviewers for AI

https://www.bbc.com/news/articles/cgjyp48dp21o
3•kenjackson•14m ago•0 comments

The dangers of the JDBC bottleneck in Trino

https://www.starburst.io/blog/jdbc-trino-starburst/
1•abadid•14m ago•1 comments

Texas Instruments' $60B U.S. project, the next iPhone chips fabric

https://www.cnbc.com/2025/08/22/apple-will-make-chips-at-texas-instruments-60-billion-us-project.html
1•giuliomagnifico•15m ago•0 comments

A Cheeky Pint with Coinbase CEO Brian Armstrong [video]

https://www.youtube.com/watch?v=JeVny5KHj4g
1•dgs_sgd•15m ago•0 comments

Non-Consensual Technology

https://blog.erlend.sh/non-consensual-technology
1•erlend_sh•17m ago•0 comments

Artificial light has essentially lengthened birds' day

https://www.npr.org/2025/08/21/nx-s1-5507165/light-pollution-bird-day-hour-longer
2•speckx•17m ago•0 comments

CFPB: Personal Financial Data Rights Reconsideration

https://www.federalregister.gov/documents/2025/08/22/2025-16139/personal-financial-data-rights-reconsideration
1•impish9208•18m ago•0 comments

Project Orchestration Agents

https://substack.com/inbox/post/171603038
1•mathattack•19m ago•0 comments

The Oak Architecture: A Vision of SuperIntelligence from Experience, Rich Sutton

https://www.youtube.com/watch?v=gEbbGyNkR2U
1•wavelander•21m ago•0 comments

Textplot DuckDB Extension

https://query.farm/duckdb_extension_textplot.html
1•kermatt•21m ago•0 comments

Embedding Wren in Hare

https://drewdevault.com/2025/08/20/2025-08-20-Hare-and-Wren.html
2•als0•24m ago•1 comments

Show HN: AI Fantasy Football Analyst

https://sourcetable.com/fantasy-football
1•mceoin•24m ago•0 comments

Nvidia CUDA Toolkit 13.0 Is Out

https://www.servethehome.com/nvidia-cuda-toolkit-13-0-is-out/
1•PaulHoule•26m ago•0 comments

Was It Something I Said?

https://www.thirdway.org/memo/was-it-something-i-said
1•EvgeniyZh•27m ago•0 comments

Waymo granted first permit to begin testing autonomous vehicles in New York City

https://www.cnbc.com/2025/08/22/waymo-permit-new-york-city-nyc-rides.html
37•achristmascarl•27m ago•1 comments
Open in hackernews

Qoder Quest Mode: Task Delegation to AI Agents

https://qoder.com/blog/quest-mode
51•firasd•2h ago

Comments

firasd•2h ago
Recently I started delegating small bug fixes and feature requests to a coding agent (Qoder) running locally on my repo. In my setup, it drafts specs collaboratively, edits files, runs unit tests, builds the project, and verifies results before I review diffs. In many cases, the first candidate passed all tests, which surprised me given my experience with AI coding tools so far.

Concrete example of the sort of work I’ve been delegating: a user-reported issue like this one in Nacos https://github.com/alibaba/nacos/issues/13678.

My workflow now looks like this:

Spec-first, co-authored with the agent

- I start by pasting the user’s GitHub issue/feature request text verbatim into the chat.

- The agent extracts requirements and proposes a structured spec (inputs/outputs, edge cases, validation).

- I point out gaps or constraints (compatibility, performance, migration); the agent updates the spec.

- We iterate 1–3 rounds until the spec is tight. That spec becomes the single source of truth for the change.

After that, the agent processes the task:

1) Action flow: It plans To‑dos from the agreed spec, edits code across files, and shows a live diff view for each change.

2) Validation: It runs unit tests and a full compile/build, then iterates on failures until green.

3) Task report: I get a checklist of what changed, what tests ran, and why the solution converged.

Engineering details that made this work in a real codebase

- Codebase‑aware retrieval: Beyond plain embeddings, it combines server-side vector search with a local code graph (functions/classes/modules and their relationships). That surfaces call sites and definitions even when names/text don’t match directly.

- Repo Wiki: It pre-indexes architectural knowledge and design docs so queries like “where does X get validated?” don’t require expensive full-text scans every time.

- Real-time updates: Indexing and graph stay in sync with local edits and branch changes within seconds, so suggestions reflect the current workspace state.

- Autonomous validation: It tests and build steps run automatically, failures are fixed iteratively, and only then do I review diffs.

- Memory: It learns repo idioms and past errors so repeated categories of fixes converge faster.

What went well

- For several recent fixes, the first change set passed tests and compiled successfully.

- The agent often proposed adjacent edits (docs/tests/config) I might have postponed, reducing follow-up churn.

- Less context switching: The “spec → change → validate” loop happens in one place.

Where it needed human oversight

- Ambiguous specs. If acceptance criteria are fuzzy, the agent optimizes for the wrong target. Co-authoring the spec quickly fixes this.

- Flaky tests or environment-specific steps still need maintainer judgment.

- Non-functional constraints (performance, API stability, compatibility) must be stated explicitly.

I’m also interested in perspectives from OSS maintainers and others who have tried similar setups—what evidence would make AI‑assisted PRs acceptable, and where these approaches tend to break (for example monorepos, cross‑language boundaries, or test infrastructure).

David__Kim•47m ago
I might give a try, if this really works like what you've said
Qamar109•28m ago
This is your good job this is your good work
lakdamar12•22m ago
Wow that's awesome
ksm022•12m ago
Good
ksm022•12m ago
Food