Skip to main content

Aws Ops

@webframp/aws-opsv2026.09.04.1· 7d agoWORKFLOWSREPORTS
01README

AWS Operations Toolkit - Unified incident investigation and daily operational visibility.

This extension provides workflows for investigating AWS outages and running daily infrastructure pulse checks. Gathers data from CloudWatch Logs, Metrics, Alarms, X-Ray Traces, resource inventory, networking, Cost Explorer, and GitHub.

Quick Start

# Install the extension (auto-resolves dependencies)
swamp extension pull @webframp/aws-ops

# Create model instances for your region
swamp model create @webframp/aws/logs aws-logs --global-arg region=us-east-1
swamp model create @webframp/aws/metrics aws-metrics --global-arg region=us-east-1
swamp model create @webframp/aws/alarms aws-alarms --global-arg region=us-east-1
swamp model create @webframp/aws/traces aws-traces --global-arg region=us-east-1
swamp model create @webframp/aws/inventory aws-inventory --global-arg region=us-east-1
swamp model create @webframp/aws/networking aws-networking --global-arg region=us-east-1

# Run the investigate-outage workflow
swamp workflow run @webframp/investigate-outage

Required IAM Permissions

  • logs:DescribeLogGroups
  • logs:StartQuery
  • logs:GetQueryResults
  • logs:FilterLogEvents
  • cloudwatch:ListMetrics
  • cloudwatch:GetMetricStatistics
  • cloudwatch:GetMetricData
  • cloudwatch:DescribeAlarms
  • cloudwatch:DescribeAlarmHistory
  • xray:GetServiceGraph
  • xray:GetTraceSummaries

Included Components

Workflows

  • @webframp/investigate-outage - Unified incident investigation workflow that:
    • Gathers alarm summary and active alarms
    • Analyzes Lambda Duration/Errors and ELB 5XX/latency metrics for anomalies
    • Gets X-Ray service dependency graph
    • Finds error traces and analyzes error patterns
    • Lists CloudWatch log groups and searches for error patterns
    • Inventories EC2 instances and Lambda functions
    • Lists load balancers and NAT gateways with health status
    • Gets alarm state change history
    • Generates an incident report summarizing all findings

Reports

  • @webframp/incident-report - Workflow-scope report that aggregates findings into:
    • Alarm status and recent state changes
    • Metric anomaly highlights (Lambda + ELB)
    • Trace error analysis with top faulty services
    • Infrastructure inventory (EC2, Lambda)
    • Networking status (load balancers, NAT gateways)
    • Actionable recommendations

Model Dependencies

The workflow expects these model instances (create them before running):

  • aws-logs - @webframp/aws/logs
  • aws-metrics - @webframp/aws/metrics
  • aws-alarms - @webframp/aws/alarms
  • aws-traces - @webframp/aws/traces
  • aws-inventory - @webframp/aws/inventory
  • aws-networking - @webframp/aws/networking
02Release Notes

2026.09.04.1

Changed: Bump @webframp/aws/logs 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/metrics 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/alarms 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/traces 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/inventory 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/networking 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.28.1 → 2026.08.29.1

Changed: Bump @webframp/github 2026.08.26.3 → 2026.08.28.1

2026.08.28.3

Changed: Normalized the extension license to Apache-2.0 and corrected the copyright holder to "Sean Escriva". Extensions that previously shipped an MIT LICENSE.md are now Apache-2.0, consistent with the repository root and every other extension. No code or behavioral changes.

Upgrade note: License text only. No API, schema, or runtime behavior changed.

2026.08.28.2

