Installation
How to install herdctl via npm, verify your setup, and configure prerequisites like Claude Code CLI.
This guide will walk you through installing herdctl and running your first autonomous agent fleet. Full documentation is in progress.
Installation
How to install herdctl via npm, verify your setup, and configure prerequisites like Claude Code CLI.
Creating Your First Agent
Define an agent in YAML with a name, workspace, schedule, and prompt. Understand the basic structure.
Running Your Fleet
Start the herdctl daemon, watch agents execute on schedule, and manage your fleet from the CLI.
Monitoring Output
View agent logs, track job status, and understand what your agents are doing in real-time.
Before you begin, you’ll need:
Here’s a taste of what running herdctl looks like:
# Install herdctlnpm install -g herdctl
# Initialize a new projectherdctl init
# Start your fleetherdctl startAnd a simple agent configuration:
name: my-first-agentdescription: "My first autonomous agent"
workspace: my-projectrepo: username/my-project
schedules: - name: check-issues trigger: type: interval every: 10m prompt: | Check for open issues and report status.While this guide is being completed, explore these concepts to understand how herdctl works:
For detailed configuration options, see: