fix(coding-agent): remove -- from registerFlag calls

This was causing the agent sometimes to pick up on the incorrect syntax when
asked to write extensions with flags
This commit is contained in:
Kao Félix 2026-01-11 02:21:15 +01:00
parent 65b72cc514
commit 6d60302646
4 changed files with 6 additions and 6 deletions

View file

@ -1041,7 +1041,7 @@ Register custom CLI flags (parsed automatically, shown in `--help`):
```typescript
export default function (pi: ExtensionAPI) {
pi.registerFlag("--dry-run", {
pi.registerFlag("dry-run", {
description: "Run without making changes",
type: "boolean",
});