Home / minorun365 / agent-builder-skills · skills/kb-lambda-web-adapter-cdk/SKILL.md · GitHub

kb-lambda-web-adapter-cdk skillA

kb-lambda-web-adapter-cdk is agent-read markdown (skill) from minorun365/agent-builder-skills: AIエージェントのWebアプリを「AWS CDK(デプロイはCDKD)+ Lambda Web Adapter + CloudFront + AgentCore Runtime」で組むときの全体構成。スタックの分け方、画面を配信するLambdaコンテナのDockerfileと配信サーバー、Function URL を CloudFront の OAC で守る設定と追加で要る権限、runtime-config.json で環境値を渡す型、フロントから AgentCore を直接呼ぶ配線、ローカル開発、デプロイ前後の検証。新しくエージェントのWebアプリを作るとき、Amplify Hosting 以外の配信基盤を選ぶとき、CloudFront 経由の Function URL が 403 になるときに読む。.

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# Lambda Web Adapter + CDK で組むエージェントWebアプリ

画面の配信と、エージェントの実行を、どちらもコンテナにして CDK で一括管理する構成。
動く実物は [minorun365/marp-agent](https://github.com/minorun365/marp-agent)(`infra/` 配下)。迷ったら実物を読む。

関連スキル:Runtime の細部は `kb-agentcore-cdk`、エージェント本体は `kb-strands-agentcore`、
認証は `kb-demo-app-auth`、ストリーミングの受け方は `kb-frontend-sse`、デプロイコマンドは `cdkd-deploy`。

## 1. 全体像

```
ブラウザ
  │  ① 画面(HTML/JS)と runtime-config.json
  ▼
CloudFront ──OAC(SigV4)──▶ Lambda Function URL(AWS_IAM)
                              └ Lambdaコンテナ:Lambda Web Adapter + Node の配信サーバー
  │
  │  ② Cognito でサインイン(ID/アクセストークンを取得)
  │
  │  ③ エージェント呼び出し(Authorization: Bearer <JWT>、SSE で受信)
  ▼
AgentCore Runtime(コンテナ。JWT オーソライザーが Cognito のトークンを検証)
  └ Strands Agents + Bedrock のモデル
```

- **画面の配信とエージェントの実行は別のコンテナに分ける。** 画面は Lambda、エージェントは AgentCore Runtime
- **エージェントの呼び出しは CloudFront も Lambda も通さない。** ブラウザから AgentCore のエンドポイントへ直接つなぐ。
  Lambda を挟むと、応答サイズと実行時間の上限がエージェントの長い応答にそのまま効いてしまう
- Lambda Web Adapter(以下 LWA)は Lambda の拡張機能。ふつうの HTTP サーバーを、コードを変えずに Lambda で動かせる。
  **「Lambda」と略さない**——ハンドラ関数を書く普通の Lambda とは作りが別物なので、構成図でも LWA と明記する

### この構成を選ぶ理由

- インフラが CDK の1系統にまとまる。認証・エージェント・配信のあいだの値の受け渡しが、スタック間参照だけで済む
…

Read the whole file at its exact version.

How to install

Latest version
mdr add minorun365/agent-builder-skills/kb-lambda-web-adapter-cdk@git:20260920.61904e5
Exact content
mdr add minorun365/agent-builder-skills/kb-lambda-web-adapter-cdk@sha256:7702a9198a14aad5

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_gwux2wzdjevozb7f.svg)](https://markdownregistry.com/a/art_gwux2wzdjevozb7f)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260920.61904e5 latest2026-09-20 61904e5 17,359 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (17359 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

minorun365/agent-builder-skills · 40 stars · license Apache-2.0 · pushed 2026-09-21 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_gwux2wzdjevozb7f
GET https://markdownregistry.com/api/v1/resolve?ref=minorun365/agent-builder-skills/kb-lambda-web-adapter-cdk
GET https://markdownregistry.com/api/v1/blob/7702a9198a14aad5b550338b8f00c4be379fb48253c7d6aded6baceff72ce1ce

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from minorun365/agent-builder-skills

cdkd-deploy skill
minorun365/agent-builder-skills · skills/cdkd-deploy/SKILL.md · Deploy, diff, bootstrap, inspect, roll back, or destroy AWS CDK applications with the community CDKD CLI while…
git:20260920.61904e5 · audit A · 40 stars
kb-agentcore-cdk skill
minorun365/agent-builder-skills · skills/kb-agentcore-cdk/SKILL.md · AgentCore CDK・デプロイ・ランタイム統合のナレッジ。Runtime作成、JWT認証、SSE、Dockerfile、コンテナ管理、Browser Tool等
git:20260920.61904e5 · audit A · 40 stars
kb-agentcore-identity skill
minorun365/agent-builder-skills · skills/kb-agentcore-identity/SKILL.md · AgentCore Identity(アウトバウンド認証)のナレッジ。3LO/M2M/デコレータ分離/callback等
git:20260920.61904e5 · audit A · 40 stars
kb-agentcore-observability skill
minorun365/agent-builder-skills · skills/kb-agentcore-observability/SKILL.md · AgentCore の Observability ナレッジ。OpenTelemetry 必須4点セット(OTEL_EXPORTER設定・StrandsTelemetry・traceable デコレータ・Langfuse連携)、EMF…
git:20260920.61904e5 · audit A · 40 stars
kb-demo-app-auth skill
minorun365/agent-builder-skills · skills/kb-demo-app-auth/SKILL.md · デモアプリ・Webアプリの Cognito 認証のおすすめ構成。「Googleで続ける」か「メール+パスキー(パスワードも併用可)」の2経路をCDKとフロントでどう組むか、パスキーが動かない設定の罠、Google client…
git:20260920.61904e5 · audit A · 40 stars
kb-frontend-sse skill
minorun365/agent-builder-skills · skills/kb-frontend-sse/SKILL.md · SSEストリーミング処理のナレッジ。基本パターン/タイムアウト/リトライ/モック/PDF生成等
git:20260920.61904e5 · audit A · 40 stars
kb-strands-agentcore skill
minorun365/agent-builder-skills · skills/kb-strands-agentcore/SKILL.md · Strands Agents フレームワークのナレッジ。Agent作成、ツール定義、イベント処理、会話履歴管理等(CDKは /kb-agentcore-cdk、Observabilityは…
git:20260920.61904e5 · audit A · 40 stars

Every file in minorun365/agent-builder-skills

Browse by kind, by grade A, or by owner.