Recommended Project Structure
digital-employee/
├── agents/
│ ├── agent_1.py
│ ├── agent_2.py
│ └── agent_3.py
├── config_templates/
│ ├── defaults.yaml
│ ├── mcp_configs.yaml
│ └── tool_configs.yaml
├── connectors/
│ ├── mcps/
│ │ ├── mcp_1.py
│ │ ├── mcp_2.py
│ │ └── mcp_3.py
│ ├── skills/
│ │ ├── skill_1/
│ │ ├── skill_2/
│ │ └── skill_3/
│ └── tools/
│ ├── tool_1.py
│ ├── tool_2.py
│ └── tool_3.py
├── identity/
│ └── identity.py
└── main.pyAgents
Config Templates
Connectors
Identity
Last updated