AgentForge

agentforge init

Scaffold a new AgentForge project with sensible defaults.

Usage

agentforge init <project-name>

What It Creates

my-agent/
├── src/
│   ├── agent.ts       # Agent definition
│   ├── tools/         # Custom tools directory
│   │   └── example.ts # Example tool
│   └── index.ts       # Entry point
├── agentforge.config.ts  # Configuration
├── package.json
└── tsconfig.json

Options

agentforge init my-agent --template customer-support
agentforge init my-agent --provider openai

Next Steps