Skip to content

pokgak/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agent Skills

A collection of skills for AI coding agents. Skills are packaged instructions that extend agent capabilities.

Available Skills

Query observability backends (Loki logs, Prometheus/Mimir metrics, Tempo traces) with built-in best practices for context efficiency.

Use when: Debugging production issues, investigating errors, analyzing metrics, tracing requests.

Manage n8n workflows and troubleshoot executions. Supports workflow CRUD, node editing, credential management, and execution debugging.

Use when: Working with n8n workflows, webhook triggers, execution errors, or editing workflow nodes.

Interact with Linear issue tracking — list, create, update issues and projects, manage cycles, and add comments.

Use when: Working with Linear tickets, triaging issues, updating issue state/assignee/priority, or managing projects and cycles.

Installation

npx skills add pokgak/agent-skills

Usage

Skills activate automatically when relevant tasks are detected.

Show me error logs from the api service
What's the request rate for the checkout service?
Find slow traces over 1 second from the payment service

CLI

Each skill uses a standalone CLI:

Skill Structure

skills/<name>/
├── SKILL.md          # Agent instructions
├── README.md         # Documentation
├── metadata.json     # Version and references
└── reference/        # Supporting files

Contributors