agentwarden
v0.0.1
Published
Agent Warden CLI - A TypeScript CLI application built with Bun and Commander.js
Readme
Agent Warden
A TypeScript CLI application built with Bun and Commander.js.
Installation
To install dependencies:
bun installUsage
Development
Run in development mode:
bun run devCommands
Start the Agent Warden service:
bun run start -- start --port 3000Check service status:
bun run start -- statusBuilding
Build the project:
bun run buildProject Structure
agentwarden/
├── src/
│ ├── index.ts # Main CLI entry point
│ ├── commands/ # Command implementations
│ │ ├── start.ts # Start command
│ │ └── status.ts # Status command
│ └── types/ # TypeScript type definitions
│ └── index.ts # Type exports
├── package.json # Package configuration
├── tsconfig.json # TypeScript configuration
└── README.md # This fileTech Stack
- Runtime: Bun - Fast all-in-one JavaScript runtime
- Language: TypeScript
- CLI Framework: Commander.js
- Build System: Bun's built-in bundler
