Skip to main content

Starter Kits

Get started faster with pre-built agent configurations for common use cases.

What Are Starter Kits?

Starter Kits are ready-to-use agent templates that you can install with one click. Each kit includes:

  • Pre-configured agents with optimized prompts
  • Recommended tools and integrations
  • Example workflows and triggers
  • Documentation and best practices

Available Starter Kits

IT Helpdesk

Perfect for: Internal IT support teams

Includes:

  • Triage Agent - Routes requests to the right specialist
  • Password Reset Agent - Handles password and access issues
  • Software Request Agent - Processes software installation requests
  • FAQ Agent - Answers common IT questions
Install: Dashboard → Templates → IT Helpdesk → Install

Tools included:

  • Memory (per-user context)
  • HTTP Request (ServiceNow integration)
  • Google Admin (user management)
  • Microsoft Admin (Azure AD)

HR Assistant

Perfect for: HR teams handling employee questions

Includes:

  • Policy Agent - Answers questions about company policies
  • Onboarding Agent - Guides new employees through setup
  • Benefits Agent - Explains benefits and enrollment
  • Time-Off Agent - Handles PTO requests and questions
Install: Dashboard → Templates → HR Assistant → Install

Tools included:

  • Memory (employee context)
  • Calendar (scheduling)
  • HTTP Request (HRIS integration)

Customer Support

Perfect for: Customer-facing support teams

Includes:

  • First Response Agent - Handles initial customer contact
  • Technical Support Agent - Resolves product issues
  • Billing Agent - Handles billing and payment questions
  • Escalation Agent - Routes complex issues to humans
Install: Dashboard → Templates → Customer Support → Install

Tools included:

  • Memory (customer history)
  • HTTP Request (CRM integration)
  • Email (send follow-ups)

Sales Assistant

Perfect for: Sales teams qualifying leads

Includes:

  • Lead Qualifier Agent - Scores and qualifies inbound leads
  • Meeting Scheduler Agent - Books demos and calls
  • Product Expert Agent - Answers detailed product questions
  • Follow-Up Agent - Sends personalized follow-ups
Install: Dashboard → Templates → Sales Assistant → Install

Tools included:

  • Memory (lead context)
  • Calendar (meeting scheduling)
  • HTTP Request (CRM integration)
  • Email (outreach)

DevOps Assistant

Perfect for: Engineering teams managing infrastructure

Includes:

  • Incident Response Agent - Helps diagnose and resolve incidents
  • Deployment Agent - Manages deployment processes
  • Monitoring Agent - Interprets alerts and metrics
  • Documentation Agent - Maintains runbooks and docs
Install: Dashboard → Templates → DevOps Assistant → Install

Tools included:

  • HTTP Request (monitoring APIs)
  • Memory (incident context)
  • Calculator (metric analysis)

Installing a Starter Kit

From the Dashboard

  1. Go to DashboardTemplates
  2. Browse available Starter Kits
  3. Click on a kit to see details
  4. Click Install
  5. Configure settings (API keys, integrations)
  6. Click Deploy

From the Store

  1. Go to StoreStarter Kits
  2. Search or filter by category
  3. Review ratings and documentation
  4. Click Install to Workspace
  5. Follow the setup wizard

Via CLI

# Install a starter kit
deeployd templates install it-helpdesk

# List available kits
deeployd templates list --category starter-kits

# Preview before installing
deeployd templates preview hr-assistant

Via API

import { DeepLoyd } from '@deeployd/sdk';

const client = new DeepLoyd({ apiKey: process.env.DEEPLOYD_API_KEY });

// Install a starter kit
const installation = await client.templates.install({
templateId: 'starter-kit-it-helpdesk',
config: {
integrations: {
servicenow: {
instanceUrl: 'https://acme.service-now.com',
apiKey: process.env.SERVICENOW_API_KEY
}
}
}
});

console.log('Installed agents:', installation.agents);

Customizing Starter Kits

After installation, customize the kit for your needs:

Modify System Prompts

Each agent's prompt can be edited:

  1. Go to the agent in Dashboard
  2. Click Edit System Prompt
  3. Add your company-specific information
  4. Save and test

Add or Remove Tools

Adjust tools based on your integrations:

  1. Go to the agent's Tools tab
  2. Remove tools you don't need
  3. Add tools for your systems
  4. Configure API connections

Adjust Workflows

Modify how agents work together:

  1. Go to Workflows
  2. Open the kit's workflow
  3. Add or remove steps
  4. Change routing logic
  5. Save and activate

Creating Your Own Starter Kit

Share your configurations with others:

1. Build and Test

Create your agents and workflows, then test thoroughly.

2. Export Configuration

// Export your setup
const kit = await client.templates.export({
name: 'My Custom Kit',
description: 'Handles X, Y, and Z',
agents: ['agent-1', 'agent-2'],
workflows: ['workflow-1'],
category: 'internal-tools'
});

3. Publish

  • Private - Share within your workspace
  • Organization - Share across your tenant
  • Store - Publish for everyone

See Publishing to Store for details.

Best Practices

Before Installing

  • Review the documentation - Understand what's included
  • Check integrations - Ensure you have the required accounts
  • Plan customization - Know what you'll need to change

After Installing

  • Test thoroughly - Try various scenarios before going live
  • Customize prompts - Add your company-specific information
  • Configure integrations - Connect your actual systems
  • Train your team - Show users how to interact with agents

Maintaining

  • Monitor performance - Check analytics regularly
  • Update prompts - Improve based on real usage
  • Add capabilities - Expand as needs evolve
  • Review security - Audit tools and permissions

Have a Starter Kit idea? Share it in Discord!