Skip to content

Commit a7ab430

Browse files
committed
add numbered workflow overview to satisfy skill-validator
The dotnet/skills validator's NumberedStepRegex (^\d+\.\s, multiline) only matches ordered list items at line start, not ### numbered headings, so the previous '### 1. …' layout triggered the 'No numbered workflow steps' warning on PR #1461. Keep the existing step headings for structure and add a short numbered Workflow summary that the regex picks up.
1 parent b7a7c5a commit a7ab430

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

skills/vardoger-analyze/SKILL.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ Drive the local `vardoger` CLI to read the user's GitHub Copilot CLI conversatio
2222

2323
When the host asks to approve a `vardoger` command, grant it write access beyond the workspace. Otherwise the first `vardoger prepare` call will fail with `PermissionError: ... ~/.vardoger/state.tmp` because the sandbox blocks writes outside the current working directory.
2424

25+
## Workflow
26+
27+
1. Verify the `vardoger` CLI is installed and fail fast with install guidance if not.
28+
2. Check staleness with `vardoger status --platform copilot --json` and stop early if the personalization is still fresh.
29+
3. Get batch metadata with `vardoger prepare --platform copilot` to learn the number of batches.
30+
4. For each batch, run `vardoger prepare --platform copilot --batch <N>` and write a concise bullet summary of the behavioral signals.
31+
5. Get the synthesis prompt with `vardoger prepare --platform copilot --synthesize`.
32+
6. Synthesize all batch summaries into a single personalization following the synthesis prompt.
33+
7. Write the result by piping the personalization into `vardoger write --platform copilot --scope global` (or `--scope project --project <path>`).
34+
8. Report back to the user what was written, where, and that the write is idempotent.
35+
2536
## Steps
2637

2738
### 1. Verify vardoger is installed

0 commit comments

Comments
 (0)