Feed aggregator

Cybersecurity M&A Roundup: 34 Deals Announced in January 2026

Security Week - Mon, 02/09/2026 - 8:23am

Significant cybersecurity M&A deals announced by CrowdStrike, Infoblox, JumpCloud, LevelBlue, OneSpan, and Radware.

The post Cybersecurity M&A Roundup: 34 Deals Announced in January 2026 appeared first on SecurityWeek.

Categories: SecurityWeek

Botkeeper Shuts Down

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

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

Hacker News - 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

Hacker News - 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

Hacker News - 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?

Hacker News - 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

Hacker News - 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

Show HN: IndexedDB Collection for TanStack DB

Hacker News - Mon, 02/09/2026 - 7:59am

Claude and I built an IndexedDB-backed collection adapter for TanStack DB that provides persistent local storage, with automatic cross-tab synchronization.

I'm a big fan of TanStack DB library but it only had in-memory and localStorage collections. I needed something that could handle larger datasets, and sync across tabs — soI got Claude to build this.

I've been using this in my side projects — a Google Reader clone (https://github.com/sonnes/reader) and a communication assistant for people with ALS/MND (https://github.com/sonnes/september). I have opened a PR to the TanStack DB monorepo (https://github.com/TanStack/db/pull/1179) and have also published as a standalone package.

npm: https://www.npmjs.com/package/indexeddb-collection

GitHub: https://github.com/sonnes/indexeddb-collection

PR: https://github.com/TanStack/db/pull/1179

Give it a try and let me know what you think.

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

Points: 1

# Comments: 0

Categories: Hacker News

Pages