Agents Inc banner
agents-inc agents-inc

Agents Inc

Development community

Description

An agent composition framework that builds stacks and compiles specialized subagents for Claude Code

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

Agents Inc

Agents Inc

[![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue.svg)](https://www.typescriptlang.org/) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)

An agent composition framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). Compose specialized subagents from atomic skills: pick a stack, choose your skills from an interactive grid, and compile subagents that carry exactly the skills you selected.

npx agents-inc init

Everything the CLI can do — the full command reference, the stack list, the skill catalog and the guides — lives in **[packages/cli/README.md](./packages/cli/README.md)**. This file describes the repository itself.

Repository layout

/
├── apps/
│   ├── editor/           the editor (Vite + React, deployed to Cloudflare)
│   └── server/           the API worker (Hono)
├── packages/
│   ├── cli/              the published CLI — this is agents-inc on npm
│   ├── matrix/           the skill catalog the web app reads
│   ├── ui/               the design system shared by the web app
│   ├── eslint-config/    shared configs
│   ├── prettier-config/
│   ├── typescript-config/
│   └── vitest-config/
├── docs/
│   ├── cli/              the CLI's product documentation
│   └── web/              the web planning notes
├── .github/workflows/
└── .husky/

`packages/cli` is the only workspace that publishes to npm, as `agents-inc`. Its `README.md` is the one npm shows, which is why the product documentation lives there rather than here.

Working in it

The repository uses [bun](https://bun.sh) and [Turborepo](https://turborepo.com). One install covers every workspace:

bun install

That is the whole of it — nothing else to copy, and in particular **do not create `apps/editor/.env` in order to make the build work.** It used to be necessary and it is not any mor