A personal library of reusable AI skills by Anders Hybertz — owner of COM (comtechconsulting.dk), software architecture consultant, Copenhagen.
Three decades of industry experience distilled into composable, tool-agnostic skill files. Each skill encodes judgment, not just instructions.
A skill is a focused, reusable prompt unit — one clear purpose, portable across AI tools. Think of them as functions: single-responsibility, composable, parameterizable.
Each skill is a markdown file with YAML frontmatter (metadata) and a structured body (context, goals, checklists, pitfalls, output guidance). Supporting files live in subdirectories alongside the SKILL.md.
skills/
engineering/ — architecture, development, code review, static sites
design/ — UI/UX judgment, accessibility, visual hierarchy
tooling/ — specific tool workflows (Astro, PDF extraction, etc.)
schemas/ — JSON Schema for skill frontmatter validation
scripts/ — repo-level tooling (validate, index builder)
Each skill directory follows this convention:
skill-name/
SKILL.md — the skill itself (frontmatter + body)
examples/ — input/output pairs showing the skill in action
references/ — supporting reference material
templates/ — copy-paste code/config templates
scripts/ — executable scripts the skill references
Only the directories that are actually needed are present — no empty scaffolding.
---
name: skill-name # required, kebab-case
description: one-liner # required
version: "1.0.0" # required, quoted SemVer
tags: [tag1, tag2] # optional, for discovery
tool_agnostic: true # optional, signals broad portability
authors: [Anders Hybertz] # required
---Validate against schemas/skill_schema.json using scripts/validate.py.
Drop the skill directory into ~/.hermes/skills/<category>/. Hermes picks it
up automatically on next invocation.
Copy the SKILL.md body (below the frontmatter) into your tool's system prompt or instruction file. The content is deliberately tool-agnostic.
python3 scripts/validate.py # check all skills against schema
python3 scripts/index_builder.py # regenerate index.yaml| Category | Skills |
|---|---|
| engineering | senior-software-architecture, senior-software-development, codebase-review-and-design-assessment, astro-static-sites, static-site-seo-and-og |
| design | senior-ui-ux |
| tooling | extract-pdf-text-on-macos-with-pypdf |
GPL v3 — see LICENSE.