Open-source AI agent skills, MCP servers, and CLI bridges.
Status: Early development — API is not yet stable.
| Directory | Description |
|---|---|
src/agents/ |
Reusable agent definitions and subagent configurations |
src/skills/ |
Composable skills that extend agent capabilities |
src/mcp-servers/ |
Model Context Protocol servers for tool integration |
src/cli-bridges/ |
Standalone CLI tools that bridge services — like MCP servers, but invoked directly from the terminal |
bun add @solenix/agents// Import a specific skill
import { mySkill } from "@solenix/agents/skills/my-skill";
// Import an MCP server
import { myServer } from "@solenix/agents/mcp-servers/my-server";
// Import a CLI bridge
import { myBridge } from "@solenix/agents/cli-bridges/my-bridge";# Install dependencies
bun install
# Run tests
bun test
# Lint & format
bun run lint:fix
# Type check
bun run typecheckSee CONTRIBUTING.md for guidelines.