Documentation / Agent skills / Library

Skills library

Browse common skills you can use as-is, customize, or use as templates—organized by category with parameters and requirements where applicable.

← Documentation overviewAgent skills hub

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
ParameterTypeRequiredDescription
sourcestringYesSource text or document
schemaobjectYesJSON schema for extraction
promptstringNoCustom 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

ParameterTypeRequiredDescription
inputstringYesCSV data or file path
operationstringYesOperation: filter, map, aggregate, convert
optionsobjectNoOperation-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

ParameterTypeRequiredDescription
urlstringYesTarget URL
methodstringYesHTTP method (GET, POST, PUT, DELETE)
headersobjectNoCustom headers
bodyobjectNoRequest body
authobjectNoAuthentication 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.

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

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:

  1. Copy the template — Start with a simple skill structure.
  2. Define your logic — Implement the skill functionality.
  3. Document thoroughly — Include clear usage instructions.
  4. Test thoroughly — Verify the skill works as expected.

See Skills setup guide for detailed instructions.