← Back to all articles

The word "skill" in AI is overloaded to the point of uselessness. Every chatbot vendor calls their pre-built templates "skills." Every platform calls their API integrations "skills." The word has been diluted until it means nothing more than "a feature we added and wanted to sound impressive about."

This guide is about something specific: agent skills — discrete, composable capabilities that an autonomous AI agent can invoke to accomplish a defined task without human intervention. Not chatbot responses. Not API wrappers. Actual executable capabilities that agents use to observe, decide, and act in the real world.

We are going to define exactly what an agent skill is, explain the architecture behind how skills work, walk through the major skill categories, and give you 57 real examples you can deploy today using open-source frameworks. If you are building AI agents — or evaluating whether to deploy them in your business — this is the reference you need.

57
Free skill examples in this guide
9
Skill categories covered
100%
Open-source and deployable today

What Is an AI Agent Skill, Exactly?

An agent skill is a self-contained unit of capability that an AI agent can execute autonomously. It has four properties:

  1. Defined trigger. Something that causes the skill to activate — a schedule (run at 7 AM), an event (new lead arrives), a threshold (pipeline value drops below X), or a command (user requests a report).
  2. Defined inputs. The data the skill needs to operate — CRM records, email content, calendar data, website analytics, transcript files, or any other structured or unstructured data source.
  3. Defined logic. The reasoning and decision-making the skill performs on the inputs. This can range from simple rules ("if lead score > 80, route to senior rep") to complex multi-step reasoning ("analyze this transcript, extract objections, score severity, and generate coaching notes").
  4. Defined outputs. What the skill produces — a report, an alert, a database update, a sent email, a published post, a scored document, or a decision passed to another agent.

The key distinction from a "feature" or "plugin" is autonomy. A skill does not require a human to invoke it each time. Once configured, it runs whenever its trigger conditions are met, processes its inputs, executes its logic, and produces its outputs. The human defines the skill. The agent executes it indefinitely.

Skill Architecture: How Skills Fit Into an Agent

To understand skills, you need to understand the agent architecture they sit inside. Most modern agent frameworks — including OpenClaw, which we use extensively at KOINO — follow a similar pattern:

Agent
 ├── Identity (who am I, what is my role)
 ├── Memory (what do I know, what have I learned)
 ├── Skills (what can I do)
 │    ├── Skill 1: Daily Briefing
 │    ├── Skill 2: Lead Scoring
 │    ├── Skill 3: Content Generation
 │    ├── Skill 4: Pipeline Monitoring
 │    └── ... (typically 5-15 skills per agent)
 ├── Schedule (when do I run each skill)
 └── Escalation Rules (when do I ask a human)

An agent is essentially an identity with a set of skills. The agent's identity defines its role and perspective (e.g., "you are a sales operations agent for a 12-rep insurance agency"). The agent's memory stores context from previous executions so it can reference history and track trends. The agent's skills define everything it can actually do.

Skills are composable. An agent with a "lead scoring" skill and a "lead routing" skill can chain them: score the lead, then route it based on the score. An agent with a "content generation" skill and a "QA scoring" skill can generate content and then quality-check its own output before publishing. This composability is what makes agent fleets powerful — you can build complex workflows from simple, well-defined skills.

The 9 Skill Categories

After deploying agent fleets across dozens of businesses, we have identified nine major categories of agent skills. Every business skill we have built falls into one of these categories.

Category 1: Observation Skills (Monitoring + Data Collection)

These skills watch data sources and collect information. They do not take action — they feed data to other skills that do.

OBSERVATION

1. CRM Activity Monitor

Watches CRM for new leads, deal stage changes, activity gaps, and pipeline value changes. Feeds data to scoring and routing skills.

OBSERVATION

2. Email Inbox Monitor

Scans inbound email for client requests, prospect replies, and urgent flags. Categorizes and routes to appropriate response skills.

OBSERVATION

3. Website Analytics Tracker

