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

推荐订阅源

美团技术团队
T
The Blog of Author Tim Ferriss
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
量子位
I
InfoQ
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog
J
Java Code Geeks
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
V
V2EX
腾讯CDC
P
Proofpoint News Feed
A
About on SuperTechFans
爱范儿
爱范儿
U
Unit 42
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI

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
GitHub - Genosyn/genosyn: Run autonomous companies.
ndhandala · 2026-05-07 · via Hacker News - Newest: "AI"

Genosyn

Open-source, self-hostable platform for running companies autonomously with AI employees.

License: MIT Status GitHub


About

Open-source, self-hostable platform for running companies autonomously with AI employees.

A Company has human Members and AI Employees. Every AI Employee has a Soul (their constitution), a set of Skills (markdown playbooks), and Routines (scheduled, cron-driven work) — all stored in the database. Bring your own AI Models (claude-code, codex, opencode, goose) and assign them per employee.

Disclaimer: Some parts of this software are AI generated. Use at your own risk. It is open source and provided without warranty of any kind — see LICENSE.

Repo layout

genosyn/
├── App/         # Product app — Express + TypeORM + React + Vite + Tailwind
├── Home/        # Marketing site — React + Vite + Tailwind
├── CLI/         # `genosyn` cluster-maintainer CLI (bash)
├── AGENTS.md    # Instructions for AI coding agents (read this first)
├── ROADMAP.md   # Vocabulary, milestones, backlog
└── CLAUDE.md    # Pointer to AGENTS.md

Quickstart

One-command install (recommended)

curl -fsSL https://genosyn.com/install.sh | bash

This installs the genosyn CLI to /usr/local/bin (falls back to ~/.local/bin without sudo), pulls the latest image, and starts a container on port 8471 with a persistent genosyn-data volume. Re-run it any time to upgrade.

Day-to-day management:

genosyn status           # show running state, image, volume, port
genosyn upgrade          # self-update the CLI, pull latest image, recreate
genosyn self-upgrade     # update only the genosyn CLI script
genosyn logs -f          # tail server logs
genosyn backup           # tarball the data volume
genosyn restore <file>   # restore a backup
genosyn prune            # remove orphaned images from prior upgrades
genosyn stop | start | restart
genosyn uninstall [--purge]
genosyn help             # full command reference

Defaults can be overridden with flags (--port, --name, --volume, --image) or env vars (GENOSYN_PORT, GENOSYN_NAME, GENOSYN_VOLUME, GENOSYN_IMAGE).

Docker (manual)

Pre-built images are published to GitHub Container Registry on every push to main.

# Product app — API + UI on one port
docker run -d --name genosyn -p 8471:8471 \
  -v genosyn-data:/app/data \
  ghcr.io/genosyn/app:latest
# → http://localhost:8471

# Marketing site
docker run -d --name genosyn-home -p 8472:3000 \
  ghcr.io/genosyn/home:latest
# → http://localhost:8472

The genosyn-data volume holds the SQLite database (Soul, Skill, Routine, and Run content live there) plus per-employee provider credentials on disk. It persists across restarts and image upgrades.

To override config.ts without rebuilding, mount your own on top:

docker run -d --name genosyn -p 8471:8471 \
  -v genosyn-data:/app/data \
  -v "$PWD/config.ts:/app/config.ts:ro" \
  ghcr.io/genosyn/app:latest

From source

# Product app — API + UI on one port
cd App && npm install && npm run dev
# → http://localhost:8471

# Marketing site
cd Home && npm install && npm run dev
# → http://localhost:8472

See App/README.md and Home/README.md for production builds, config, and scripts.

Contributing

Read AGENTS.md before opening a PR — it covers the project vocabulary (Routine, Soul, Skill, AI Employee), the stack, and code conventions. Check ROADMAP.md for what's in flight and what's next.

License

MIT © HackerBay, Inc.