Hacker News

Subscribe to Hacker News feed
Hacker News RSS
Updated: 17 min 21 sec ago

Botkeeper Shuts Down

Mon, 02/09/2026 - 8:17am
Categories: Hacker News

Show HN: Browser Terminal Use – A Local-to-Cloud Execution Bridge for LLM Agents

Mon, 02/09/2026 - 8:14am

I built Browser Terminal Use for AI Agents.

Project: https://github.com/chaokunyang/browser-terminal-use

The goal is simple: let an Agent run iterative loops from local code, but execute commands inside a browser-hosted cloud terminal.

With this tool, an Agent can:

- send commands from local CLI - execute inside a bound browser terminal tab - stream output in real time - get the exact remote exit code - use queue / timeout / cancel for stable loops

The key value for me is building a cloud-side verifiable execution environment for local LLM Agents:

- execution happens in a remote/browser terminal context - results are observable and auditable from local workflows - command lifecycle is structured, deterministic, and script-friendly

It is also very useful when using frontier models locally to debug cloud GPU issues (driver/toolchain/env mismatches, flaky jobs, setup regressions) while keeping a tight local Agent loop.

Would love feedback on Agent workflows, reliability across terminal vendors, and ideas for stronger verification primitives.

Comments URL: https://news.ycombinator.com/item?id=46944864

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Claude-Pipe – A 1k LOC Bridge from Claude Code to Telegram/Discord

Mon, 02/09/2026 - 8:12am

I recently tried using OpenClaw for my agentic workflows. It is an impressive project, but the complexity was a hurdle for my use case. It contains over 400,000 lines of code and requires significant configuration. I found myself managing the infrastructure more than the tasks.

I wanted a minimalist tool that followed the Unix philosophy.

I built Claude-Pipe. It is a 1,000-line bridge that connects Anthropic’s Claude Code CLI to Telegram or Discord.

Technical details:

Inherits existing state. It builds on top of your local Claude Code setup. This means all your previously configured skills, plugins, and sub-agents work out of the box without extra setup.

Small codebase. At roughly 1,000 lines, the entire project is auditable in a few minutes. This is important for security when giving an LLM access to a terminal or private APIs.

VPS deployment. I run this on a private VPS. It provides a persistent, secure environment for sensitive integrations, such as the Gmail-reading skill I use to scan subjects via mobile.

Model flexibility. The CLI allows routing to different models, including third-party options like MiniMax-M2.1, while keeping the same interface.

The goal was to stop reinventing the platform and just create a pipe for the tools that already work.

Link: https://github.com/georgi/claude-pipe

Comments URL: https://news.ycombinator.com/item?id=46944855

Points: 1

# Comments: 0

Categories: Hacker News

First Proof

Mon, 02/09/2026 - 8:07am

Article URL: https://1stproof.org/

Comments URL: https://news.ycombinator.com/item?id=46944820

Points: 1

# Comments: 0

Categories: Hacker News

Ask HN: Will Tesla ever be truly self driving?

Mon, 02/09/2026 - 8:07am

Comments URL: https://news.ycombinator.com/item?id=46944819

Points: 1

# Comments: 1

Categories: Hacker News

Show HN: Codesession-CLI – Teach your AI agent to track its own token costs

Mon, 02/09/2026 - 8:06am

I built a CLI that gives AI coding agents cost visibility.

Problem: Agents like OpenClaw burn tokens with no per-task cost tracking. You see an aggregate bill, not "this refactor cost $3.20 and that bug fix cost $0.12."

Solution: codesession-cli is a CLI + OpenClaw skill. The agent calls `cs start` at task beginning, `cs log-ai` after each API call (cost auto-calculated from a built-in pricing table of 17+ models), and `cs end` when done. File changes and git commits are tracked via git diff.

Setup: npm i -g codesession-cli clawhub install codesession

No manual work after install the agent follows the skill instructions.

Tech: TypeScript, SQLite (WAL mode, better-sqlite3), Commander.js. All data local (~/.codesession). JSON output on every command for machine consumption. Structured errors, schema versioning for forward compat.

MIT. Looking for feedback on what stats/queries would be most useful.

GitHub: https://github.com/brian-mwirigi/codesession-cli

Comments URL: https://news.ycombinator.com/item?id=46944815

Points: 1

# Comments: 1

Categories: Hacker News

Pages