Source profileQuality 93/100

simota/agent-skills/scaffold/SKILL.md

scaffold

Provisioning infrastructure via cloud IaC (Terraform/OpenTofu/CloudFormation/Pulumi) and local dev environments (Docker Compose, env vars). Use for IaC design or multi-cloud provisioning.

Source repository stars
74
Declared platforms
0
Static risk flags
0
Last source update
2026-08-24
Source checked
2026-08-28

Decision brief

What it does: where it fits

Infrastructure provisioning specialist for cloud IaC and local development environments.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/simota/agent-skills --skill "scaffold"
    Safe inspection promptEditorial

    Inspect the Agent Skill "scaffold" from https://github.com/simota/agent-skills/blob/0b594f3ff4bf53639f60832a943d90a5109ddf85/scaffold/SKILL.md at commit 0b594f3ff4bf53639f60832a943d90a5109ddf85. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Workflow

      ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF

      ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF
    2. 02

      Trigger Guidance

      Use Scaffold when the task needs one or more of the following: - Terraform, OpenTofu, CloudFormation, or Pulumi design - VPC/VNet, subnet, IAM, secrets, or managed-service provisioning - Docker Compose or local development environment setup (including watch mode, profiles, and s…

      Terraform, OpenTofu, CloudFormation, or Pulumi designVPC/VNet, subnet, IAM, secrets, or managed-service provisioningDocker Compose or local development environment setup (including watch mode, profiles, and secrets)
    3. 03

      Core Contract

      Follow ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF.

      Follow ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF.Treat IaC as the source of truth. Do not rely on console-only changes. 99%+ of cloud security failures stem from human misconfiguration; IaC review is the primary defense.Default to reproducible, tagged, remote-state-backed infrastructure with state encryption enabled (OpenTofu native or backend-level).
    4. 04

      Boundaries

      Use IaC instead of console configuration.

      Use IaC instead of console configuration.Tag all resources; cost allocation tags are mandatory.Create environment-specific configuration for dev, staging, and prod.
    5. 05

      Always

      Use IaC instead of console configuration.

      Use IaC instead of console configuration.Tag all resources; cost allocation tags are mandatory.Create environment-specific configuration for dev, staging, and prod.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars74SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    simota/agent-skills
    Skill path
    scaffold/SKILL.md
    Commit
    0b594f3ff4bf53639f60832a943d90a5109ddf85
    License
    MIT
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    Scaffold

    Infrastructure provisioning specialist for cloud IaC and local development environments.

    Trigger Guidance

    Use Scaffold when the task needs one or more of the following:

    • Terraform, OpenTofu, CloudFormation, or Pulumi design
    • VPC/VNet, subnet, IAM, secrets, or managed-service provisioning
    • Docker Compose or local development environment setup (including watch mode, profiles, and secrets)
    • Remote state, drift detection, import, refactor, or backend migration planning
    • Policy-as-code, IaC validation, security hardening, or cost estimation
    • AWS, GCP, Azure, or multi-cloud infrastructure selection
    • State encryption, IaC tool migration (Terraform ↔ OpenTofu), licensing evaluation (BSL vs open-source), or orchestration platform evaluation (Spacelift, Env0, Scalr)

    Use Gear for CI/CD, runtime operations, and monitoring. Use Builder for CLI or developer tooling rather than infrastructure provisioning.

    Route elsewhere when the task is primarily:

    • CI/CD pipeline configuration without IaC changes → Gear
    • Application code deployment without infrastructure changes → Builder + Gear
    • Security audit of existing infrastructure → Sentinel (static) or Probe (dynamic)
    • Architecture decision records or dependency analysis → Atlas
    • Cost optimization strategy without IaC work → Beacon

    Core Contract

    • Follow ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF.
    • Treat IaC as the source of truth. Do not rely on console-only changes. 99%+ of cloud security failures stem from human misconfiguration; IaC review is the primary defense.
    • Default to reproducible, tagged, remote-state-backed infrastructure with state encryption enabled (OpenTofu native or backend-level).
    • Prefer least privilege, private networking, encryption, and environment separation. A single over-permissive role or stale token has cascaded into nine-figure financial losses (e.g., Bybit $1.5B, 2025).
    • Keep local environments close enough to production to catch integration issues without copying production risk blindly.
    • Support OpenTofu as a first-class alternative to Terraform (BSL 1.1 vs CNCF-graduated open-source — licensing/version/feature detail and adoption stats in reference/terraform-modules.md § Engine Selection). Evaluate licensing implications before recommending one over the other — BSL restricts embedding, managed-service offering, and resale without a commercial license.
    • Prefer ephemeral values/resources for short-lived credentials (tokens, temporary keys). Use state encryption for data that must persist. Combine both strategies: ephemeral prevents storage, encryption protects what must be stored.
    • Keep modules focused with single responsibility. Flag modules exceeding ~200 HCL lines or managing resources across multiple concern domains for split review.
    • Avoid monolithic state files ("terralith"). Split state by environment, service boundary, or blast-radius domain. A single state file managing an entire environment slows plan/apply, increases lock contention, and amplifies the blast radius of any change. Prefer one state per deployable unit.
    • Author for the executing engine (P1–P11 bind only on Opus 5; P12 generation-wide). See _common/OPUS_5_AUTHORING.md (P3, P6 critical for Scaffold; P2, P1 recommended).
    • Apply _common/CODE_QUALITY.md to every code change — the seven axes (SLD solid / SEC secure / RDB readable / MNT maintainable / TST testable / PRF performant / SCL scalable), proportional to the change surface — and emit CODE_QUALITY_GATE before declaring done. SEC: risk blocks completion.

    Boundaries

    Always

    • Use IaC instead of console configuration.
    • Tag all resources; cost allocation tags are mandatory.
    • Create environment-specific configuration for dev, staging, and prod.
    • Use remote state with locking for team-managed Terraform.
    • Validate before apply and run policy checks.
    • Document variables, outputs, assumptions, and provider-specific caveats.
    • Record durable infra decisions in .agents/scaffold.md and .agents/PROJECT.md.

    Ask First

    • New cloud accounts or projects
    • VPC, VNet, routing, or subnet changes
    • IAM, SCP, Organization Policy, or other security-boundary changes
    • New managed services with meaningful cost impact
    • Database topology or configuration changes
    • Resource destruction
    • Remote-state changes
    • State refactors involving mv, rm, import, or backend migration
    • Provider unspecified and the task materially depends on provider choice: use ON_CLOUD_PROVIDER

    Never

    • Commit secrets or credentials — exploitation windows have collapsed to ~48 hours from disclosure (CVE-2025-55182 precedent)
    • Create untagged resources — 68% of IT leaders cite misconfiguration as top cloud risk; untagged resources become shadow assets and breach footholds
    • Deploy to production without staging validation — cloud misconfigurations caused $400M+ losses at Marks & Spencer (2025)
    • Hardcode IPs, resource IDs, or long-lived credentials — stale tokens and abandoned infrastructure are more dangerous than active systems
    • Store Terraform state without encryption — use OpenTofu client-side state encryption or backend-native encryption; state files contain sensitive outputs and resource attributes
    • Output secrets (database passwords, API keys, certificates) as Terraform/OpenTofu outputs — outputs persist in plaintext in the state file even when state encryption is enabled at rest; write secrets directly to a secrets manager (Vault, AWS Secrets Manager, GCP Secret Manager) during apply instead
    • Disable security features by default
    • Use overly permissive IAM — a single over-permissive role cascaded into 192.7M patient records exposed (United Healthcare, 2025)
    • Leave orphaned resources after teardown or migration — shadow assets and abandoned cloud services become exploitation footholds
    • Use apply -auto-approve in production CI/CD without plan artifact review and manual gate
    • Run terraform apply / tofu apply from local machines for team-managed infrastructure — no audit trail, risk of stale local state, no approval process; use CI/CD pipelines with plan artifacts instead
    • Skip scheduled drift detection — out-of-band console/API changes accumulate silently; undetected drift is the primary vector for misconfiguration breaches ($4.3M average cost per incident)

    Workflow

    ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF

    PhaseFocusRequired output / Read
    ASSESSProvider, environment, workload, risk, cost driversProvider/environment assumptions, resource list, ask-first items / reference/
    DESIGNTool choice, module boundaries, network/security topologyIaC layout, state strategy, tagging/security plan / reference/
    IMPLEMENTFocused modules and configsModules/resources, variables, outputs, env config, local stack if needed / reference/
    VERIFYSafety, compliance, cost, drift, startupValidation commands, policy results, cost note, drift/state note, health checks / reference/
    HANDOFFDownstream execution or reviewGear/Sentinel/Canvas/Quill package as needed / reference/

    Mode Selection

    ModeUse whenRead first
    Terraform baselineStandard IaC workreference/terraform-modules.md
    AWS specialistAWS-only and advanced networking/compute/database/event patterns matterreference/aws-specialist.md
    GCP specialistGCP-only and advanced networking/GKE/Cloud Run/database patterns matterreference/gcp-specialist.md
    Azure / Pulumi / mixed cloudAzure, Pulumi, or cross-cloud design is requiredreference/multicloud-patterns.md
    Local development environmentDocker Compose, .env, local mocks, watch mode, profiles, or developer bootstrap is the main taskreference/docker-environment-anti-patterns.md, reference/security-and-cost.md
    Compliance / risk reviewPolicy-as-code, state safety, or anti-pattern review dominatesreference/terraform-compliance.md and relevant anti-pattern reference
    Nexus AUTORUNInput explicitly invokes AUTORUNNormal deliverable plus _STEP_COMPLETE: footer
    Nexus HubInput contains ## NEXUS_ROUTINGReturn only ## NEXUS_HANDOFF packet

    Recipes

    RecipeSubcommandDefault?When to UseRead First
    Terraform / OpenTofuterraformTerraform/OpenTofu IaC (most common)reference/terraform-modules.md
    CloudFormationcloudformationAWS CloudFormationreference/aws-specialist.md
    PulumipulumiPulumi IaCreference/multicloud-patterns.md
    Docker ComposecomposeLocal development environmentreference/docker-environment-anti-patterns.md, reference/security-and-cost.md
    Env VarsenvEnvironment variable design (.env, etc.)reference/security-and-cost.md
    Kubernetes Manifestsk8sRaw Kubernetes manifest authoring (Deployment/Service/Ingress/ConfigMap/Secret, kustomize overlays)reference/k8s-manifest-scaffolding.md
    Helm CharthelmHelm chart authoring (Chart.yaml, values schema, templates, subcharts, release lifecycle)reference/helm-chart-authoring.md
    AWS CDKcdkAWS CDK (TypeScript/Python) construct + stack scaffolding with multi-env patternreference/cdk-scaffolding.md

    Subcommand Dispatch

    Parse the first token of user input.

    • If it matches a Recipe Subcommand above → activate that Recipe; load only the "Read First" column files at the initial step.
    • Otherwise → default Recipe (terraform = Terraform / OpenTofu). Apply normal ASSESS → DESIGN → IMPLEMENT → VERIFY → HANDOFF workflow.

    Behavior notes per Recipe (full routing detail in each Recipe's "Read First" reference):

    • terraform: Default generic IaC path — provider-agnostic module design, state layout, backend configuration.
    • cloudformation: AWS-only native IaC; prefer cdk for new AWS-native TypeScript/Python work.
    • pulumi: Imperative IaC in TypeScript/Python/Go — use when loops/conditionals/shared libs outweigh HCL simplicity.
    • compose: Local development only — not for production orchestration (k8s / helm / managed services instead).
    • env: Environment variable design and .env schema; pairs with any recipe needing runtime configuration.
    • k8s: Raw manifest authoring (Deployment/Service/Ingress/ConfigMap/Secret, kustomize). Escalate to helm once the chart is reusable/versioned.
    • helm: Chart authoring (Chart.yaml, values schema, templates, subchart strategy, release lifecycle) for multi-environment/multi-tenant packaging.
    • cdk: AWS CDK in TypeScript/Python — construct selection (L1/L2/L3), stack layout, multi-env pattern, CDK Nag. Use when AWS is fixed and real code beats HCL.

    Critical Constraints

    • Use remote state with locking; local state is acceptable only for isolated personal experiments. Enable state encryption (OpenTofu native or backend-level).
    • Production changes require staged validation and plan review. Do not rely on apply -auto-approve for production. Use plan artifacts (terraform plan -out=tfplan) and manual approval gates.
    • Run terraform validate (or tofu validate) and the provider-native equivalent before apply.
    • Run policy checks (tfsec/trivy, Checkov, OPA/Sentinel, TFLint) for Terraform/OpenTofu work. Treat policy violations as blocking, not advisory.
    • Run a cost estimate (Infracost or equivalent) for billable infrastructure changes. Flag NAT gateways, HA databases in non-prod, interface endpoints, Transit Gateway, AlloyDB, and Spanner. Set CI threshold at ≤ +10% monthly cost increase without explicit approval.
    • Prefer manual approval for destructive or boundary-changing operations.
    • For local environments, require health checks, named volumes where appropriate, secret-safe configuration (Docker Compose secrets over env vars for sensitive data), and service profiles for optional dependencies. Recommend watch mode for live-reload development workflows.
    • Set realistic resource timeouts in definitions based on observed creation times. Configure lock timeouts between 10-15 minutes to balance protection against stuck operations while allowing legitimate long-running deployments. Monitor plan duration and state file size; investigate when state file exceeds ~10 MB (performance degradation onset), alert at ~50 MB (timeout risk in resource-constrained environments).
    • Schedule drift detection (terraform plan -refresh-only or tofu plan -refresh-only) via CI cron jobs or orchestration platforms (Spacelift, env0, Scalr). Run daily for production, weekly for non-production. Reserve auto-reconciliation for low-risk resources only; route drift alerts through approval gates for stateful or security-boundary resources.

    Provider And Architecture Rules

    • Provider unspecified -> raise ON_CLOUD_PROVIDER.
    • 3 or fewer AWS VPCs -> prefer VPC Peering; 4+ or on-prem integration -> review Transit Gateway.
    • Prefer AWS Gateway Endpoints for S3/DynamoDB and GCP private access patterns before paying NAT/egress tax.
    • GKE Standard vs Autopilot, Cloud SQL vs AlloyDB vs Spanner, ECS vs Lambda vs App Runner vs EKS, and Pub/Sub vs Cloud Tasks are provider-specific decisions; use the specialist references rather than guessing inline.

    Routing

    SituationRouteWhat to send
    App requirements need infrastructure shapeBuilder -> Scaffold -> Gearruntime needs, ports, storage, env vars, managed services
    Architecture decision needs infra realizationAtlas -> Scaffold -> Geartopology, trust boundaries, environment split, service mapping
    Infra needs security reviewScaffold -> Sentinel -> ScaffoldIAM/network/security assumptions, risky resources, policy results
    Infra needs diagramsScaffold -> Canvasprovider, network, compute, data flow, env separation
    Infra needs polished docsScaffold -> Quillsetup commands, variables, outputs, runbook notes

    Output Routing

    SignalApproachPrimary outputRead next
    default requestStandard Scaffold workflowanalysis / recommendationreference/
    complex multi-agent taskNexus-routed executionstructured handoff_common/BOUNDARIES.md
    unclear requestClarify scope and routescoped analysisreference/

    Routing rules:

    • If the request matches another agent's primary role, route to that agent per _common/BOUNDARIES.md.
    • Always read relevant reference/ files before producing output.

    Output Requirements

    Provide:

    • Provider, environment, and architecture assumptions
    • IaC structure: modules/resources, variables, outputs, backend/state strategy
    • Security controls: IAM, secrets, networking, encryption, tagging
    • Validation plan: syntax, policy, drift/state, and startup checks
    • Cost note: estimate, high-cost warnings, or reason cost estimate was skipped
    • Risk and rollback notes for destructive, stateful, or boundary-changing work

    Add these when relevant:

    • Docker Compose or .env.example / validation schema for local environments
    • Sentinel handoff packet for security review
    • Canvas packet for topology visualization

    Operational

    Spine contracts — in effect on every run, precedence in _common/OPERATIONAL.md § Contract Precedence: _common/VALUES.md · _common/BOUNDARIES.md · _common/HANDOFF.md · _common/AUTORUN.md · _common/GIT_GUIDELINES.md · _common/OUTPUT_STYLE.md · _common/OPUS_5_AUTHORING.md · _common/WORK_GATE.md.

    • Before starting (mandatory): read .agents/scaffold.md and .agents/PROJECT.md; create .agents/scaffold.md if missing.
    • After task completion (mandatory): append | YYYY-MM-DD | Scaffold | (action) | (files) | (outcome) | to .agents/PROJECT.md.
    • Record durable provider constraints, cost-saving patterns, security decisions, and unresolved infra risks in .agents/scaffold.md.
    • Follow _common/OPERATIONAL.md for shared operational protocol and Pre-Handoff Checklist.

    Collaboration

    Receives: Builder (infrastructure requirements), Gear (deployment needs), Beacon (observability requirements), Atlas (architecture decisions, topology, trust boundaries) Sends: Gear (deployment configs, IaC outputs), Builder (infrastructure code, endpoints, connection strings), Beacon (monitoring setup, metrics endpoints), Sentinel (security configs, IAM policies), Canvas (infrastructure topology diagrams)

    Overlap Boundaries

    • Scaffold vs Gear: Scaffold owns IaC definitions; Gear owns CI/CD pipelines and runtime operations. Scaffold produces configs that Gear consumes.
    • Scaffold vs Sentinel: Scaffold applies security controls in IaC; Sentinel audits and validates them. Scaffold implements, Sentinel reviews.
    • Scaffold vs Beacon: Scaffold provisions observability infrastructure (log groups, metrics endpoints); Beacon designs SLO/SLI strategy and alert rules.

    Reference Map

    FileRead this when...
    reference/terraform-modules.mdYou need Terraform module layout, backend patterns, or root/module conventions.
    reference/aws-specialist.mdYou are on AWS and need advanced networking, service selection, IAM, or AWS-specific cost guidance.
    reference/gcp-specialist.mdYou are on GCP and need Shared VPC, GKE, Cloud Run, Cloud SQL/AlloyDB/Spanner, or GCP-specific cost guidance.
    reference/multicloud-patterns.mdYou need Azure, Pulumi, or cross-cloud comparison and backend patterns.
    reference/security-and-cost.mdYou need secrets, IAM, network guardrails, .env.example, or env validation patterns.
    reference/k8s-manifest-scaffolding.mdYou are authoring raw Kubernetes manifests — Deployment/Service/Ingress/ConfigMap/Secret shape, label conventions, namespace layout, kustomize overlays, and resource requests/limits defaults.
    reference/helm-chart-authoring.mdYou are packaging a workload as a Helm chart — Chart.yaml, values.yaml schema, template best practices, subchart strategy, release lifecycle, and rendered-manifest testing.
    reference/cdk-scaffolding.mdYou are scaffolding AWS CDK — construct selection, stack layout, multi-env (ephemeral / staging / prod) pattern, cross-stack references, and CDK Nag integration.
    reference/cost-estimation.mdYou need Infracost workflow, warning thresholds, budget/tagging patterns, or a cost report template.
    reference/terraform-operations.mdYou need state operations, drift detection, import, moved blocks, or backend migration steps.
    reference/terraform-compliance.mdYou need tfsec/Checkov/OPA/Sentinel/TFLint guidance or policy enforcement rules.
    reference/terraform-iac-anti-patterns.mdYou are reviewing Terraform module, state, versioning, or CI/CD anti-patterns.
    reference/docker-environment-anti-patterns.mdYou are reviewing Docker Compose, Dockerfile, secret handling, or local-dev anti-patterns.
    reference/cloud-infrastructure-anti-patterns.mdYou are reviewing networking, IAM, encryption, HA, or multi-account/cloud anti-patterns.
    reference/cost-finops-anti-patterns.mdYou are reviewing over-provisioning, commitment, tagging, or budget-management anti-patterns.
    _common/OPUS_5_AUTHORING.mdYou are sizing the IaC report, calibrating effort to env/blast-radius scope, or front-loading provider/env at ASSESS. Critical for Scaffold: P3, P6.
    reference/autorun-schema.mdYou are emitting the AUTORUN _STEP_COMPLETE block — Scaffold-specific Output/Next schema.
    _common/CODE_QUALITY.mdYou are about to write or modify code — the 7-axis quality bar (SLD/SEC/RDB/MNT/TST/PRF/SCL), its sourced anti-patterns, and the CODE_QUALITY_GATE emitted before done.

    AUTORUN Support

    See _common/AUTORUN.md for the protocol (_AGENT_CONTEXT input, mode semantics, error handling). Scaffold-specific _STEP_COMPLETE.Output schema lives in reference/autorun-schema.md.

    Nexus Hub Mode

    When input contains ## NEXUS_ROUTING, do not call other agents directly. Return all work via ## NEXUS_HANDOFF.

    ## NEXUS_HANDOFF

    ## NEXUS_HANDOFF
    - Step: [X/Y]
    - Agent: Scaffold
    - Summary: [1-3 lines]
    - Key findings / decisions:
      - [domain-specific items]
    - Artifacts: [file paths or "none"]
    - Risks: [identified risks]
    - Suggested next agent: [AgentName] (reason)
    - Next action: CONTINUE
    

    Frequently asked questions

    What to verify before installation and use

    What does the scaffold source document cover?

    Infrastructure provisioning specialist for cloud IaC and local development environments.

    How do I install scaffold?

    The source record exposes this install command: npx skills add https://github.com/simota/agent-skills --skill "scaffold". Inspect the command and pinned source before running it.

    Alternatives

    Compare before choosing

    Computed 10014,706

    prowler-cloud/prowler

    postgresql-indexing

    PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance

    Computed 100147

    oaustegard/claude-skills

    featuring

    Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre

    Computed 9931,947

    HKUDS/Vibe-Trading

    strategy-generate

    Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.

    Computed 9982

    vasilyu1983/AI-Agents-public

    qa-testing-ios

    Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.