Overview
Every agent session is powered by capabilities — the things the agent can actually do. There are two types:- Skills — modular instruction packages that teach the agent how to perform specific tasks
- Connectors — MCP integrations that give the agent access to external services
Skills
Reusable instruction sets that define how the agent approaches a task — from image generation to PDF creation to data analysis.
Connectors
MCP servers and APIs that connect the agent to external services like Gmail, Google Sheets, Slack, and more.
Skills management
Open the Skills page from the sidebar to browse, enable, and inspect skills. The panel has two sections:- Sidebar — lists your custom skills and all built-in skills with a search bar and GitHub install input
- Detail panel — shows the selected skill’s description, rendered
SKILL.mdcontent, and supporting files with syntax highlighting

Disabling a skill means the agent will not use it even if your prompt would normally trigger it. This is useful for controlling costs or restricting the agent’s capabilities.
Connectors
Connectors link the agent to external services via MCP (Model Context Protocol). Once connected, the agent can read and write data in those services as part of its response.Available connectors

| Category | Connector | What it does |
|---|---|---|
| Google Workspace | Gmail | Read, search, and send emails |
| Google Calendar | View and create calendar events | |
| Google Sheets | Read, update, and create spreadsheets | |
| Google Docs | Read and create documents | |
| Google Drive | Browse, upload, and manage files | |
| Google Tasks | Create and manage task lists | |
| Google Marketing | Google Ads | Manage campaigns and view performance |
| Google Analytics | Access website traffic and engagement data | |
| Google Search Console | Monitor search performance and indexing | |
| Microsoft | Outlook | Read, search, and send emails |
| Microsoft Teams | Send messages and interact with channels | |
| Project Management | Asana | Manage tasks, projects, and workflows |
| Linear | Track issues and project progress | |
| Notion | Read and update pages, databases, and wikis | |
| Communication | Slack | Send messages and read channels |
| Discord | Send messages and interact with servers | |
| Social & Ads | Browse and interact with subreddits | |
| YouTube | Search videos and access channel data | |
| Developer | GitHub | Browse repos, read files, create issues |
| SEO & Research | Semrush | Access SEO data, keywords, and site audits |
| Perplexity | AI-powered research and web search | |
| Automation | Pipedream | Build and trigger automated workflows |
| Web Scraping | Firecrawl | Scrape and parse web pages |
New connectors are added regularly. If you need an integration that isn’t listed, let us know in the
#feature-requests channel on Discord.Connecting a service
Click Connect
Find the service you want and click Connect. You’ll be redirected to the service’s OAuth flow.
Authorize access
Grant CREAO access to the requested permissions. You’ll be redirected back to the workspace.
Using connectors in chat
Once connected, just describe what you need in natural language. The agent figures out which connector to use:@:
Built-in skills
The super agent comes with 30+ built-in skills covering a wide range of tasks. These are available out of the box — just describe what you need and the super agent will use the right skill automatically.| Category | Skills |
|---|---|
| Document generation | PDF creation and manipulation, Word documents (DOCX), Excel spreadsheets (XLSX), PowerPoint presentations (PPTX) |
| Content & writing | Blog Post Writer, Content Creator, Social Media Content, Content Research Writer, Scientific Writing |
| Data & analysis | Exploratory Data Analysis, Data Storytelling, Financial Statement Analysis, Financial Modeling, SQL Optimization |
| Research & strategy | Competitive Landscape, Market Sizing Analysis, Product Requirements, Product Strategist, Startup Metrics Framework |
| Design & web | Landing Page Generator, Brand Guidelines, KPI Dashboard Design, Scientific Schematics |
| Automation & dev | Changelog Automation, Remotion Video generation |
| Specialized | Treatment Plans, Data Privacy Compliance, Domain Name Brainstormer, Meeting Insights Analyzer, Competitive Ads Extractor |
Custom skills
Custom skills let you teach the agent domain-specific workflows that aren’t covered by the built-in skill library. A custom skill is aSKILL.md file with YAML frontmatter that tells the agent what to do and when.
There are three ways to add custom skills:
Install from GitHub
Paste any public GitHub repository URL that contains aSKILL.md into the GitHub URL input in the sidebar and click Install. The platform fetches the repository, validates the skill, and registers it automatically.
You can link to a repository root or a specific subdirectory:
Upload a ZIP file
Drag and drop a.zip file onto the sidebar, or click the + button to upload manually. The ZIP must contain a SKILL.md with name and description in the YAML frontmatter:
scripts/ folder with helper scripts the agent can execute.
Create a skill from chat
Ask the agent to create a skill directly in the chat window. Describe what you want the skill to do, and the agent will scaffold aSKILL.md and register it for you:
Custom skill format
Every custom skill needs aSKILL.md file with YAML frontmatter:
| Field | Required | Description |
|---|---|---|
name | Yes | Lowercase letters, numbers, and hyphens (e.g. data-cleaner) |
description | Yes | One sentence explaining what the skill does and when to use it |
@ Mentions
Type@ in the chat input to see a list of all enabled skills and connected services. Select one to explicitly direct the agent to use that capability.

- You want to ensure a specific tool is used
- Your request could match multiple skills
- You want to reference a connector by name