Open your workspace.yml file and add your first agent:
Copy
Ask AI
version: "1.0"workspace: name: "my-workspace" description: "My first Atlas workspace"agents: assistant: type: "llm" model: "claude-3-5-sonnet-20241022" purpose: "A helpful AI assistant for various tasks" prompts: system: | You are a helpful AI assistant. You're friendly, concise, and focused on helping the user accomplish their goals. When asked to help with tasks: - Break down complex tasks into steps - Ask clarifying questions when needed - Provide clear, actionable responses
Now you can chat with your agent! In your terminal:
Copy
Ask AI
# Trigger the agent with a messageatlas signal trigger chat --data '{"message": "Hello! What can you help me with?"}'# Or use the interactive modeatlas# Then type: /signal trigger chat --data {"message": "Hello!"}