Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Pre-built agent capabilities
Add Skills
use praisonai::{Agent, skills}; let agent = Agent::new() .name("Assistant") .skill(skills::email()) .skill(skills::calendar()) .skill(skills::file_management()) .build()?;
email
calendar
file_management
web_search
code_execution