Skip to content

taimos/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Taimos AI Skills

A collection of public Agent Skills by Taimos GmbH — reusable prompt modules that extend AI coding agents with AWS and CDK expertise.

Works with Claude Code, Cursor, Codex, GitHub Copilot, OpenCode, Kiro, and any other agent that follows the Agent Skills spec.

Available Skills

Skill Description
cdk-review Review AWS CDK projects against proven best practices and generate a structured REVIEW.md report with severity-classified findings.

Installation

Using the Skills CLI (recommended)

The skills CLI auto-detects your installed agents and sets up skills for all of them:

# Install all skills
npx skills add taimos/skills

# List available skills
npx skills add taimos/skills --list

# Install a single skill
npx skills add taimos/skills --skill cdk-review

This works across Claude Code, Cursor, Codex, GitHub Copilot, OpenCode, and others — the CLI symlinks each skill into the agent's expected directory (.claude/skills/, .cursor/skills/, .codex/skills/, etc.).

Manual installation

Copy the desired skill folder into your agent's skills directory:

# Claude Code
mkdir -p .claude/skills
cp -r skills/cdk-review .claude/skills/

# Cursor
mkdir -p .cursor/skills
cp -r skills/cdk-review .cursor/skills/

# Or the shared standard directory
mkdir -p .agents/skills
cp -r skills/cdk-review .agents/skills/

Skill Structure

Each skill is a self-contained folder with a SKILL.md file:

skills/
  <skill-name>/
    SKILL.md          # Skill definition with frontmatter and instructions
    templates/        # Optional supporting files (must stay within the skill folder)
    references/       # Optional reference material

The SKILL.md file contains:

  • Frontmatter (--- block): name and description — the description acts as the routing rule that determines when the agent loads the skill, so be specific
  • Instructions: Detailed prompts that guide the agent's behavior when the skill is active

Skills must be self-contained. Do not reference files outside the skill folder — symlink and copy-based install mechanisms break on ../ paths.

License

MIT

About Taimos

Taimos GmbH specializes in AWS cloud automation and infrastructure consulting, with a focus on CDK, serverless, and DevOps practices for small and medium enterprises.

About

Collection of Taimos crafted Agent Skills

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors