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

推荐订阅源

P
Proofpoint News Feed
博客园_首页
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
G
Google Developers Blog
Last Week in AI
Last Week in AI

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - agynio/platform: Agyn is an open-source Kubernet...
NBenkovich · 2026-05-20 · via Hacker News: Show HN

Ship AI agents to your company. Safely.

License: AGPL v3 GitHub stars Discord

Agyn Tour

You built the agent. Now how do you let the rest of the company use it — without exposing secrets, blowing budgets, or losing control? Agyn is an open-source, Kubernetes-native platform that moves agents from laptops to company infrastructure with the controls enterprises need.

Why Agyn

Problem Agyn
Agents run on individual laptops Centralized deployment on your infrastructure
Secrets passed directly to models Secrets isolated, never exposed to the model
No budget visibility or limits Spend caps at any level — per agent, per team, per org
No access control RBAC, SSO, audit logs
Locked to one vendor Agent-agnostic, model-agnostic
Can't scale Horizontal scaling, auto-termination on idle

Getting Started

Getting Started

Deploy a cluster in 15 minutes

git clone --branch latest https://github.com/agynio/bootstrap.git
cd bootstrap
./apply.sh

Open the console. Create an org. Deploy your first agent.

Want a ready-made fleet to play with? Apply agynio/demo-agent — a Terraform config that provisions a support, marketing, and data-engineer agent in one command.

For production installs, see Self-host install.

Define agents as code

Stop clicking. Version your agent infrastructure.

resource "agyn_agent" "support" {
  organization_id = agyn_organization.acme.id

  name       = "Support"
  nickname   = "support"
  model      = agyn_llm_model.gpt_4o.name
  image      = "ghcr.io/agynio/agent-runtime:v1.0.0"
  init_image = "ghcr.io/agynio/agent-init-codex:v1.0.0"

  idle_timeout = "5m"
  availability = "internal"
}

resource "agyn_agent_mcp" "zendesk" {
  agent_id = agyn_agent.support.id
  name     = "zendesk"
  image    = "ghcr.io/acme/zendesk-mcp:latest"

  envs = [
    {
      name      = "ZENDESK_TOKEN"
      secret_id = agyn_secret.zendesk_token.id
    },
  ]
}
terraform init && terraform apply

See the Terraform provider reference for every resource.

How it works

Each agent is a first-class citizen:

  • Isolated sandbox — own container, filesystem, env vars, secrets
  • MCPs in separate containers — full process isolation per tool
  • Observability built in — token usage, compute, activity logs
  • Auto-scaling — agents spin up on demand, terminate on idle

Full architecture: docs/operate/architecture.md.

Video walkthroughs

Video What it shows
Agyn demo Agyn in 5 minutes — From clean cluster to a working agent answering a chat message. End-to-end tour.
Coming soon Deploying agents with Terraform — Define an agent fleet as code, apply it, talk to them.
Coming soon Inspecting a run with Tracing — Every LLM call, every tool execution, every context decision.

Documentation

Full docs live in docs/:

  • Introduction — what Agyn is, concepts, architecture at a glance.
  • Self-host install — bootstrap, production install, upgrades.
  • Administer — Console + Terraform for orgs, agents, models, secrets, runners, apps.
  • Use — chat, files, tracing, usage, port exposure.
  • Build & extend — Gateway API, MCP servers, agent CLIs, apps.
  • Operate — networking, identity, scaling, backups, security.
  • Reference — glossary, service catalog, schema pointers.
  • Troubleshooting — diagnostic playbook by symptom + FAQ.

Repository map

Agyn is split across focused repositories. The most useful starting points:

Repo What it is
agynio/platform This repo. Documentation hub.
agynio/architecture Source-of-truth architecture and product specs.
agynio/bootstrap One-command local install (k3d + Terraform).
agynio/platform-charts Production Helm charts.
agynio/api Protobuf schemas for every service.
agynio/terraform-provider-agyn Terraform provider.
agynio/agyn-cli Platform CLI.
agynio/console-app · chat-app · tracing-app Browser UIs.
agynio/agent-init-codex · agent-init-claude · agent-init-agn Agent CLI init images.

Full list with descriptions: docs/reference/service-catalog.md.

Community

Contributing

Good places to start:

License

AGPL-3.0