Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 2.06 KB

File metadata and controls

46 lines (31 loc) · 2.06 KB

agentic-engineering

A shared repo for skills, scripts, workflows, and anything else the team may find useful when working with AI coding agents.

Structure

skills/          # Kilo skills — drop-in instruction sets for specialized tasks

Skills

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

Setup: Adding This Repo to Your Kilo Config

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:

{
  "skills": {
    "paths": ["~/path/to/agentic-engineering/skills"]
  }
}

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.

Adding a Skill

  1. Create a directory under skills/<name>/.
  2. Add a SKILL.md with a frontmatter name and description field.
  3. The skill is automatically available — no extra registration needed as long as this repo's skills/ directory is in your skills.paths config (see Setup above).

Contributing

Open a PR with your addition. Keep skills focused on a single, well-defined task so they're easy to discover and reuse.