A shared repo for skills, scripts, workflows, and anything else the team may find useful when working with AI coding agents.
skills/ # Kilo skills — drop-in instruction sets for specialized tasks
Skills are loaded by Kilo on demand and inject detailed instructions and workflows into the agent's context. Each skill lives in skills/<name>/SKILL.md.
| Skill | Description |
|---|---|
linkedin-carousel |
Turn a blog post or article into a polished LinkedIn carousel, exported as a PDF |
pr-authorship-analysis |
Analyze merged PRs from the prior month, surfacing real contributors behind bot-created PRs |
shipping-calendar |
Generate a branded shipping calendar from a list of features or releases |
ui-fix-draft-pr |
Diagnose and fix a UI/layout bug, then produce a draft PR with before/after Playwright screenshots |
Clone the repo anywhere on your machine, then register the skills/ directory in your global Kilo config (~/.config/kilo/kilo.json) so the skills are available in every project:
Replace ~/path/to/agentic-engineering with the actual clone path. Kilo will discover every skills/<name>/SKILL.md file in that directory and make the skills available on demand.
Tip: Add to the global config (
~/.config/kilo/kilo.json) rather than a project config so you only need to do this once.
- Create a directory under
skills/<name>/. - Add a
SKILL.mdwith a frontmatternameanddescriptionfield. - The skill is automatically available — no extra registration needed as long as this repo's
skills/directory is in yourskills.pathsconfig (see Setup above).
Open a PR with your addition. Keep skills focused on a single, well-defined task so they're easy to discover and reuse.
{ "skills": { "paths": ["~/path/to/agentic-engineering/skills"] } }