Quick Start Guide
Get started with UnaCODE in under 10 minutes.
Prerequisites
- Basic understanding of AI concepts
- Command line familiarity
- A UnaCODE account (sign up at unacode.mrmaidenos.com)
Step 1: Install the CLI
Step 2: Authenticate
Step 3: Create Your First Agent
# Create a new agent project
unacode create agent --name "my-first-agent" --template basic
# Navigate to the project
cd my-first-agent
Step 4: Configure the Agent
Edit the agent.yml configuration:
name: my-first-agent
description: A simple greeting agent
version: 1.0.0
# Define the workflow
workflow:
- name: input
type: text-input
config:
prompt: "What's your name?"
- name: process
type: llm-completion
config:
model: gpt-4
prompt: "Create a personalized greeting for: {{input.text}}"
- name: output
type: text-output
config:
message: "{{process.completion}}"
# Connect the nodes
connections:
- from: input.text
to: process.input
- from: process.completion
to: output.message
Step 5: Test Your Agent
Expected output:
Step 6: Deploy to the Cloud
Next Steps
🎉 Congratulations! You've created your first UnaCODE agent.
What's Next?
- Visual IDE Tutorial - Build agents with drag-and-drop
- Advanced Agent Patterns - Learn complex workflows
- API Integration - Connect to external services
- Team Collaboration - Work with your team
Need Help?
- Join our Discord community
- Check out example agents
- Read the troubleshooting guide