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.
| Skill | Description |
|---|---|
| cdk-review | Review AWS CDK projects against proven best practices and generate a structured REVIEW.md report with severity-classified findings. |
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-reviewThis 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.).
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/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):nameanddescription— 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.
MIT
Taimos GmbH specializes in AWS cloud automation and infrastructure consulting, with a focus on CDK, serverless, and DevOps practices for small and medium enterprises.