From 6becad96b2ded2490cd0f25e4ffa23f804eed095 Mon Sep 17 00:00:00 2001 From: bgagent <345885+scottschreckengaust@users.noreply.github.com> Date: Mon, 8 Jun 2026 19:37:58 +0000 Subject: [PATCH 1/2] feat(infra): add solution-tracking metrics ID to stack description (#292) Append the AWS solution-tracking identifier (uksb-wt64nei4u6) to the CloudFormation stack description so deployments are counted via AWS's standard usage-tracking mechanism. Co-Authored-By: Claude Opus 4.8 --- cdk/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdk/src/main.ts b/cdk/src/main.ts index 724f8696..c8bc2cc8 100644 --- a/cdk/src/main.ts +++ b/cdk/src/main.ts @@ -38,7 +38,7 @@ const stack = new AgentStack( stackName, { env: devEnv, - description: 'ABCA Development Stack', + description: 'ABCA Development Stack (uksb-wt64nei4u6)', }, ); From 4ff2469d31219d67022cc6af65834e9dd3ac203e Mon Sep 17 00:00:00 2001 From: bgagent <345885+scottschreckengaust@users.noreply.github.com> Date: Mon, 8 Jun 2026 23:08:47 +0000 Subject: [PATCH 2/2] docs(readme): add Operational Metrics Collection disclosure (#292) Companion to the uksb-wt64nei4u6 tracking ID: disclose the anonymous operational metrics AWS samples may collect. Placed between Disclaimer and License per AWS-sample README convention. Co-Authored-By: Claude Opus 4.8 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3fcccba9..d376b067 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,10 @@ A documentation site is available containing all design documents, roadmap and g The example provided in this repository is for experimental and educational purposes only. It demonstrates concepts and techniques but is not intended for direct use in production environments. +## Operational Metrics Collection + +Autonomous Background Coding Agent samples may collect anonymous operational metrics, including: the region a construct is deployed, the name and version of the construct deployed, and related information. We may use the metrics to maintain, provide, develop, and improve the constructs and AWS services. + ## License This library is licensed under the MIT-0 License. See the [LICENSE](./LICENSE) file.