Monitors traffic, conversion rates, and visitor behavior. Flags anomalies (traffic spikes, conversion drops) for analysis.

OBSERVATION

4. Social Mention Monitor

Tracks brand mentions, competitor activity, and industry trends across social platforms. Feeds content and outreach skills.

OBSERVATION

5. Calendar Sync

Monitors calendars for scheduling conflicts, upcoming meetings, and available slots. Feeds scheduling and preparation skills.

OBSERVATION

6. File System Watcher

Monitors designated folders for new files (transcripts, recordings, documents). Triggers processing pipelines automatically.

Category 2: Analysis Skills (Scoring + Intelligence)

These skills take raw data and produce scored, ranked, or analyzed outputs. They transform information into intelligence.

ANALYSIS

7. Lead Scoring

Evaluates leads across 6 dimensions: fit, intent, timing, budget, authority, competition. Outputs a composite score with reasoning.

ANALYSIS

8. Content QA Scoring

Scores content across 7 dimensions: brand voice, hook strength, value density, CTA clarity, platform fit, originality, audience alignment.

ANALYSIS

9. Rep Performance Analysis

Tracks rep activity metrics against baselines. Identifies trending down, at risk, and top performer patterns.

ANALYSIS

10. Transcript Extraction

Processes call/meeting transcripts to extract: key topics, objections, commitments, action items, and coaching opportunities.

ANALYSIS

11. Competitive Intelligence

Monitors competitor websites, social accounts, and review sites. Generates weekly intelligence reports on positioning changes.

ANALYSIS

12. Revenue Forecasting

Analyzes pipeline data, historical close rates, and seasonal patterns to project revenue 30/60/90 days out.

ANALYSIS

13. Sentiment Analysis

Scores client communications for sentiment and urgency. Flags at-risk accounts before problems escalate.

Category 3: Generation Skills (Content + Document Creation)

These skills produce new content: blog posts, social captions, emails, reports, proposals, and any other text-based output.

GENERATION

14. Blog Post Generation

Generates SEO-optimized long-form content from topic briefs and keyword targets. Outputs draft with meta descriptions and internal links.

GENERATION

15. Social Caption Generation

Produces platform-specific captions (LinkedIn, Instagram, X) from content briefs or repurposed long-form content.

GENERATION

16. Email Sequence Generation

Creates multi-step email sequences tailored to segment, intent, and stage. Includes subject lines, body copy, and CTAs.

GENERATION

17. Daily Briefing Generation

Synthesizes data from all observation and analysis skills into a single morning intelligence report.

GENERATION

18. Proposal Generation

Creates client proposals from templates, client data, and service parameters. Outputs formatted document in under 60 seconds.

GENERATION

19. Case Study Generation

Transforms client metrics and outcomes into structured case studies with before/after comparisons and testimonial integration.

GENERATION

20. Meeting Prep Generation

Before any scheduled meeting, generates a prep brief: attendee background, last interaction summary, open items, suggested agenda.

GENERATION

21. Viral Moment Extraction

Scans long-form content (podcasts, webinars, calls) and extracts the top 5-10 moments most likely to perform as short-form clips.

Category 4: Routing Skills (Assignment + Distribution)

ROUTING

22. Lead Assignment

Routes scored leads to the right rep based on territory, product expertise, current workload, and historical close rates.

ROUTING

23. Ticket Triage

Categorizes support requests by type, urgency, and complexity. Routes to the appropriate team member or self-service resource.

ROUTING

24. Content Distribution

Takes approved content and distributes to the right platforms at optimal times based on historical engagement data.

ROUTING

25. Task Delegation

Breaks complex requests into subtasks and assigns them to the appropriate agent or human based on capability matching.

Category 5: Communication Skills (Outreach + Notifications)

COMMUNICATION

26. Follow-Up Sequencing

Manages multi-touch follow-up sequences with timing adjusted based on recipient engagement signals.

COMMUNICATION

27. Alert Dispatch

