Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
SkillsConfig
Defined in the config module.
Rust AI Agent SDK
Configuration for agent skills
Fields
| Name | Type | Description |
|---|
paths | Vec<String> | Direct skill paths |
dirs | Vec<String> | Directories to scan for skills |
auto_discover | bool | Auto-discover from default locations |
Methods
new
Create a new skills config
path
fn path(mut self, path: impl Into<String>) -> Self
Add a skill path
Parameters:
| Name | Type |
|---|
path | impl Into<String> |
dir
fn dir(mut self, dir: impl Into<String>) -> Self
Add a skills directory
Parameters:
| Name | Type |
|---|
dir | impl Into<String> |
auto_discover
fn auto_discover(mut self) -> Self
Enable auto-discovery
Source
View on GitHub
praisonai/src/config.rs at line 870