praisonai agents command allows you to define and run multiple agents directly from the command line without creating a YAML configuration file.
Quick Start
Commands
Run Agents
Execute one or more agents with a specified task.
Optional Options:
List Available Tools
List all tools that can be assigned to agents.Agent Definition Format
Agents are defined using a colon-separated format:Examples
Usage Examples
Single Agent
Multiple Agents (Sequential)
Agents execute one after another, passing context between them.Multiple Agents (Parallel)
Agents execute simultaneously for faster results.With Custom LLM
With Additional Instructions
Data Analysis Pipeline
Code Development
Available Tools
Execution Modes
Sequential (Default)
Agents execute one after another. Each agent receives the context from previous agents.Parallel
Agents execute simultaneously. Useful for independent tasks.Output
The command displays:- Agent information (name, role)
- Task description
- Agent responses
- Final result
Comparison with agents.yaml
Tips
- Start Simple: Begin with a single agent, then add more as needed
- Use Descriptive Roles: Clear roles help agents understand their purpose
- Match Tools to Tasks: Only assign tools that are relevant to the task
- Sequential for Dependencies: Use sequential mode when agents depend on each other
- Parallel for Speed: Use parallel mode for independent tasks

