cdk-dev

Automate CDK code implementation from issues and design documents across six phases.

1|Updated Jan 18, 2026
One-click install
npx skills add https://github.com/kasiopeiya/oidc-learning-sandbox --skill cdk-dev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cdk-dev
Source: https://github.com/kasiopeiya/oidc-learning-sandbox/tree/main/.claude/skills/cdk-dev
Command: npx skills add https://github.com/kasiopeiya/oidc-learning-sandbox --skill cdk-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

AWS CDKの実装をIssueと設計書の参照から自動で実行するコマンド。CDKコードの実装、テスト、合成までの一連の作業を自動化します。

Core Features & Use Cases

  • Issue読み込みと実装仕様抽出: docs/issues/ 配下のIssueファイルを読み込み、対象ファイルとラベルを特定
  • 設計書参照と実装方針決定: design/docsを参照して実装方針を決定
  • CDK実装と検証: 設計書とCDKルールに基づいてコードを生成・更新
  • テスト実行と結果報告: npm test を実行してテストを検証し、結果を提示
  • 合成と報告: npx cdk synth でテンプレートを生成し、結果と推奨アクションを報告

Quick Start

Run /cdk-dev with an Issue number or file reference to initiate the end-to-end CDK implementation workflow.

Frequently Asked Questions about cdk-dev

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate AWS CDK implementation from design documents?

Automating AWS CDK implementation from design documents involves extracting issue specifications, referencing design docs, generating CDK code, running tests, and synthesizing CloudFormation templates. This Skill executes that end-to-end workflow across six phases.

How does CDK synthesis automation work with issue tracking?

CDK synthesis automation works by reading issue files from docs/issues/, extracting target files and labels, determining implementation policy from design docs, generating code, and running npx cdk synth to produce CloudFormation templates with recommended next actions.

What is the best way to translate issue specifications into CDK code and tests?

The best way to translate issue specifications into CDK code is using a six-phase workflow that enforces CDK rules, generates code updates, validates with npm test, and synthesizes templates, providing phase-by-phase results and next actions.

Do I need design docs and issue files to automate infrastructure synthesis with CDK?

Yes, you need issue files under docs/issues/ and design documents to automate infrastructure synthesis with CDK. The workflow reads these inputs to determine implementation policy, target files, and labels before generating code and running synthesis.

Can I automate test execution and CloudFormation synthesis for AWS infrastructure projects?

You can automate test execution and CloudFormation synthesis for AWS infrastructure projects by running npm test to validate generated CDK code and npx cdk synth to generate templates, with the workflow reporting results and recommended actions.

Why does CDK synthesis fail after automated code generation?

CDK synthesis can fail after automated code generation if the generated code violates CDK rules or design specifications. The workflow enforces CDK rules during generation and validates via npm test before executing npx cdk synth to catch errors.