Repository of Agent Skills for Konecty ecosystem. Skills are folders of instructions and resources that AI agents (e.g. Cursor, Claude Code) load dynamically to perform specialized tasks in a repeatable way.
For the Agent Skills standard, see agentskills.io. This repo is inspired by anthropics/skills.
| Path | Purpose |
|---|---|
| ./skills | Konecty project skills (each skill in its own folder with SKILL.md). Example: konecty-session (OTP login and persist token for other skills). |
| ./agents/skills | External/reference skills not part of the Konecty product set. Includes skill-creator (from anthropics/skills) for creating and improving skills. |
| ./template | Template for creating new skills |
| ./spec | Reference to the Agent Skills specification |
| ./docs | Project documentation and changelog |
- Copy the template folder or create a new folder under
skills/. - Add a
SKILL.mdwith YAML frontmatter and instructions:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it.
---
# My Skill Name
Instructions the agent will follow when this skill is active.
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2Frontmatter (required):
name— Unique identifier (lowercase, hyphens for spaces).description— What the skill does and when the agent should use it.
The rest of the file is Markdown: instructions, examples, and guidelines.
Skills in this repo can be installed under .cursor/skills/ (or your Cursor skills path). Each skill is a folder containing SKILL.md; the agent uses the description to decide when to load the skill.