/arn-infra-verify
This skill should be used when the user says "verify deployment", "verify infra", "check deployment", "arn infra verify", "infra verify", "health check", "check health", "verify staging", "verify production", "is my deployment healthy", "check if deployment worked", "run health
$ npx -y skills add AppsVortex/arness --skill arn-infra-verify --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/arn-infra-verify
Context preview
The summary Claude sees to decide when to auto-load this skill.
This skill should be used when the user says "verify deployment", "verify infra", "check deployment", "arn infra verify", "infra verify", "health check", "check health", "verify staging", "verify production", "is my deployment healthy", "check if deployment worked", "run health
SKILL.md
arn-infra-verify.SKILL.mdname: arn-infra-verify
description: >-
This skill should be used when the user says "verify deployment", "verify infra",
"check deployment", "arn infra verify", "infra verify", "health check",
"check health", "verify staging", "verify production", "is my deployment healthy",
"check if deployment worked", "run health checks", "deployment verification",
"check infrastructure", "validate deployment", "verify environment",
"post-deployment check", "infra health", "check dns", "check ssl",
"verify endpoints", "smoke test", "integration test",
or wants to validate that a deployed environment is healthy
and its resources match the expected state. This skill runs health checks,
DNS verification, SSL validation, resource state comparison, and updates
issue labels and environments.md with verification results.
version: 1.0.0
Arness Infra Verify
Run post-deployment verification against a target environment to confirm that infrastructure is healthy, endpoints are reachable, DNS resolves correctly, SSL certificates are valid, and resource state matches the expected topology. Updates issue labels and environments.md with verification results.
This skill invokes the `arn-infra-verifier` agent to perform the actual health checks and produces a structured verification report.
Prerequisites
Read `## Arness` from the project's CLAUDE.md. If no `## Arness` section exists or Arness Infra fields are missing, inform the user: "Arness Infra is not configured for this project yet. Run `/arn-infra-wizard` to get started — it will set everything up automatically." Do not proceed without it.
Check the **Deferred** field. If `Deferred: yes`, inform the user: "Infrastructure is in deferred mode. Verification is not available until infrastructure is fully configured. Run `/arn-infra-assess` to un-defer." Stop.
Extract:
- **Experience level** -- derived from user profile. Read `~/.arness/user-profile.yaml` (or `.claude/arness-profile.local.md` if it exists — project override takes precedence). Apply the experience derivation mapping from `${CLAUDE_PLUGIN_ROOT}/skills/arn-infra-ensure-config/references/experience-derivation.md`. If no profile exists, check for legacy `Experience level` in `## Arness` as fallback.
- **Environments** -- environment names for target selection
- **Environments config** -- path to `environments.md` for deployment state
- **Resource manifest** -- path to `active-resources.json` for expected resource state
- **Tooling manifest** -- path to `tooling-manifest.json` for available CLIs
- **Providers** -- which cloud providers are configured
- **Providers config** -- path to `providers.md`
- **Platform** -- for issue label management
- **Issue tracker** -- for label updates and issue lifecycle
- **Infra specs directory** -- from `## Arness` config, for locating handoff files (default: `.arness/infra-specs`)
- **Reference overrides** -- path to local reference override directory (for evolving reference reads)
---
Workflow
Step 1: Determine Target Environment
Ask the user which environment to verify (if not specified in the invocation):
"Which environment would you like to verify? [list environments from config]"
Read the environment's deployment state from `environments.md`:
- **Last deployed:** timestamp of the most recent deployment
- If `Last deployed` is `--` (never deployed): inform the user: "The [environment] environment has not been deployed yet. Run `/arn-infra-deploy` first." Stop.
---
Step 2: Gather Expected State
Collect the expected state from multiple sources:
**2a. Resource manifest:**
Read the resource manifest (`active-resources.json`):
Read <resource-manifest-path>
Filter resources for the target environment. Extract:
- Resource IDs and types
- Expected endpoints (URLs, DNS names)
- Health check paths
- Provider and region information
**2b. Handoff file:**
Look for the handoff file for the target environment:
Glob <specs-dir>/INFRA_HANDOFF_<environment>*
If found, read it and extract:
- Endpoint URLs and health check paths
- Expected connection string references (for connectivity verification)
- Monitoring endpoints
**2c. INFRA spec:**
Look for the infrastructure architecture spec:
Glob <specs-dir>/INFRA_*
If found, read it for the expected resource topology (resource types, counts, configurations).
**If no expected state is available:** Warn: "No resource manifest or handoff file found for [environment]. I can still run basic health checks if you provide endpoint URLs. Would you like to provide URLs manually, or run `/arn-infra-deploy` first?"
If the user provides URLs manually, proceed with those as the expected state.
---
Step 3: Invoke Verifier Agent
> Read the local override or plugin default for `health-check-patterns.md`.
Invoke the `arn-infra-verifier` agent via the Task tool, passing the model from `.arness/agent-models/infra.md` as the `model` parameter (see `plugins/arn-infra/skills/arn-infra-ensure-config/references/ensure-config.md` "Dispatch convention" for fallback). Context:
--- EXPECTED STATE --- Resources: [filtered resource manifest for the target environment] Endpoints: [list of endpoints with health check paths] DNS names: [list of DNS names with expected targets] SSL domains: [list of HTTPS domains requiring certificate validation] --- END EXPECTED STATE ---
--- PROVIDER CONTEXT --- Provider(s): [from providers.md] Available CLIs: [from tooling manifest -- which CLIs can query resource state] Environment: [target environment name] --- END PROVIDER CONTEXT ---
--- TOOLING --- Available tools: [list of installed verification tools from tooling manifest] curl: [available/unavailable] dig/nslookup: [available/unavailable] openssl: [available/unavailable] Provider CLIs: [list with auth status] --- END TOOLING ---
--- INSTRUCTIONS --- Run the following verification checks in order:
1. HTTP health checks on all endpoints 2. DNS resolution for all configure
Read more
name: arn-infra-verify description: >- This skill should be used when the user says "verify deployment", "verify infra", "check deployment", "arn infra verify", "infra verify", "health check", "check health", "verify staging", "verify production", "is my deployment healthy", "check if deployment worked", "run health checks", "deployment verification", "check infrastructure", "validate deployment", "verify environment", "post-deployment check", "infra health", "check dns", "check ssl", "verify endpoints", "smoke test", "integration test", or wants to validate that a deployed environment is healthy and its resources match the expected state. This skill runs health checks, DNS verification, SSL validation, resource state comparison, and updates issue labels and environments.md with verification results. version: 1.0.0
Arness Infra Verify
Run post-deployment verification against a target environment to confirm that infrastructure is healthy, endpoints are reachable, DNS resolves correctly, SSL certificates are valid, and resource state matches the expected topology. Updates issue labels and environments.md with verification results.
This skill invokes the `arn-infra-verifier` agent to perform the actual health checks and produces a structured verification report.
Prerequisites
Read `## Arness` from the project's CLAUDE.md. If no `## Arness` section exists or Arness Infra fields are missing, inform the user: "Arness Infra is not configured for this project yet. Run `/arn-infra-wizard` to get started — it will set everything up automatically." Do not proceed without it.
Check the **Deferred** field. If `Deferred: yes`, inform the user: "Infrastructure is in deferred mode. Verification is not available until infrastructure is fully configured. Run `/arn-infra-assess` to un-defer." Stop.
Extract:
- **Experience level** -- derived from user profile. Read `~/.arness/user-profile.yaml` (or `.claude/arness-profile.local.md` if it exists — project override takes precedence). Apply the experience derivation mapping from `${CLAUDE_PLUGIN_ROOT}/skills/arn-infra-ensure-config/references/experience-derivation.md`. If no profile exists, check for legacy `Experience level` in `## Arness` as fallback.
- **Environments** -- environment names for target selection
- **Environments config** -- path to `environments.md` for deployment state
- **Resource manifest** -- path to `active-resources.json` for expected resource state
- **Tooling manifest** -- path to `tooling-manifest.json` for available CLIs
- **Providers** -- which cloud providers are configured
- **Providers config** -- path to `providers.md`
- **Platform** -- for issue label management
- **Issue tracker** -- for label updates and issue lifecycle
- **Infra specs directory** -- from `## Arness` config, for locating handoff files (default: `.arness/infra-specs`)
- **Reference overrides** -- path to local reference override directory (for evolving reference reads)
---
Workflow
Step 1: Determine Target Environment
Ask the user which environment to verify (if not specified in the invocation):
"Which environment would you like to verify? [list environments from config]"
Read the environment's deployment state from `environments.md`:
- **Last deployed:** timestamp of the most recent deployment
- If `Last deployed` is `--` (never deployed): inform the user: "The [environment] environment has not been deployed yet. Run `/arn-infra-deploy` first." Stop.
---
Step 2: Gather Expected State
Collect the expected state from multiple sources:
**2a. Resource manifest:**
Read the resource manifest (`active-resources.json`):
Read <resource-manifest-path>
Filter resources for the target environment. Extract:
- Resource IDs and types
- Expected endpoints (URLs, DNS names)
- Health check paths
- Provider and region information
**2b. Handoff file:**
Look for the handoff file for the target environment:
Glob <specs-dir>/INFRA_HANDOFF_<environment>*
If found, read it and extract:
- Endpoint URLs and health check paths
- Expected connection string references (for connectivity verification)
- Monitoring endpoints
**2c. INFRA spec:**
Look for the infrastructure architecture spec:
Glob <specs-dir>/INFRA_*
If found, read it for the expected resource topology (resource types, counts, configurations).
**If no expected state is available:** Warn: "No resource manifest or handoff file found for [environment]. I can still run basic health checks if you provide endpoint URLs. Would you like to provide URLs manually, or run `/arn-infra-deploy` first?"
If the user provides URLs manually, proceed with those as the expected state.
---
Step 3: Invoke Verifier Agent
> Read the local override or plugin default for `health-check-patterns.md`.
Invoke the `arn-infra-verifier` agent via the Task tool, passing the model from `.arness/agent-models/infra.md` as the `model` parameter (see `plugins/arn-infra/skills/arn-infra-ensure-config/references/ensure-config.md` "Dispatch convention" for fallback). Context:
--- EXPECTED STATE --- Resources: [filtered resource manifest for the target environment] Endpoints: [list of endpoints with health check paths] DNS names: [list of DNS names with expected targets] SSL domains: [list of HTTPS domains requiring certificate validation] --- END EXPECTED STATE ---
--- PROVIDER CONTEXT --- Provider(s): [from providers.md] Available CLIs: [from tooling manifest -- which CLIs can query resource state] Environment: [target environment name] --- END PROVIDER CONTEXT ---
--- TOOLING --- Available tools: [list of installed verification tools from tooling manifest] curl: [available/unavailable] dig/nslookup: [available/unavailable] openssl: [available/unavailable] Provider CLIs: [list with auth status] --- END TOOLING ---
--- INSTRUCTIONS --- Run the following verification checks in order:
1. HTTP health checks on all endpoints 2. DNS resolution for all configure
Showing the first part of this file.
Arness — H not required. Structured AI workflows for Claude Code. From first idea to production deploy. Seven entry commands. That's all you need to remember.
Repo: AppsVortex/arness
Other skills on arness.
- /arn-assessing
This skill should be used when the user says "assessing", "arness assessing", "assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "pattern compliance check", "codebase health check",
Open skill - /arn-code-assess
This skill should be used when the user says "arness code assess", "arn-code-assess", "assess codebase", "technical review", "codebase assessment", "find improvements", "what should I improve", "tech debt review", "tech debt audit", "pattern compliance check", "codebase health
Open skill - /arn-code-batch-cve-fix
This skill should be used when the user says "fix CVEs", "patch vulnerabilities", "apply security patches", "resolve security advisories", "batch CVE fix", "patch dependencies", "fix security findings", "remediate CVEs", "apply CVE fixes", "batch fix vulnerabilities", "resolve
Open skill - /arn-code-batch-cve-scan
This skill should be used when the user says "scan for CVEs", "CVE scan", "check for vulnerabilities", "find vulnerabilities", "check security advisories", "dependabot triage", "dependabot scan", "scan dependencies for security issues", "audit dependencies", "vulnerability
Open skill - /arn-code-batch-implement
This skill should be used when the user says "batch implement", "implement all", "batch execution", "implement all features", "parallel implement", "implement in parallel", "arness batch implement", "arn-code-batch-implement", "run batch implementation", "implement everything",
Open skill - /arn-code-batch-merge
This skill should be used when the user says "batch merge", "merge batch", "arness batch merge", "arn-code-batch-merge", "merge all PRs", "merge batch PRs", "merge the batch", "merge implemented features", "batch merge PRs", "merge open PRs", "merge all feature PRs", "combine
Open skill

