# Container Fleet Audit

> Detect drift between the fleet's running Docker Compose/Swarm state and its git configuration across all registered stacks, then render the findings as a formatted audit report. Use when a fleet operator needs a point-in-time fleet-wide drift audit; this workflow is read-only and does not redeploy.

- Skill: `knuckles-team/container-fleet-audit` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add knuckles-team/container-fleet-audit`
- Raw SKILL.md: https://api.skillmd.com/api/skills/knuckles-team/container-fleet-audit/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: MIT
- Author: Knuckles-Team (https://skillmd.com/u/knuckles-team)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/knuckles-team/container-fleet-audit

---


# Container Fleet Audit Workflow

Compose the named atomic skills without adding new comparison logic here.

## Inputs

Provide the fleet's stack selection and the git configuration reference.

## Steps

### Step 0: docker-compose-drift-detector [skill: docker-compose-drift-detector]

Invoke `$docker-compose-drift-detector` with the workflow inputs to
compare each stack's running state against git configuration.

Expected: `drift_report`

### Step 1: document-converter [skill: document-converter] [depends_on: Step 0]

Invoke `$document-converter` with `drift_report` to render it as a
formatted Markdown/PDF fleet audit report.

Expected: `audit_document`

## Output

Return `drift_report` and `audit_document`. Read-only; does not redeploy.

## Execution

- **Run first:** Step 0 — `$docker-compose-drift-detector`.
- **After level 0:** Step 1 — `$document-converter`.

**Execution:** If graph-os is reachable, offload the whole DAG via `graph_orchestrate action=execute_workflow` (or the `kg-delegate` skill) for true parallel/swarm execution. Otherwise execute the steps natively in dependency order: run steps with no unmet `depends_on` in parallel, then their dependents.