Fixed: Re-pinned the eight bumped @webframp/aws/* leaf dependencies (logs, metrics, alarms, traces, inventory, networking, alarm-investigation, cost-explorer) to 2026.08.28.1 — the versions published in the prior sweep. The 2026.08.28.1 release of this composite still pinned the pre-sweep 2026.08.26.x leaf versions (SDK 3.1114.0), so its dependency graph did not deliver the AWS SDK 3.1120.0 bump it was bumped alongside. @webframp/github was not part of the sweep and remains at 2026.08.26.3. No schema or behavioral changes.

2026.08.28.1

Changed: Bump @webframp/aws/logs 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/metrics 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/alarms 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/traces 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/inventory 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/networking 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/alarm-investigation 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/cost-explorer 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/github 2026.07.18.1 → 2026.08.26.3

2026.08.26.1

Changed: Normalized deno.json configuration for repo-wide consistency: added explicit compilerOptions.strict and migrated zod dependency to the import map (bare "zod" specifier instead of inline npm:zod@4.4.3). No behavioral changes — runtime resolution is identical.

03Workflows2
@webframp/investigate-outagec3866eb0-6190-4154-b8e1-304624aba93e

Unified AWS outage investigation workflow. Gathers data from CloudWatch Logs, Metrics, Alarms, X-Ray Traces, resource inventory, and networking to provide a comprehensive view of system health during an incident.

gather-observability-dataCollect data from all observability sources in parallel
1.check-alarmsaws-alarms.get_summary— Get alarm summary and active alarms
2.get-active-alarmsaws-alarms.get_active— Get all currently active alarms
3.analyze-metricsaws-metrics.analyze— Analyze Lambda Duration metrics for anomalies
4.analyze-errors-metricaws-metrics.analyze— Analyze Lambda Errors metrics
5.analyze-elb-5xxaws-metrics.analyze— Analyze ALB 5XX error count
6.analyze-elb-latencyaws-metrics.analyze— Analyze ALB target response time
7.get-service-graphaws-traces.get_service_graph— Get X-Ray service dependency graph
8.get-error-tracesaws-traces.get_errors— Get traces with errors or faults
9.analyze-trace-errorsaws-traces.analyze_errors— Analyze error patterns in traces
gather-logsSearch logs for errors (runs in parallel with observability)
1.list-log-groupsaws-logs.list_log_groups— Discover log groups
2.find-lambda-errorsaws-logs.find_errors— Search Lambda log groups for error patterns
gather-infrastructureCollect resource inventory and networking state (runs in parallel)
1.list-ec2-instancesaws-inventory.list_ec2— List EC2 instances across all states
2.list-lambda-functionsaws-inventory.list_lambda— List Lambda functions
3.list-load-balancersaws-networking.list_load_balancers— List ALBs and NLBs with target health
4.list-nat-gatewaysaws-networking.list_nat_gateways— List NAT gateway status
deep-divePerform deeper analysis based on initial findings
1.get-alarm-historyaws-alarms.get_history— Get alarm state change history
@webframp/morning-pulse460c619c-c59a-44bd-a2ad-27c8b819e8f6

Daily morning infrastructure pulse check. Gathers alarm state, alarm health verdicts, cost trend, and open PRs across user-specified regions, then generates a concise morning-pulse report you can skim in two minutes. Region-flexible via forEach — pass any combination of regions as input. Model instances must follow the naming convention: aws-alarms-{region}, alarm-investigation-{region}

alarmsAlarm summary and active alarms across all regions
1.summary-${{ self.region }}aws-alarms-${{ self.region }}.get_summary— Get alarm state counts and recent changes
2.active-${{ self.region }}aws-alarms-${{ self.region }}.get_active— Get alarms currently in ALARM state
alarm-triageTriage active alarms with verdicts
1.triage-${{ self.region }}alarm-investigation-${{ self.region }}.triage— Enrich alarms with health verdicts
costsCost trend for the last N days
1.trendaws-costs.get_cost_trend— Daily cost trend and direction
2.by-serviceaws-costs.get_cost_by_service— Cost breakdown by service
githubCheck for open pull requests
1.open-prsgithub.list_prs— List open PRs on the target repo
04Reports2
@webframp/incident-reportworkflow
incident_report.ts

Summarizes findings from the investigate-outage workflow into an actionable incident report

awsincident-responseopsobservability
@webframp/morning-pulse-reportworkflow
morning_pulse_report.ts

Daily infrastructure pulse: alarms, alarm health, costs, and open PRs

opsdailyaws
05Previous Versions19
2026.08.28.3

2026.08.28.3

Changed: Normalized the extension license to Apache-2.0 and corrected the copyright holder to "Sean Escriva". Extensions that previously shipped an MIT LICENSE.md are now Apache-2.0, consistent with the repository root and every other extension. No code or behavioral changes.

Upgrade note: License text only. No API, schema, or runtime behavior changed.

2026.08.28.2

Fixed: Re-pinned the eight bumped @webframp/aws/* leaf dependencies (logs, metrics, alarms, traces, inventory, networking, alarm-investigation, cost-explorer) to 2026.08.28.1 — the versions published in the prior sweep. The 2026.08.28.1 release of this composite still pinned the pre-sweep 2026.08.26.x leaf versions (SDK 3.1114.0), so its dependency graph did not deliver the AWS SDK 3.1120.0 bump it was bumped alongside. @webframp/github was not part of the sweep and remains at 2026.08.26.3. No schema or behavioral changes.

2026.08.28.1

Changed: Bump @webframp/aws/logs 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/metrics 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/alarms 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/traces 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/inventory 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/networking 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/alarm-investigation 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/cost-explorer 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/github 2026.07.18.1 → 2026.08.26.3

2026.08.26.1

Changed: Normalized deno.json configuration for repo-wide consistency: added explicit compilerOptions.strict and migrated zod dependency to the import map (bare "zod" specifier instead of inline npm:zod@4.4.3). No behavioral changes — runtime resolution is identical.

2026.08.28.2

2026.08.28.2

Fixed: Re-pinned the eight bumped @webframp/aws/* leaf dependencies (logs, metrics, alarms, traces, inventory, networking, alarm-investigation, cost-explorer) to 2026.08.28.1 — the versions published in the prior sweep. The 2026.08.28.1 release of this composite still pinned the pre-sweep 2026.08.26.x leaf versions (SDK 3.1114.0), so its dependency graph did not deliver the AWS SDK 3.1120.0 bump it was bumped alongside. @webframp/github was not part of the sweep and remains at 2026.08.26.3. No schema or behavioral changes.

2026.08.28.1

Changed: Bump @webframp/aws/logs 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/metrics 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/alarms 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/traces 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/inventory 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/networking 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/alarm-investigation 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/cost-explorer 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/github 2026.07.18.1 → 2026.08.26.3

2026.08.26.1

Changed: Normalized deno.json configuration for repo-wide consistency: added explicit compilerOptions.strict and migrated zod dependency to the import map (bare "zod" specifier instead of inline npm:zod@4.4.3). No behavioral changes — runtime resolution is identical.

updated dependencies

2026.08.28.1

2026.08.28.1

Changed: Bump @webframp/aws/logs 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/metrics 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/alarms 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/traces 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/inventory 2026.08.20.1 → 2026.08.26.3

Changed: Bump @webframp/aws/networking 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/alarm-investigation 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/aws/cost-explorer 2026.08.20.1 → 2026.08.26.2

Changed: Bump @webframp/github 2026.07.18.1 → 2026.08.26.3

2026.08.26.1

Changed: Normalized deno.json configuration for repo-wide consistency: added explicit compilerOptions.strict and migrated zod dependency to the import map (bare "zod" specifier instead of inline npm:zod@4.4.3). No behavioral changes — runtime resolution is identical.

updated dependencies

2026.08.26.1

2026.08.26.1

Changed: Normalized deno.json configuration for repo-wide consistency: added explicit compilerOptions.strict and migrated zod dependency to the import map (bare "zod" specifier instead of inline npm:zod@4.4.3). No behavioral changes — runtime resolution is identical.

2026.08.25.1

2026.08.25.1

Changed: Updated labels for improved extension discoverability. Added cross-cutting category labels (security, observability, finops, infrastructure, networking, compliance, devops, ai, incident-response) where applicable.

updated labels

2026.08.24.1

2026.08.24.1

Added: Troubleshooting section documenting the allowFailure all-steps behavior, the dead region workflow input in investigate-outage, the undocumented morning-pulse workflow and its additional model dependencies, report display limits, and profile configuration guidance.

2026.08.21.1

2026.08.21.1

Changed: incident_report and morning_pulse_report no longer swallow filesystem errors silently when reading a step's data artifact. A missing artifact (the normal case when a step didn't run) is still handled quietly, but permission errors, I/O errors, and malformed JSON are now logged with the artifact path and underlying error instead of disappearing into an empty catch block — a corrupt or unreadable artifact used to look identical to "no data available" in the generated report.

2026.08.20.1

Changed: Bump @webframp/aws/logs 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/metrics 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/alarms 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/traces 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/inventory 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/networking 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.13.1 → 2026.08.20.1

2026.08.15.1

Changed: Bump @webframp/aws/logs 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/metrics 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/alarms 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/traces 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/inventory 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/networking 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.02.1 → 2026.08.13.1

2026.08.05.1

Changed: Bump @webframp/aws/logs 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/metrics 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarms 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/traces 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/inventory 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/networking 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.01.1 → 2026.08.02.1

2026.08.02.1

Changed: Bump @webframp/aws/logs 2026.07.30.2 → 2026.08.01.1

Changed: Bump @webframp/aws/metrics 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarms 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/traces 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/inventory 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/networking 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.30.1 → 2026.08.01.1

2026.07.31.1

Changed: Bump @webframp/aws/logs 2026.07.24.1 → 2026.07.30.2

Changed: Bump @webframp/aws/metrics 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarms 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/traces 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/inventory 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/networking 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.24.1 → 2026.07.30.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1
2026.08.20.1

2026.08.20.1

Changed: Bump @webframp/aws/logs 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/metrics 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/alarms 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/traces 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/inventory 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/networking 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.05.1 → 2026.08.20.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.13.1 → 2026.08.20.1

2026.08.15.1

Changed: Bump @webframp/aws/logs 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/metrics 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/alarms 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/traces 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/inventory 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/networking 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.02.1 → 2026.08.13.1

2026.08.05.1

Changed: Bump @webframp/aws/logs 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/metrics 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarms 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/traces 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/inventory 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/networking 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.01.1 → 2026.08.02.1

2026.08.02.1

Changed: Bump @webframp/aws/logs 2026.07.30.2 → 2026.08.01.1

Changed: Bump @webframp/aws/metrics 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarms 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/traces 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/inventory 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/networking 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.30.1 → 2026.08.01.1

2026.07.31.1

Changed: Bump @webframp/aws/logs 2026.07.24.1 → 2026.07.30.2

Changed: Bump @webframp/aws/metrics 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarms 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/traces 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/inventory 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/networking 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.24.1 → 2026.07.30.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.08.15.1

2026.08.15.1

Changed: Bump @webframp/aws/logs 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/metrics 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/alarms 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/traces 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/inventory 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/networking 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.02.1 → 2026.08.05.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.02.1 → 2026.08.13.1

2026.08.05.1

Changed: Bump @webframp/aws/logs 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/metrics 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarms 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/traces 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/inventory 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/networking 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.01.1 → 2026.08.02.1

2026.08.02.1

Changed: Bump @webframp/aws/logs 2026.07.30.2 → 2026.08.01.1

Changed: Bump @webframp/aws/metrics 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarms 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/traces 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/inventory 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/networking 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.30.1 → 2026.08.01.1

2026.07.31.1

Changed: Bump @webframp/aws/logs 2026.07.24.1 → 2026.07.30.2

Changed: Bump @webframp/aws/metrics 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarms 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/traces 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/inventory 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/networking 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.24.1 → 2026.07.30.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.08.05.1

2026.08.05.1

Changed: Bump @webframp/aws/logs 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/metrics 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarms 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/traces 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/inventory 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/networking 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/alarm-investigation 2026.08.01.1 → 2026.08.02.1

Changed: Bump @webframp/aws/cost-explorer 2026.08.01.1 → 2026.08.02.1

2026.08.02.1

Changed: Bump @webframp/aws/logs 2026.07.30.2 → 2026.08.01.1

Changed: Bump @webframp/aws/metrics 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarms 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/traces 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/inventory 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/networking 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.30.1 → 2026.08.01.1

2026.07.31.1

Changed: Bump @webframp/aws/logs 2026.07.24.1 → 2026.07.30.2

Changed: Bump @webframp/aws/metrics 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarms 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/traces 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/inventory 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/networking 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.24.1 → 2026.07.30.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.08.02.1

2026.08.02.1

Changed: Bump @webframp/aws/logs 2026.07.30.2 → 2026.08.01.1

Changed: Bump @webframp/aws/metrics 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarms 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/traces 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/inventory 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/networking 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.30.1 → 2026.08.01.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.30.1 → 2026.08.01.1

2026.07.31.1

Changed: Bump @webframp/aws/logs 2026.07.24.1 → 2026.07.30.2

Changed: Bump @webframp/aws/metrics 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarms 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/traces 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/inventory 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/networking 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.24.1 → 2026.07.30.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.07.31.1

2026.07.31.1

Changed: Bump @webframp/aws/logs 2026.07.24.1 → 2026.07.30.2

Changed: Bump @webframp/aws/metrics 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarms 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/traces 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/inventory 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/networking 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.24.1 → 2026.07.30.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.24.1 → 2026.07.30.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.07.27.1

2026.07.27.1

Changed: Bump @webframp/aws/logs 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/metrics 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarms 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/traces 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/inventory 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/networking 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/alarm-investigation 2026.07.21.1 → 2026.07.24.1

Changed: Bump @webframp/aws/cost-explorer 2026.07.21.1 → 2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.07.24.1

2026.07.24.1

Changed: Bump dependency pins to latest published versions:

  • @webframp/aws/logs 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/metrics 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarms 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/traces 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/inventory 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/networking 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/alarm-investigation 2026.07.18.1 → 2026.07.21.1
  • @webframp/aws/cost-explorer 2026.07.18.1 → 2026.07.21.1
  • @webframp/github 2026.07.16.1 → 2026.07.18.1

updated dependencies

2026.07.20.1

2026.07.20.1

Changed: Refreshed dependency pins to the latest published releases. No behavioral changes to the incident-investigation or morning-pulse workflows and reports.

Upgrade note: Bumps the eight @webframp/aws/* model dependencies (logs, metrics, alarms, traces, inventory, networking, alarm-investigation, cost-explorer) 2026.05.20.1 → 2026.07.18.1, and @webframp/github 2026.05.14.1 → 2026.07.16.1, pulled automatically with this extension.

updated dependencies

2026.07.18.1

2026.07.18.1

Changed: Version bump only, no code changes.

2026.05.24.1

updated dependencies

2026.05.21.1
2026.05.13.1
06Stats
A
100 / 100
Downloads
36
Archive size
28.1 KB
  • Has README or module doc2/2earned
  • README has a code example1/1earned
  • README is substantive1/1earned
  • Most symbols documented1/1earned
  • No slow types (deprecated)1/1earned
  • Dependencies pass trust audit2/2earned
  • Has description1/1earned
  • Platform support declared (or universal)2/2earned
  • License declared1/1earned
  • Verified public repository2/2earned
07Platforms
08Labels