Sends priority alerts via Telegram, Slack, email, or SMS when thresholds are breached or anomalies detected.

COMMUNICATION

28. Client Update Delivery

Generates and sends periodic client reports with metrics, deliverable status, and upcoming milestones.

COMMUNICATION

29. Meeting Summary Distribution

After processing a meeting transcript, sends summary with action items to all attendees within 15 minutes.

COMMUNICATION

30. Drip Campaign Management

Orchestrates long-running nurture sequences with branching logic based on opens, clicks, and behavioral triggers.

Category 6: Automation Skills (Workflow + Process)

AUTOMATION

31. Invoice Generation

Creates invoices from time tracking data, service agreements, and billing schedules. Sends and tracks payment status.

AUTOMATION

32. Client Onboarding

Executes multi-step onboarding: workspace creation, document collection, brand guide setup, kickoff scheduling.

AUTOMATION

33. Data Entry + Sync

Keeps multiple systems synchronized by extracting data from one source and updating others. Eliminates duplicate data entry.

AUTOMATION

34. Appointment Scheduling

Manages calendar availability, sends booking links, handles reschedules, and sends reminders. No scheduling tool needed.

AUTOMATION

35. Report Compilation

Aggregates data from multiple sources into formatted reports on a schedule. Weekly pipeline, monthly revenue, quarterly review.

AUTOMATION

36. Document Processing

Ingests documents (contracts, applications, forms), extracts key fields, and populates databases or triggers workflows.

Category 7: Learning Skills (Memory + Improvement)

LEARNING

37. Pattern Recognition

Analyzes historical data to identify recurring patterns: best-performing content types, optimal outreach timing, seasonal trends.

LEARNING

38. Feedback Integration

Incorporates human feedback on agent outputs to improve future performance. Tracks what gets approved vs. edited.

LEARNING

39. Knowledge Extraction

Processes learning materials (books, courses, transcripts) and extracts operating principles, frameworks, and actionable insights.

LEARNING

40. Performance Benchmarking

Compares current agent outputs against historical baselines and industry benchmarks. Identifies degradation or improvement.

LEARNING

41. A/B Test Analysis

Tracks variants of content, subject lines, and outreach messages. Identifies statistically significant winners and updates defaults.

Category 8: Security + Compliance Skills

SECURITY

42. Data Access Audit

Logs all agent data access and produces audit trails for compliance. Tracks what data was read, processed, and output.

SECURITY

43. PII Detection

Scans agent inputs and outputs for personally identifiable information. Masks or flags PII before it enters logs or reports.

SECURITY

44. Compliance Checking

Validates content and communications against industry regulations (insurance, financial, healthcare) before distribution.

SECURITY

45. System Health Monitoring

Monitors agent fleet health: uptime, error rates, response times, model performance. Alerts on degradation.

Category 9: Integration Skills (External Systems)

INTEGRATION

46. CRM Sync (HubSpot, Salesforce)

Bidirectional sync between agent memory and CRM. Updates deals, contacts, and activities in real-time.

INTEGRATION

47. Google Workspace Integration

Reads/writes Gmail, Calendar, Drive, and Sheets. Enables agents to operate within existing Google workflows.

INTEGRATION

48. Slack/Teams Integration

Posts updates, responds to commands, and participates in channels. The agent becomes a team member in your communication tool.

INTEGRATION

49. Stripe/Payment Integration

Monitors payment events, triggers fulfillment workflows, and syncs revenue data with reporting skills.

INTEGRATION

50. Webhook Listener

Generic inbound webhook handler that routes events from any external system into the appropriate agent skill.

INTEGRATION

51. API Gateway

Exposes agent capabilities as API endpoints. External systems can trigger skills via HTTP requests.

6 Advanced Skill Patterns

