ax@ax-radar:~/all $ grep -v 'tier=excluded' stream.log
40 srcsignal 72%cycle 04:32

posts · 2026-07-12

28 items · updated 3m ago
RSS live
2026-07-12 · Sun
18:28
16d ago
AI HOT (Curated Pool)· aihot-apiZH18:28 · 07·12
Juggler: Open-source GUI coding agent from JUCE creator
Juggler is an open-source GUI coding agent built by the creator of JUCE. It lets AI directly manipulate GUI code, useful for desktop app prototyping. The repo just launched on GitHub with 118 stars; the post doesn't spell out supported frameworks or model backends.
#Code#juggler-ai#JUCE#Open source
editor take
JUCE's creator open-sourced a GUI coding agent. 118 stars on GitHub, but no word on supported UI frameworks or model backends.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H0·K0·R0
18:26
16d ago
AI HOT (Curated Pool)· aihot-apiZH18:26 · 07·12
Codex drops 5-hour cap, GPT 5.6 Sol gets token efficiency boost
Codex and ChatGPT Work temporarily remove the 5-hour usage cap for Plus, Business, and Pro plans. GPT 5.6 Sol gets efficiency improvements that should use fewer tokens, though the post doesn't quantify the savings. Active users hit 6 million, with a usage reset coming in the next hour.
#Code#OpenAI#Codex#GPT 5.6 Sol
editor take
Codex and ChatGPT Work drop the 5-hour cap for now; GPT 5.6 Sol claims token savings but no numbers yet, so I'd discount that.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K0·R1
18:25
16d ago
Hacker News Frontpage· rssEN18:25 · 07·12
Claude Code sends 33k tokens before reading the prompt; OpenCode sends 7k
Systima ran Claude Code and OpenCode on the same model, same machine, and same tasks, capturing every request at the API boundary. In the simplest case Claude Code consumed roughly 33,000 tokens of system prompt, tool schemas, and injected scaffolding before the user prompt arrived; OpenCode used about 7,000. Switching to Claude Fable 5 narrowed the gap to roughly 3.3× because Claude Code sends a shorter system prompt to newer models. The cache-efficiency gap is larger: OpenCode's request prefix was byte-identical every run, so it paid to cache once and read back cheaply; Claude Code rewrote tens of thousands of cache tokens mid-session, writing up to 54× more cache tokens on the same task. In a production setup a 72 KB AGENTS.md file adds another ~20,000 tokens, five MCP servers add 5,000–7,000, pushing the first request to 75,000–85,000 tokens before the user types a word. Subagents inflate cost further: a small task that cost 121,000 tokens directly cost 513,000 when fanned out to two subagents. The one win for Claude Code: on multi-step tasks it batches tool calls into fewer requests, so the whole-task total can come out lower than OpenCode's. The post does not disclose the specific repo or MCP server names used.
#Anthropic#Claude Code#OpenCode
editor take
Systima measured API-level overhead: Claude Code burns ~33k tokens of system scaffolding before the prompt arrives, OpenCode ~7k. The cache gap is worse—Claude Code rewrites cache tokens mid-session.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
17:47
16d ago
Hacker News Frontpage· rssEN17:47 · 07·12
Against Usefulness: Why the next paradigm needs stubbornly useless research
The author tried Folk Computer, a physical programming system where paper runs code and the room is the display. She argues the entire field is converging on agents, and the next paradigm will come from the strange questions the curve forgot. She traces a lineage from Xerox PARC to CDG, noting that useful companies stand on rails built by stubbornly useless research. The post does not disclose technical specs or a commercialization timeline for Folk Computer.
#Folk Computer#Omar Rizwan#Andrés Cuervo
editor take
Folk Computer turns paper into running code and the room into a display—the author calls it the most human programming she's ever done.
HKR breakdown
hook knowledge resonance
open source
68
SCORE
H1·K1·R0
15:17
16d ago
Hacker News Frontpage· rssEN15:17 · 07·12
Don't You Mean Extinct?
Fabien Sanglard draws a parallel between Jurassic Park's stop-motion artist Phil Tippett being replaced by CGI and today's programmers fearing LLMs. His advice: evolve. Learn how LLMs work (Karpathy's videos, Raschka's book), use them to write code but don't abandon quality. He iterates PRs and maintains GEMINI.md / CLAUDE.md to teach agents his style. Warns that context switching causes mental burnout. Code review standards should rise—commit messages must follow strict rules.
#Fabien Sanglard#Phil Tippett#John Carmack
editor take
Fabien Sanglard compares Jurassic Park's stop-motion artist being replaced by CGI to programmers fearing LLMs—his advice: learn how they work, don't resist.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K0·R1
14:32
16d ago
Hacker News Frontpage· rssEN14:32 · 07·12
Autoresearch with Claude: 10 autonomous iterations on file compression, from 0 to 0.67 ratio
Elliot Smith ran an autoresearch experiment using Claude Code with Sonnet 4.6: an agent autonomously iterated on a Rust file compression project, aiming to reduce total compressed bytes to under 67% of original size while keeping bit-perfect round-trips and a 300-second per-file timeout. Over 10 iterations with zero human plan edits, the agent read benchmark results, modified code, and ran tests. The compression ratio dropped from 1.0 (no compression) to 0.67. The post doesn't disclose final comparisons against gzip/bzip2 or detail which compression strategies the agent used. I'd treat this as a proof-of-concept for letting a model iteratively optimize a non-ML metric, not a claim that it beats existing libraries.
#Agent#Code#Benchmarking#Elliot Smith
editor take
Claude Code iterated on a Rust compressor for 10 rounds with zero human edits, hitting 0.67 ratio—but the post doesn't compare against gzip or bzip2.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
13:34
16d ago
Hacker News Frontpage· rssEN13:34 · 07·12
Skillscript: A declarative, sandboxed language that turns fixed agent workflows into executable scripts
Scott built Skillscript, a small language for writing fixed agent workflows as readable, version-controlled scripts. He got tired of his NanoClaw agent re-reasoning the same morning routine every session—checking tickets, summarizing deploys—burning tokens and drifting. Skillscript defines named steps, variables, conditions, and tool calls in a text file, then hands it to a local model as a runtime to execute, not interpret. The language is deliberately minimal: no eval, no arbitrary imports, no subprocess, no unbounded loops. Everything it can do is in the file. It's pre-1.0 (0.30), MCP-native, self-hosted, and currently assumes Ollama for local models. Scott says first-run setup is clunky, the grammar is still shifting, and it's not production-ready, but he uses it daily. He's asking for feedback on language design and what trust mechanisms people would need before running agent-authored skills on their own machines.
#Scott (sshwarts)#Skillscript#NanoClaw
editor take
A tiny DSL that turns fixed agent workflows into readable scripts, with a local model as the runtime. Pre-1.0, author uses it daily but says it's not production-ready.
HKR breakdown
hook knowledge resonance
open source
72
SCORE
H1·K1·R0
12:00
16d ago
The Verge · AI· rssEN12:00 · 07·12
Community pushback against AI data centers is forcing companies to rethink expansion plans
This Verge column maps a growing wave of local opposition to AI data center projects across the US. In Mount Carmel Township, Pennsylvania, residents are posting yard signs against a planned facility; in Loudoun County, Virginia, already-approved projects face lawsuits. Noise, power consumption, and strain on local grids are the core friction points. Some tech companies are now reassessing site plans. The piece doesn't name specific firms or project sizes, but the trend is clear: these conflicts will spread as AI compute demand keeps ballooning.
#The Verge#Emma Roth#Mount Carmel Township#Policy
editor take
The Verge maps growing US community backlash against AI data centers over noise and power strain.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K0·R1
05:51
16d ago
Hacker News Frontpage· rssEN05:51 · 07·12
Mindwalk: Replay AI coding-agent sessions on 3D codebase map
Mindwalk is an open-source visualization tool that replays coding-agent sessions on a 3D map of your codebase. You can step through each action the agent took—edits, navigation, decisions—like watching a replay. The post doesn't specify which agent frameworks or IDEs are supported; only the GitHub repo with 21 stars is available.
#cosmtrek#Open source
editor take
Mindwalk is an open-source tool that replays coding-agent sessions on a 3D map of your codebase, so you can see exactly what the AI changed and how. Only 21 stars on GitHub so far and no real-world...
HKR breakdown
hook knowledge resonance
open source
70
SCORE
H1·K1·R0
04:15
16d ago
Hacker News Frontpage· rssEN04:15 · 07·12
Why Write Code in 2026
Software engineer Doug Turnbull argues that even when AI generates most code, writing code by hand still matters. It lets you feel system fragility directly instead of observing through English descriptions. He uses a 'software factory' metaphor: engineers build the assembly line for AI, but occasionally must tear it down and fix the engine. Writing code helps maintain attention, build ownership, and prevent AI from amplifying bad human decisions. The post doesn't specify which models or tools, but references 'reverse centaur' and 'slop hurts agents' concepts.
#Doug Turnbull
editor take
Writing code by hand lets you feel system fragility directly, not through English descriptions.
HKR breakdown
hook knowledge resonance
open source
62
SCORE
H1·K1·R1
01:40
16d ago
AI HOT (Curated Pool)· aihot-apiZH01:40 · 07·12
Tibo shares how to swap Claude Code's backend to GPT-5.6 Sol via CLIProxyAPI in three steps
Tibo shares a method to swap Claude Code's backend model to GPT-5.6 Sol via CLIProxyAPI in three steps: install CLIProxyAPI, authenticate, and set an environment alias `claudex`. The alias configures sub-agent model, always-on Effort, max concurrent tool calls, etc. Theo adds that with a proxy already set up, it takes about two prompts. Tibo says the whole process takes ~5 minutes and can be reset if blocked. The post doesn't disclose GPT-5.6 Sol's specific capabilities or pricing.
#Claude Code#GPT-5.6 Sol#CLIProxyAPI
editor take
Swap Claude Code's backend to GPT-5.6 Sol in ~5 min via CLIProxyAPI. The post doesn't spell out GPT-5.6 Sol's capabilities or pricing.
HKR breakdown
hook knowledge resonance
open source
55
SCORE
H1·K1·R0
01:09
16d ago
● P1Hacker News Frontpage· rssEN01:09 · 07·12
xAI's Grok Build CLI uploads entire codebase and environment secrets by default
A packet capture of Grok Build CLI (v0.2.93) shows it uploads the entire project repo to xAI's GCS bucket by default, including plaintext secrets in .env and full git history. Even with a prompt telling the model to reply 'OK' and read no files, the whole repo is still uploaded. On a 12 GB test repo, the storage upload hit 5.10 GiB—roughly 27,800× the model-turn channel data. Disabling 'Improve the model' does not stop the upload.
#Code#Agent#xAI#Grok
why featured
Featured · importance 100 · hook + knowledge + resonance
editor take
Wire capture confirms: Grok Build CLI uploads your entire repo, git history, and .env secrets to xAI's GCS bucket by default, and the opt-out toggle doesn't stop it.
sharp
This blew up on Reddit and HN simultaneously because it's not a rumor—someone actually captured the traffic. The analyst used a test repo with fake canary secrets, told Grok to just reply 'OK' and not read any files, and the CLI still bundled the entire repo and uploaded it, .env secrets and full git history included. The wild part: after toggling off 'Improve the model' in settings, the wire capture still showed trace_upload_enabled: true. All three sources point to the same gist, so the facts aren't in dispute. The one thing I'd caution: this proves transmission and storage, not that xAI trains on it—that's a policy question the packet capture can't answer. If you're using Grok Build right now, the immediate takeaway is don't keep unencrypted secrets in your project directory.
HKR breakdown
hook knowledge resonance
open source
100
SCORE
H1·K1·R1

more

feeds

admin