Skip to content

Custom Skills

Actioner comes with 9 built-in skills. You can add your own.

Built-in Skills

SkillPathPurpose
Researchcontainer/skills/research/Web research and primary source chasing for threat intelligence
Ingestcontainer/skills/ingest/RSS feed ingestion, article triage, deduplication, and topic grouping
IOC Extractcontainer/skills/ioc-extract/Extract and defang IOCs, map TTPs to MITRE ATT&CK
Rule Gencontainer/skills/rule-gen/Generate and validate Sigma, YARA, Snort, and Suricata rules
Threat Scancontainer/skills/threat-scan/2-hour RSS scan cycle with LLM triage and proactive search
Schedule Reportcontainer/skills/schedule-report/Set up or manage daily briefing schedule
Agent Browsercontainer/skills/agent-browser/Browse the web, read articles, interact with pages
Capabilitiescontainer/skills/capabilities/Show installed skills, tools, and system info
Statuscontainer/skills/status/Quick health check on session, workspace, and tasks

Creating a Skill

bash
mkdir -p container/skills/my-skill

Create container/skills/my-skill/SKILL.md:

markdown
---
name: my-skill
description: What this skill does and when to use it.
---

# My Skill

Instructions for the agent when this skill is invoked.

## Workflow
1. Step one
2. Step two

## Output
What the skill produces.

Skills in container/skills/ are synced to each container's .claude/skills/ at startup.

MIT License