From 391ec09051c23e7c3f1b739ee48d37d4bc7a7d76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:09:32 +0000 Subject: [PATCH] Version Packages --- .changeset/agent-handoff-and-install.md | 5 ----- .changeset/config-type-export.md | 5 ----- .changeset/yaml-config.md | 5 ----- packages/docker-doctor/CHANGELOG.md | 8 ++++++++ packages/docker-doctor/package.json | 2 +- 5 files changed, 9 insertions(+), 16 deletions(-) delete mode 100644 .changeset/agent-handoff-and-install.md delete mode 100644 .changeset/config-type-export.md delete mode 100644 .changeset/yaml-config.md diff --git a/.changeset/agent-handoff-and-install.md b/.changeset/agent-handoff-and-install.md deleted file mode 100644 index cb8d7e5..0000000 --- a/.changeset/agent-handoff-and-install.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@docker-doctor/cli": patch ---- - -Add coding-agent integration: a `docker-doctor install` command that installs the bundled agent skill for any agent-install-supported coding agent (Claude Code, Cursor, Codex, OpenCode, and more), and a post-scan handoff that replaces the old "View rules list" prompt — when a scan finds issues, the CLI now offers to launch a detected agent (`claude`, `codex`, `cursor-agent`) with the issues as its prompt, or copy that prompt to the clipboard. Handoffs write the full report to `.docker-doctor/` (auto-gitignored) and install the skill for the chosen agent. diff --git a/.changeset/config-type-export.md b/.changeset/config-type-export.md deleted file mode 100644 index a536507..0000000 --- a/.changeset/config-type-export.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@docker-doctor/cli": patch ---- - -Export the `DockerDoctorConfig` type (plus `RuleCategory`) and a `defineConfig` helper for typed `docker-doctor.config.ts` files, and fix the config type's `categories` field to accept a subset of categories (`Partial>`) — matching the validator's actual behavior and the documented examples. diff --git a/.changeset/yaml-config.md b/.changeset/yaml-config.md deleted file mode 100644 index 2fdbbec..0000000 --- a/.changeset/yaml-config.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@docker-doctor/cli": patch ---- - -Support `docker-doctor.config.yaml` / `.yml` config files (resolved after `.json`, and via `--config`). A JSON Schema generated from the rule set is published at https://docker-doctor.vercel.app/schema.json for editor autocomplete/validation in YAML (`# yaml-language-server: $schema=…`) and JSON (`"$schema"` key) configs. diff --git a/packages/docker-doctor/CHANGELOG.md b/packages/docker-doctor/CHANGELOG.md index a701015..32186dc 100644 --- a/packages/docker-doctor/CHANGELOG.md +++ b/packages/docker-doctor/CHANGELOG.md @@ -1,5 +1,13 @@ # @docker-doctor/cli +## 0.3.1 + +### Patch Changes + +- 3546391: Add coding-agent integration: a `docker-doctor install` command that installs the bundled agent skill for any agent-install-supported coding agent (Claude Code, Cursor, Codex, OpenCode, and more), and a post-scan handoff that replaces the old "View rules list" prompt — when a scan finds issues, the CLI now offers to launch a detected agent (`claude`, `codex`, `cursor-agent`) with the issues as its prompt, or copy that prompt to the clipboard. Handoffs write the full report to `.docker-doctor/` (auto-gitignored) and install the skill for the chosen agent. +- e6e7e88: Export the `DockerDoctorConfig` type (plus `RuleCategory`) and a `defineConfig` helper for typed `docker-doctor.config.ts` files, and fix the config type's `categories` field to accept a subset of categories (`Partial>`) — matching the validator's actual behavior and the documented examples. +- b730028: Support `docker-doctor.config.yaml` / `.yml` config files (resolved after `.json`, and via `--config`). A JSON Schema generated from the rule set is published at https://docker-doctor.vercel.app/schema.json for editor autocomplete/validation in YAML (`# yaml-language-server: $schema=…`) and JSON (`"$schema"` key) configs. + ## 0.3.0 ### Minor Changes diff --git a/packages/docker-doctor/package.json b/packages/docker-doctor/package.json index 9424fa7..420d496 100644 --- a/packages/docker-doctor/package.json +++ b/packages/docker-doctor/package.json @@ -1,6 +1,6 @@ { "name": "@docker-doctor/cli", - "version": "0.3.0", + "version": "0.3.1", "description": "Static analysis for Dockerfile and Docker Compose files", "keywords": [ "best-practices",