Skip to content

konecty/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KonectySkills

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.

Structure

Path Purpose
./skills Konecty platform skills (each skill in its own folder with SKILL.md).
./.agents/skills External skills installed via CLI (managed by skills-lock.json).
./template Template for creating new skills
./spec Reference to the Agent Skills specification
./docs Project documentation and changelog

Creating a skill

  1. Copy the template folder or create a new folder under skills/.
  2. Add a SKILL.md with 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 2

Frontmatter (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.

Using skills in Cursor

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.

Credentials

Copy .env.example to .env and fill in the values:

cp .env.example .env
Credential When needed How to obtain
KONECTY_URL + KONECTY_TOKEN Testing skills locally against a Konecty instance Run the konecty-session skill (OTP login)
SNYK_TOKEN Security audit before publishing (uvx snyk-agent-scan@latest --skills) app.snyk.io/account
GitHub auth Publishing via gh skill publish gh auth login (one-time, interactive)
clawhub auth Publishing to OpenClaw clawhub login (one-time, interactive)
Socket auth Supply chain scan via socket ci socket login (one-time, interactive)

The Gen Agent Trust Hub audit is web-only — paste the skill URL at ai.gendigital.com/agent-trust-hub.

Documentation

About

Agent Skills for the Konecty ecosystem

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors