From 5907cd3a763a4b2f1f00a0dad39c455e16755354 Mon Sep 17 00:00:00 2001 From: factory-ain3sh Date: Tue, 21 Apr 2026 18:27:25 +0000 Subject: [PATCH] fix(droid-control): repair YAML frontmatter of command files The argument-hint field in demo.md, qa-test.md and verify.md was a bare value containing multiple double-quoted tokens joined by 'or', which terminates the first flow scalar and causes strict YAML parsers to fail. Wrap each value in single quotes so the whole hint is one valid scalar while preserving the human-readable double-quoted placeholders. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- plugins/droid-control/commands/demo.md | 2 +- plugins/droid-control/commands/qa-test.md | 2 +- plugins/droid-control/commands/verify.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/droid-control/commands/demo.md b/plugins/droid-control/commands/demo.md index 80b92c2..b40b311 100644 --- a/plugins/droid-control/commands/demo.md +++ b/plugins/droid-control/commands/demo.md @@ -1,6 +1,6 @@ --- description: Plan and record a demo video of a feature or PR -argument-hint: " [-- notes]" or "" +argument-hint: '" [-- notes]" or ""' --- Load skills: **droid-control**. diff --git a/plugins/droid-control/commands/qa-test.md b/plugins/droid-control/commands/qa-test.md index 5d838c1..482f24f 100644 --- a/plugins/droid-control/commands/qa-test.md +++ b/plugins/droid-control/commands/qa-test.md @@ -1,6 +1,6 @@ --- description: Run an automated QA test flow against a terminal CLI or web/Electron app -argument-hint: "" or "" or " [-- focus area]" or "" +argument-hint: '"" or "" or " [-- focus area]" or ""' --- Load skills: **droid-control**. diff --git a/plugins/droid-control/commands/verify.md b/plugins/droid-control/commands/verify.md index 141340b..34438d9 100644 --- a/plugins/droid-control/commands/verify.md +++ b/plugins/droid-control/commands/verify.md @@ -1,6 +1,6 @@ --- description: Test a claim about behavior and report whether the evidence supports or refutes it -argument-hint: "" or " -- " +argument-hint: '"" or " -- "' --- Load skills: **droid-control**.