KS
Killer-Skills
Documentation

Guide

System Overview

Killer-Skills uses a modular architecture designed for extensibility and cross-platform compatibility.

Core Components

Skills

Skills are atomic units of AI capability. Each skill is defined by a SKILL.md file that contains instructions for the AI agent.

Workflows

Workflows orchestrate multiple skills to accomplish complex tasks. They define step-by-step processes that the AI follows.

Tools

Tools are executable functions that skills can invoke, such as calling APIs, reading files, or running commands.

File Structure

.agent/
├── skills/
│   └── my-skill/
│       └── SKILL.md
├── workflows/
│   └── my-workflow.md
└── config.json