Beyond the basic 51 skills above, there are six advanced patterns that emerge when skills are composed together:

  1. 52. Skill Chaining — Output of one skill becomes input to another. Lead scoring feeds lead routing feeds follow-up sequencing. A three-skill chain that replaces an entire sales ops workflow.
  2. 53. Parallel Execution — Multiple skills run simultaneously on the same input. A new transcript triggers extraction, scoring, coaching note generation, and viral moment identification all at once.
  3. 54. Conditional Branching — Skill output determines which skill runs next. If content QA score is above 80, publish. If between 60-80, send to human review. Below 60, regenerate.
  4. 55. Scheduled Batch Processing — Skills that accumulate inputs throughout the day and process them in a batch. Collect all rep activities, then generate end-of-day performance summaries.
  5. 56. Cross-Agent Delegation — One agent invokes a skill on a different agent. The command agent asks the analytics agent for a report, then includes it in the daily briefing.
  6. 57. Self-Healing — When a skill fails, the system health monitor detects it, diagnoses the issue, and either fixes the configuration or escalates to a human with a specific diagnosis.

How to Build Your First Skill

If you are using OpenClaw or a similar agent framework, building a skill follows a standard pattern. Here is a minimal example of a daily briefing skill configuration:

skill:
  name: daily-briefing
  description: Generate morning intelligence report
  trigger:
    schedule: "0 7 * * *"   # 7 AM daily
  inputs:
    - source: crm
      query: "pipeline_summary"
    - source: analytics
      query: "traffic_24h"
    - source: content
      query: "scheduled_today"
  prompt: |
    You are the operations intelligence agent for {{company_name}}.
    Generate a morning briefing covering:
    1. Pipeline: total value, deals closing this week, stale deals
    2. Traffic: 24h summary, anomalies, top sources
    3. Content: what is publishing today, yesterday's performance
    4. Flags: anything requiring owner attention
    Keep it under 500 words. Lead with the most important item.
  output:
    format: markdown
    delivery:
      - channel: telegram
        recipient: "{{owner_id}}"
      - channel: file
        path: "briefs/{{date}}-morning.md"

This is a complete skill definition. The trigger, inputs, logic, and outputs are all explicitly defined. The agent framework handles execution, error handling, and logging. You define what the skill does. The framework handles how it runs.

Choosing the Right Skills for Your Business

You do not need all 57 skills. Most businesses start with 5 to 8 and add more as they see results. Here is the recommended starting set by business type:

For Service Businesses (Insurance, Real Estate, Financial Services)

For Content Agencies and Marketing Firms

For E-commerce and Product Businesses

The KOINO Resources page has downloadable skill templates for each of these configurations. If you want a custom skill set designed for your specific business, start with a free ops audit and we will map the highest-leverage skills for your operation.

The best agent fleet is not the one with the most skills. It is the one where every skill maps directly to a revenue-impacting workflow.

The Future of Agent Skills: 2026 and Beyond

Three trends are shaping where agent skills go next:

Multi-modal skills. Skills that process images, video, and audio natively. A content QA skill that can evaluate video thumbnails, not just text. A monitoring skill that can watch a live dashboard screenshot and detect visual anomalies. These capabilities are available in frontier models now and will be standard in open-source models by late 2026.

Skill marketplaces. Communities of agent operators sharing and selling proven skill configurations. Instead of building every skill from scratch, you install a battle-tested lead scoring skill from an operator who has refined it across 50 deployments. OpenClaw's ClaHub is the earliest version of this — a registry where operators publish and discover skills.

Self-evolving skills. Skills that modify their own configurations based on performance data. A content generation skill that notices short-form posts outperform long-form on Wednesdays and automatically adjusts its output format. This is not AGI — it is parameter optimization within defined bounds. But it means skills get better over time without human tuning.

The businesses that start building their skill libraries now will have the deepest, most refined agent capabilities when these trends mature. Agent skills compound. Every week they run is another week of data, patterns, and optimizations that new deployments do not have.

Get the full skill library for your business type

Our free ops audit identifies the 5-8 highest-leverage skills for your specific operation, with configuration templates you can deploy immediately.

Get Your Free Ops Audit → Browse Resources →