惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Martin Fowler
Martin Fowler
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
C
Check Point Blog
H
Help Net Security
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
P
Proofpoint News Feed
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Vercel News
Vercel News
S
SegmentFault 最新的问题
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
有赞技术团队
有赞技术团队
博客园_首页
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Release v2026.5.0 · fronalabs/frona
syncerx · 2026-05-11 · via Hacker News - Newest: "AI"

The first public release of Frona, a self-hosted personal AI agent platform built around a single Rust engine, a single policy language, and per-principal sandboxing.

You deploy it on your own infrastructure, point it at the LLM provider of your choice, and create autonomous agents that browse the web, run code, build apps, make phone calls, talk to messaging channels, delegate to each other, and remember context across conversations, all with policy-gated access to your files, network, and credentials.

Get started

Security model

  • Per-principal sandboxing. Every actor (agent, MCP server, deployed app, channel) is its own principal with its own policies. CLI tool calls, MCP servers, and apps run in sandboxed Linux processes with policy-driven syscall, filesystem, and network filtering, spawned and reaped on demand. No Docker container per agent and no daemon to manage.
  • One policy engine for tools and isolation. Tool authorization, file path access, network destinations, and port binds are all written in the same Cedar-based policy language and evaluated at one decision point.
  • Credential vault. Agents request secrets at the moment they're needed and you approve or deny in real time. 1Password, Bitwarden, HashiCorp Vault, KeePass, and Keeper are supported. Credentials never enter agent memory or LLM provider traffic.
  • Isolated browser profiles. Each user (and each credential context) gets its own browser state. Sessions and cookies are not shared across users.
  • Dual LLM dispatch for inbound messages. Untrusted channel inbounds can be routed to a quarantined LLM with a restricted tool registry, so a hostile message can't talk the agent into running tools or leaking data on its behalf.
  • Self-hosted by design. Your data lives on your servers. You pick the LLM provider; traffic goes directly from your instance to it.

Agents

  • Built-in agents at install time: Assistant, Researcher, Developer, Receptionist. Custom agents are first-class.
  • Agent-to-agent delegation with structured handoff and result return.
  • Persistent memory with automatic compaction and deduplication. User-scoped facts are shared across an owner's agents; agent-scoped facts stay private.
  • Spaces group related conversations and feed summarized cross-chat context into new ones.
  • Skills package reusable instructions. Install built-in skills, share across agents, or scope to one.

Tools

  • Browser automation via Browserless with persistent profiles.
  • Web search via SearXNG, Tavily, or Brave Search.
  • Code execution: sandboxed shell, Python, and Node.js with per-principal filesystem, network, and resource caps.
  • App deployment: agents build and deploy web apps and services with an approval gate before anything goes live, including auto-hibernation of idle apps and supervised restart.
  • Voice calls: outbound phone via Twilio with speech recognition and DTMF navigation.
  • Scheduling and heartbeats for cron-driven tasks and ongoing checklists.
  • Notifications surface task completion, app deployments, and credential approvals into a top-bar feed.

Channels and signals

  • Channels connect an agent to messaging providers so the same agent (same memory, same tools) follows you outside the web UI. Telegram and SMS at launch; pairing flows lock channels to your devices by default.
  • Signals let an agent pause and wait for a matching inbound (a 2FA code, a reply, a class of message) and resume automatically. Continuous-mode signals act as structured monitors.
  • Per-Space SSE delivery and policy-gated receive_message / receive_signal actions.

MCP

  • Install Model Context Protocol servers from the public registry in one click. See the MCP guide.
  • Bridge mode advertises a single mcpctl CLI to the LLM instead of exposing every MCP tool individually, saving thousands of tokens per turn on agents with many servers connected.
  • Each MCP server is its own sandboxed principal with its own filesystem, network, and resource policy.

Identity and access

  • Local accounts with Argon2 password hashing and JWT sessions (cookie, header, or query param).
  • OpenID Connect SSO for Google, Keycloak, and other OIDC providers.
  • Ownership checks on every user-owned resource.

Platform and runtime

  • Single rootless OCI container runs the API server, embedded database, scheduler, and tool execution. No per-agent containers, even at scale.
  • Embedded SurrealDB with RocksDB storage; UUIDv7 record keys for monotonic ordering.
  • Real-time streaming of token, tool-call, and tool-result events over Server-Sent Events.
  • Docker Compose and Kubernetes deployment examples included.

Providers at launch

  • LLM: Anthropic, OpenAI, Google Gemini, DeepSeek, Mistral, Cohere, xAI (Grok), Groq, OpenRouter, Together, Perplexity, Hyperbolic, Moonshot, Hugging Face, Mira, Galadriel, Ollama (local).
  • Search: SearXNG (self-hosted), Tavily, Brave Search.
  • Voice: Twilio.
  • Channels: Telegram, SMS.

License

Frona is released under the Business Source License 1.1. You can use, modify, and self-host it freely; the only restriction is that you may not use it to provide an AI agent platform as a service to third parties. The license converts to Apache 2.0 on 2029-02-28.