V1 banner
agynio agynio

V1

AI community

Description

Open-source multi-agent platform that structures software engineering as a coordinated team of specialized AI agents. It enforces strict role separation, isolated execution sandboxes, structured communication, and secrets management.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

[!NOTE] Quick setup: use the Bootstrap repo to run prebuilt Platform Server and UI images locally — https://github.com/agynio/bootstrap

Agyn Platform

A multi-service agents platform with a NestJS API, React UI, and filesystem-backed graph orchestration.

Product Demo

[![Watch the demo](https://img.youtube.com/vi/i4vZQ9vRvfY/maxresdefault.jpg)](https://www.youtube.com/watch?v=i4vZQ9vRvfY)

Results on SWE-bench Verified

Using a coordinated multi-agent team, agyn achieved **72.2% fully automated issue resolution** on SWE-bench Verified, the highest result among GPT-5–based systems.

Full paper: https://arxiv.org/pdf/2602.01465

Overview

Agyn Platform is a TypeScript monorepo that provides:

  • A Fastify/NestJS server exposing HTTP and Socket.IO APIs for agent graphs, runs, context items, and persistence.
  • A Vite/React frontend for building and operating agent graphs visually.
  • Local operational components via Docker Compose: Postgres databases, LiteLLM, Vault, a Nix cache proxy (NCPS), and observability (Prometheus, Grafana, cAdvisor).

Intended use cases:

  • Building agent graphs (nodes/edges) and storing them in a filesystem-backed graph dataset.
  • Running, monitoring, and persisting agent interactions and tool executions.
  • Integrating with LLM providers (LiteLLM or OpenAI) while tracking context/history.
  • Operating a local development environment with supporting infra.

Repository Structure

  • docker-compose.yml — Development infra: Postgres, agents-db, Vault (+ auto-init), NCPS, LiteLLM, Redis, notifications, notifications-gateway, cAdvisor, Prometheus, Grafana.
  • .github/workflows/
    • ci.yml — Linting, tests (server/UI), Storybook build + smoke, type-check build steps.
    • docker-ghcr.yml — Build and publish platform-server and platform-ui images to GHCR.
  • packages/
    • platform-server/ — NestJS Fastify API and Socket.IO server
      • src/ — Application modules (bootstrap, graph, nodes, llm, infra, etc.)
      • prisma/ — Prisma schema and migr