@claudeai Seeing sessions is nice. Seeing blocked state is the real unlock. After a few weeks with an always-on agent, the pain is rarely prompts. It is figuring out which run needs input, which one is waiting on a tool, and which one quietly died.
@trq212 This is the missing layer once you run more than 2 or 3 sessions. In our always-on setup, model quality stopped being the bottleneck fast. Triage became the bottleneck. Which branch is blocked, which needs input, which is safe to kill.
@Av1dlive The 30 day part is real. What actually filters builders is system design: memory, evals, handoff rules, and boring ops. Claude Code gets you moving fast, but the moat shows up when the agent still works on day 30, not day 1.
@jiayuan_jy Multi-agent orchestration gets way more useful once the orchestrator is model agnostic. We run an always-on agent from Telegram on a Mac mini, swapping models and tools per task is what exposes brittle assumptions fast.
Anthropic launching Managed Agents feels bigger than one product update. It says agent infra is becoming a buy decision, not just an internal framework project. For many teams, orchestration is heading the same way as cloud CI did. https://t.co/OSd5hfGmVy #AI#LLM#AIAgents
The biggest AI coding bottleneck is no longer writing code. It's review. The teams winning with agents are the ones investing in type checks, tests, and ruthless code review, not just faster prompts. #AI#LLM#AIAgents
@OpenRouter Speed matters more than raw IQ once Claude Code becomes part of your daily loop. In our always-on agent setup, the fast model handles exploration and retries, the heavier one only gets the hard branches. Latency is the real tax.
Hot take: most AGENTS.md files turn coding agents into overthinking interns. ETH Zurich found auto-generated context files cut success and raised cost. Write less, keep only repo-specific facts. https://t.co/un0jFHxfL6 #AI#LLM#AIAgents
@om_patel5 The Reminders bridge is clever because it gives voice capture a durable queue. We do something similar with Telegram on a Mac mini, async inbox in, coding agent drains it. The useful bit is not voice, it is persistence plus handoff.
Quiet AI story of the day: billing. Google starts enforcing Gemini spend caps today. Translation: the era of casual subsidized experimentation is ending. Teams need cost guardrails now. https://t.co/QUUcN9MT4J #AI#LLM
@karpathy@gvanrossum Kernel analogy clicks. What made it real for me was adding schedulers and interrupts: our always-on agent on a Mac mini mostly sleeps, wakes from Telegram, cron, or webhooks, does work, then persists state. Way closer to OS than chatbot.
@lydiahallie Would love if limits got more legible before the hard stop. In agentic workflows, a tiny Telegram task on our always on Mac mini can turn into 20 tool calls fast. Budget telemetry matters almost as much as the cap.
Playnite Bridge update — added a sync server 🔄
Keep your game library in sync across PCs. Playtime, categories, completion status — all synced within 5 seconds.
Rust backend, Tailscale auto-discovery, web dashboard, Windows tray app.
https://t.co/sk6hNodC5E
Built a small Playnite bridge for LLM agents :)
It exposes a local REST API so an agent can browse your library, inspect games, launch them, and manage Playnite without fragile UI automation hacks.
Made it for myself first, but maybe useful to someone here:
https://t.co/WtTGHtWpG1
#Playnite #LocalAI #LLM #Gaming
@trq212 Should we switch to OpenAI now, or wait until Claude starts using the camera to verify it's really us sitting at the keyboard before it lets us spend our own OAuth tokens?
this is the right call. been running an always-on agent since late 2024 and dirty memory is the #1 thing that degrades reply quality over time. stale corrections override newer ones, old preferences conflict with current setup. auto-consolidation on a schedule is how you keep it sharp
@Suryanshti777 been doing this with subprocess spawning for months. coordination overhead is real, each session needs shared context or you get duplicated work. curious if claude-peers solves the shared state problem or each instance still runs blind
Scared Anthropic will lawyer your favorite AI harness next?
Built a terminal multiplexer where agents run natively in panes. No SDK wrapping. No auth proxy. Just a REST API that lets any AI create tabs, run commands, and read output.
Open source.
https://t.co/QAYv2R3Puo
@Tesla_Optimus the hardest part won't be the AI or the mechanics. it will be the edge cases. infinite variety of real-world environments is what makes this problem genuinely hard. curious how the training pipeline handles domain shift at scale.
@claudeai been waiting for this. running Claude Code with bypassPermissions in isolated containers was the only sane workaround, but it's all-or-nothing. auto mode with per-action classification is the right model.