Skip to content

Commit 5907cd3

Browse files
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>
1 parent 4937a49 commit 5907cd3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

plugins/droid-control/commands/demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Plan and record a demo video of a feature or PR
3-
argument-hint: "<PR-number> [-- notes]" or "<description of what to demo>"
3+
argument-hint: '"<PR-number> [-- notes]" or "<description of what to demo>"'
44
---
55

66
Load skills: **droid-control**.

plugins/droid-control/commands/qa-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Run an automated QA test flow against a terminal CLI or web/Electron app
3-
argument-hint: "<URL>" or "<app-name>" or "<PR-number> [-- focus area]" or "<description>"
3+
argument-hint: '"<URL>" or "<app-name>" or "<PR-number> [-- focus area]" or "<description>"'
44
---
55

66
Load skills: **droid-control**.

plugins/droid-control/commands/verify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Test a claim about behavior and report whether the evidence supports or refutes it
3-
argument-hint: "<claim to test>" or "<PR-number> -- <specific claim>"
3+
argument-hint: '"<claim to test>" or "<PR-number> -- <specific claim>"'
44
---
55

66
Load skills: **droid-control**.

0 commit comments

Comments
 (0)