Production Deployment Agent
An agent that can deploy applications to production with controlled permissions.Skills Needed
- File System (Full Access): Read deployment configs, write logs
- Shell (Safe Commands): Run deployment scripts with restricted commands
- Docker (Full Control): Manage production containers
Configuration
Read-Only Monitoring Agent
An agent for monitoring and observability with no write permissions.Skills Needed
- File System (Read Only): Monitor log files and configs
- Shell (Read Only): Run diagnostic commands
- Data Visualization: Create monitoring dashboards
Configuration
Read-only variants are perfect for audit, compliance, and monitoring use cases where agents should observe but not modify the system.
Development Sandbox Environment
An agent for developers working in isolated sandbox environments.Skills Needed
- File System (Sandboxed): Isolated directory access
- Shell (Full Access): Freedom to experiment
- Python (Full Access): Run and test Python code
- Docker (Containers Only): Test containerized applications
Configuration
Multi-Agent Orchestration
An orchestrator agent that delegates tasks to specialized agents.Skills Needed
- Agent Communication (Limited): Call approved agents with safeguards
- File System (Read Only): Access coordination data
- Workflow Executor: Execute complex orchestration workflows
Configuration
Custom Integration: Slack Notifications
Using a custom skill to integrate with Slack for team notifications.Setup
Learn how to create custom Skills in the Custom Skills guide.
Variant Selection Guide
How to choose the right variant for your use case:Always start with the most restrictive variant that meets your needs. You can always upgrade permissions later if required.
Troubleshooting Scenarios
Scenario: Agent Cannot Execute Task
Symptoms: Agent fails with “Skill not found” or “Permission denied” Solution:- Verify skill is assigned:
kubiya skill list-associations agent <agent-id> - Check skill is enabled:
kubiya skill get <skill-id> - Review configuration: Ensure required commands/paths are in allowed list
Scenario: Skill Works in Development But Not Production
Symptoms: Same skill configuration behaves differently across environments Solution:- Check environment variables are set on production worker
- Verify Python dependencies are installed
- Confirm base directories exist and have correct permissions
- Review worker logs for error details
Related Pages
Built-in Skills
Reference for all available Skills
Skill Variants
Understand variant options
CLI Reference
Complete CLI command guide
Custom Skills
Create organization-specific Skills