Herokuからアマゾン ウェブ サービス(AWS)へのワークロード(処理内容)移行を支援します。 **使用場面:** Herokuからの移行、Herokuアプリの移動、Heroku PostgresのRDS(関係型データベース)への移行、Heroku RedisのElastiCache(キャッシュサービス)への移行、Heroku KafkaのMSK(メッセージング基盤)への移行、Dyno(Heroku計算単位)のElastic Beanstalk(アプリケーション実行環境)への移行、DynoのFargate(コンテナ実行環境)への移行、Heroku Private Spaceの移行、Herokuからの離脱、マイグレーション戦略のシミュレーション、コスト再算出、複数シナリオの比較検討など。 **処理内容:** 6段階のプロセスを実行します: 1. **発見**: 認証済みのHeroku CLIを通じてHerokuのリソースを実際に読み込むか、Terraformファイル・Procfile・app.json・請求データをもとに確認(情報参照のみで同意ゲート対応) 2. **要件確認**: 移行に必要な要件を整理 3. **設計**: AWSアーキテクチャ(システム構成)を設計 4. **コスト見積**: 移行にかかる費用を算出 5. **成果物生成**: 移行に必要なファイルやスクリプトを生成 6. **フィードバック収集**: オプションのフィードバック取得 見積もり後は、再発見を実施せずに地域・冗長性・計算方式・Graviton(プロセッサタイプ)シナリオの再価格化が可能です。要件確認は、設計・見積・生成の前に完了する必要があります。 **マッピング方式:** シンプルな階層構造で、Dyno→Elastic Beanstalk(既定)、PostgreSQL→RDS/Aurora、Redis→ElastiCache、Kafka→MSKなど、代表的なサービスを自動割り当てします。13以上の一般的なアドオンは高速対応表で処理します。Cedar/Firの世代判定はv1では検出のみです。Pipeline機能とReview Appsも検出のみです。 **使用不可:** GCPまたはAzureからAWSへの移行、AWS からHerokuへの逆方向移行、移行意図のない一般的なAWSアーキテクチャ相談、Heroku間のリファクタリング、Heroku離脱を伴わないマルチクラウド運用。
Migrate workloads from Heroku to AWS. Triggers on: migrate from Heroku, Heroku to AWS, move off Heroku, migrate Heroku app, migrate Heroku Postgres to RDS, migrate Heroku Redis to ElastiCache, migrate Heroku Kafka to MSK, migrate dynos to Elastic Beanstalk, migrate dynos to Fargate, Heroku migration, move from Heroku to AWS, migrate Heroku Private Space, Heroku to Elastic Beanstalk, Heroku to ECS, Heroku to Fargate, leave Heroku, migrate off Heroku platform, what-if workshop, reprice Heroku migration, compare migration scenarios, workshop mode. Runs a 6-phase process: discover Heroku resources live via the authenticated Heroku CLI (read-only, consent-gated) and/or from Terraform files, Procfile/app.json, and optional billing exports, clarify migration requirements, design AWS architecture, estimate costs, generate migration artifacts, and collect optional feedback. After Estimate, an optional what-if workshop can reprice region/HA/compute/Graviton scenarios without re-discovery. Clarify must finish before Design, Estimate, or Generate. Uses a flat resource model (no clustering or dependency graphs) with deterministic mapping tables for core services (Dynos → Elastic Beanstalk by default, Postgres → RDS/Aurora, Redis → ElastiCache, Kafka → MSK) and a fast-path table for 13+ common add-ons. Cedar/Fir generation detection is detect-only in v1. Pipeline/Review Apps are detect-only. Do not use for: GCP or Azure migrations to AWS, AWS-to-Heroku reverse migration, general AWS architecture advice without migration intent, Heroku-to-Heroku refactoring, or multi-cloud deployments that do not involve migrating off Heroku.
heroku_* Terraform, and the account is authoritative for what actually runs. Live capture is strictly read-only (an exact-command whitelist of list/info commands), requires explicit consent, never captures config var values (key names only), and never extracts the API token. Terraform files (.tf with heroku_* resources) and repo artifacts (Procfile, app.json) remain fully supported; when both live and Terraform data exist, live wins for current state, Terraform supplements structure and provenance, and disagreements are surfaced as drift — never silently resolved.references/phases/workshop/workshop.md) to change region, HA, compute target, or CPU architecture (x86 vs Graviton), refresh Design + Estimate, and compare up to 5 priced scenarios — without re-running Discover. Region dollar deltas need awspricing MCP; without it, rates stay us-east-1-cache-based. Workshop arch defaults to x86_64 here (EB tables historically x86-first).$MIGRATION_DIR = The run-specific directory under .migration/ (e.g., .migration/0315-1030/). Set during Phase 1 (Discover).Phase and unit files carry a YAML frontmatter block that declares how the phase is
composed — its inputs, the fragments it runs, the assembler that combines them,
what it produces, its gates, and what it requires/advances-to. The DSL interpreter
contract is the vendored references/vendored/dsl/INTERPRETER.md: it defines every
frontmatter key, the fragment/assembler model, and the interpreter loop. Load it
first (once, at the start of a migration), then execute a phase file's prose
body. Elsewhere in this skill, INTERPRETER.md (without a path) refers to this
same loaded contract.
Frontmatter is being introduced phase-by-phase; a phase file without it runs from its prose as before.
Each phase loads reference files on demand. To keep per-turn context manageable and prevent instruction-following degradation:
design.md, generate.md) contain short routing logic that points to detailed sub-files. Load the sub-file only when its path is selected.Each phase declares its own conditional reference/knowledge loads in frontmatter (a fragment _trigger or a _knowledge entry's _when); do not maintain a separate load-condition table here.
When adding new reference files, verify the phase's total loaded instructions remain under budget. If a new file would exceed ~800 lines when combined with other loaded refs, split it or make it conditional.
This skill is driven by the interpreter loop in INTERPRETER.md (§ The interpreter
loop): it reads .phase-status.json, determines the current phase, runs each
phase's _preconditions / fragments / _assemble / _postconditions, advances on
HANDOFF_OK via _advances_to, and validates state. The phase set, ordering, and
gates are all derived from the phase files' frontmatter and INTERPRETER.md — they
are not restated here.
Cold start (entry phase). On a cold start — no .migration/ run with a
.phase-status.json yet — begin at references/phases/discover/discover.md, this
skill's entry phase (the one carrying _init: true). The interpreter loads THIS
phase directly; it does not scan every phase's frontmatter to discover the root.
All subsequent phases are reached by following each phase's _advances_to. On a
warm start, current_phase in .phase-status.json is authoritative except
when deferred-advance sidebar resume applies (INTERPRETER.md § The
interpreter loop step 2 — Estimate completed + workshop pending/in_progress
must not re-run Estimate).
Clarify is mandatory (heroku policy). Do not skip Clarify or jump straight to
Design, Estimate, or Generate even if the user asks — there is no exception for
"quick" or "obvious" migrations. A preferences.json that was not produced by an
actual Clarify run does not count. If asked to skip, refuse briefly and run
Clarify.
Migration state lives in $MIGRATION_DIR (.migration/[MMDD-HHMM]/), created on
the first phase and persisted across invocations. The state file is
.phase-status.json; its shape is defined by
references/vendored/state/phase-status.schema.json, and how it is created, validated, and
updated across the lifecycle is defined in INTERPRETER.md § The interpreter loop.
The .migration/ directory is protected by a .gitignore created at init.
awspricing (for cost estimation):
get_pricing, get_pricing_service_codes, get_pricing_service_attributes toolsreferences/vendored/pricing/aws-infra-pricing.json (cached AWS infrastructure rates, ±5-10% for infrastructure). MCP is secondary — used only for services not found in the pricing file.heroku-to-aws/
├── SKILL.md ← You are here (skill entry point)
│
├── references/
│ ├── phases/
│ │ ├── discover/
│ │ │ ├── discover.md # Phase 1: Discover orchestrator
│ │ │ ├── discover-terraform.md # Terraform discovery
│ │ │ ├── discover-live-capture.md # Live CLI capture (main-window pre-work, consent-gated)
│ │ │ ├── discover-live.md # Live discovery fragment (parses live-capture/)
│ │ │ └── discover-billing.md # Billing data parsing
│ │ ├── clarify/
│ │ │ └── clarify.md # Phase 2: Adaptive questions (12–15, batched ≤5)
│ │ ├── design/
│ │ │ └── design.md # Phase 3: Design orchestrator (flat single-pass mapping)
│ │ ├── estimate/
│ │ │ └── estimate.md # Phase 4: Cost projection
│ │ ├── workshop/
│ │ │ ├── workshop.md # Sidebar: optional post-Estimate what-if
│ │ │ ├── workshop-sheet.md # Assumption sheet knobs
│ │ │ ├── workshop-refresh.md # Patch prefs → Design → Estimate → snapshot
│ │ │ ├── workshop-compare.md # Side-by-side scenarios
│ │ │ └── workshop-assemble.md # Resolve sidebar → return to Generate
│ │ ├── generate/
│ │ │ ├── generate.md # Phase 5: Generate orchestrator
│ │ │ ├── generate-terraform.md # Terraform configurations
│ │ │ ├── generate-docs.md # MIGRATION_GUIDE.md + README.md
│ │ │ ├── generate-report.md # migration-report.html (stakeholder + scenarios)
│ │ │ └── generate-eks.md # EKS manifests when design has EKS
│ │ └── feedback/
│ │ └── feedback.md # Phase 6: Feedback collection (reuses shared)
│ │
│ └── shared/ # heroku-to-aws's own shared references
│ ├── README.md # what lives here + pointers to plugin-neutral shared data
│ ├── heroku-pricing-cache.md # Heroku plan pricing (source-side baseline)
│ ├── schema-discover-heroku.md # heroku-resource-inventory.json schema
│ └── schema-workshop-scenarios.md # scenarios/ + preferences.workshop contract
│
├── knowledge/design/ # design lookup DATA (pure data, referenced by
│ │ # design.md _knowledge, gated per _when)
│ ├── dyno-eb-sizing.json # Dyno type → Elastic Beanstalk EC2 instance type
│ ├── dyno-fargate-sizing.json # Dyno type → Fargate CPU/memory
│ ├── eks-pod-sizing.json # Dyno type → EKS pod sizing + node selection
│ ├── postgres-rds-sizing.json # Postgres plan → RDS/Aurora sizing
│ ├── redis-elasticache-sizing.json # Redis plan → ElastiCache sizing
│ ├── kafka-msk-sizing.json # Kafka plan → MSK sizing
│ └── fast-path-addons.json # Add-on → AWS deterministic mappings (13+ entries)
| Condition | Action |
|---|---|
.phase-status.json missing phase gate |
Stop. Output: "Cannot enter Phase X: Phase Y-1 not completed. Start from Phase Y or resume Phase Y-1." |
| awspricing unavailable after 3 attempts | Display user warning about ±5-10% accuracy. Use references/vendored/pricing/aws-infra-pricing.json. Add pricing_source: "cached_fallback" to estimation-infra.json. |
| User skips questions or says "use defaults for the rest" | Apply documented defaults for remaining questions. Phase 2 completes either way. |
| Dyno type not in selected compute sizing table | Reject mapping for that formation. Output: "Unsupported dyno type: {type}. Cannot map to target compute service." |
| Add-on not in Fast-Path Table | Mark as "Deferred — specialist engagement". No automated mapping produced. |
us-east-1 (unless user specifies otherwise)db.t4g.micro for databases, 0.5 CPU for Fargate)references/vendored/estimate/complexity-tiers.json.The interpreter loop (INTERPRETER.md § The interpreter loop) drives phase
sequencing, gates, and state. This section defines only the heroku-specific
sidebar orchestration: WHERE the optional workshop and feedback
sidebars are offered (placement is orchestration prose, not part of the phase
contract). Both are _kind: sidebar — off-backbone, trigger-entered, never
current_phase.
Plan-share links are GATED OFF. The share landing page (
https://aws.amazon.com/startups/migrate/connect) is not yet live (404). Do NOT offer, generate, or present a share link at any sidebar. The share-link spec is preserved inreferences/phases/feedback/feedback-collect.mdStep 3 (itself gated) for when the page ships; restoring the share prompts here is the un-gating change.
After Discover: No prompt. Proceed directly to Clarify.
After Estimate: First offer the what-if workshop sidebar per
estimate-assemble.md (Enter workshop / Proceed toward Generate). Outer
Estimate keeps current_phase: estimate until workshop is resolved (entered
then exited via workshop-assemble.md, or declined). If the user enters
workshop, follow references/phases/workshop/workshop.md. Then, if
phases.feedback is "pending":
Would you like to share quick feedback? (5 optional questions +
anonymized usage data — never resource names, file paths, or
account IDs)
[A] Yes, share feedback
[B] No thanks, continue to Generate
references/phases/feedback/feedback.md, execute it. Set phases.feedback to "completed". Continue to Generate.phases.feedback to "completed". Continue to Generate.Workshop resume (mandatory): If current_phase == "estimate" AND
phases.estimate == "completed" AND phases.workshop is "pending" or
"in_progress", do not recompute Estimate. If "pending", re-present the
post-Estimate workshop offer from estimate-assemble.md. If "in_progress",
load references/phases/workshop/workshop.md. Generate must wait until
phases.workshop == "completed" (entered+exited or declined).
Warm start / explicit what-if: If the user says "what if", "reprice",
"workshop mode", or "compare scenarios" and Estimate artifacts already exist,
load references/phases/workshop/workshop.md directly (respect Generate
_re_entry_guard when Terraform was already produced). Knobs on the pilot
sheet: region, HA, compute target, cost optimization, CPU architecture
(x86 vs Graviton). There is no traffic-multiplier knob in v1.
After Generate: No prompt. If phases.feedback is still "pending", set it to "completed" and mark the migration complete.
Critical constraint: Follow each phase reference file's workflow exactly. If unable to complete a step, stop and report the specific issue. Do not fabricate or infer data.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。