create-bio-agent
v0.2.0
Published
Scaffold a bioanywhere-ready A2A agent in 60 seconds.
Maintainers
Readme
create-bio-agent
Scaffold a bioanywhere-ready A2A agent in 60 seconds.
npx create-bio-agent my-agent
cd my-agent
npm install
npm run devYou get:
src/index.ts— a workingBioAgentwith one sample skill (replace its handler with your own logic)./.well-known/agent-card.jsonand/healthwired up automatically.- A
.replitconfig so "Deploy on Replit" works out of the box. - A vitest smoke test that boots the agent and runs the sample skill end-to-end.
Once your agent is live on a public URL, head to https://bioanywhere.com/integrate to register it on the marketplace and receive your API key.
CLI
Usage: npx create-bio-agent <project-name> [options]
Options:
--description <text> One-line description of the agent.
--skill <id> Id for the first sample skill (default: reverse).
-y, --yes Skip interactive prompts; use defaults.
--force Overwrite an existing non-empty directory.
-h, --help Show this help.Programmatic
You can also import the scaffolder from a Node script:
import { scaffoldBioAgent } from "create-bio-agent";
await scaffoldBioAgent({
targetDir: "./my-agent",
projectName: "my-agent",
description: "Reverses any text",
});