You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: skills/vardoger-analyze/SKILL.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,17 @@ Drive the local `vardoger` CLI to read the user's GitHub Copilot CLI conversatio
22
22
23
23
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.
24
24
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.
0 commit comments