Skills library
Browse common skills you can use as-is, customize, or use as templates—organized by category with parameters and requirements where applicable.
This page lists common skills for the Agentic Hosting platform. Skills can be used as-is, customized, or used as templates for building custom skills.
Categories
Core skills
Skills essential for basic agent operations.
skill-core-hello
Basic skill that demonstrates skill structure and hello world functionality. Useful as a template for creating new skills.
Category: core
Tags: templateexamplehello-world
Version: 1.0.0
skill-core-tool-router
Routes user requests to appropriate tools based on intent classification. Essential for building conversational agents.
Category: core
Tags: routingclassificationintent
Version: 1.0.0
Requirements
- LLM provider configured
skill-core-memory
Manages agent memory and context, including short-term conversation context and long-term knowledge storage.
Category: core
Tags: memorycontextstorage
Version: 1.0.0
Data skills
Data extraction, transformation, and processing.
skill-data-extract-json
Extracts structured data from unstructured text or documents using LLM-based extraction.
Category: data
Tags: extractionjsonparsing
Version: 1.0.0
Requirements
- LLM provider configured
| Parameter | Type | Required | Description |
|---|---|---|---|
| source | string | Yes | Source text or document |
| schema | object | Yes | JSON schema for extraction |
| prompt | string | No | Custom extraction instructions |
skill-data-transform-csv
Transforms CSV data between different formats, applies filters, and performs calculations.
Category: data
Tags: csvtransformformat
Version: 1.0.0
| Parameter | Type | Required | Description |
|---|---|---|---|
| input | string | Yes | CSV data or file path |
| operation | string | Yes | Operation: filter, map, aggregate, convert |
| options | object | No | Operation-specific options |
skill-data-validate
Validates data against schemas, rules, or business logic. Supports JSON Schema, custom validators, and reference data checks.
Category: data
Tags: validationschemaquality
Version: 1.0.0
Requirements
- Validation rules defined
skill-data-aggregate
Aggregates data from multiple sources, performs calculations, and generates summary reports.
Category: data
Tags: aggregationanalyticssummary
Version: 1.0.0
Integration skills
External API and service connections.
skill-integration-http-request
Makes HTTP requests to external APIs. Supports GET, POST, PUT, DELETE with custom headers and authentication.
Category: integration
Tags: httpapirequest
Version: 1.0.0
| Parameter | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Target URL |
| method | string | Yes | HTTP method (GET, POST, PUT, DELETE) |
| headers | object | No | Custom headers |
| body | object | No | Request body |
| auth | object | No | Authentication configuration |
skill-integration-webhook
Sends webhook notifications to external services when specific events occur.
Category: integration
Tags: webhooknotificationevent
Version: 1.0.0
skill-integration-database
Executes database queries and manages database connections. Supports PostgreSQL, MySQL, and SQLite.
Category: integration
Tags: databasesqlquery
Version: 1.0.0
Requirements
- Database connection configured
skill-integration-slack
Sends messages to Slack channels, creates Slack alerts, and manages Slack webhooks.
Category: integration
Tags: slacknotificationmessaging
Version: 1.0.0
Requirements
- Slack webhook URL or API token configured
skill-integration-stripe
Interfaces with Stripe API for payment processing, subscription management, and invoice operations.
Category: integration
Tags: stripepaymentsbilling
Version: 1.0.0
Requirements
- Stripe API key configured
Automation skills
Workflow and task automation.
skill-automation-schedule
Schedules and manages recurring tasks, cron jobs, and time-based automation.
Category: automation
Tags: schedulecronrecurring
Version: 1.0.0
skill-automation-webhook-listener
Listens for incoming webhooks and triggers appropriate agent actions based on payload.
Category: automation
Tags: webhooklistenertrigger
Version: 1.0.0
skill-automation-workflow
Orchestrates multi-step workflows, managing state and coordinating between different skills.
Category: automation
Tags: workfloworchestrationstate
Version: 1.0.0
skill-automation-email-digest
Compiles and sends email digests with summaries, alerts, or reports on a schedule.
Category: automation
Tags: emaildigestreport
Version: 1.0.0
Research skills
Information gathering and analysis.
skill-research-web-search
Performs web searches and aggregates results from multiple sources.
Category: research
Tags: searchwebresearch
Version: 1.0.0
Requirements
- Web search API configured
skill-research-summarize
Summarizes long documents, articles, or text using LLM-based extraction.
Category: research
Tags: summarizeextractllm
Version: 1.0.0
Requirements
- LLM provider configured
skill-research-extract-links
Extracts and categorizes links from web pages, useful for crawling and link analysis.
Category: research
Tags: linkscrawlextract
Version: 1.0.0
skill-research-competitor-analysis
Performs competitor analysis by gathering publicly available information about companies.
Category: research
Tags: competitoranalysisbusiness
Version: 1.0.0
Adding your own skills
Use these steps to create custom skills:
- Copy the template — Start with a simple skill structure.
- Define your logic — Implement the skill functionality.
- Document thoroughly — Include clear usage instructions.
- Test thoroughly — Verify the skill works as expected.
See Skills setup guide for detailed instructions.