agent-customization
**WORKFLOW SKILL** — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…
Generate or modify run commands for the current session. Use when the user wants to set up or update run commands that appear in the session's Run button.
$ npx -y skills add microsoft/vscode --skill generate-run-commands --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/generate-run-commandsContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate or modify run commands for the current session. Use when the user wants to set up or update run commands that appear in the session's Run button.
name: generate-run-commands description: Generate or modify run commands for the current session. Use when the user wants to set up or update run commands that appear in the session's Run button.
<!-- Customize this skill and select save to override its behavior. Delete that copy to restore the built-in behavior. -->
Help the user set up run commands for the current Agent Session workspace. Run commands appear in the session's Run button in the title bar.
A run command is a `tasks.json` task with:
{
"tasks": [
{
"label": "Install dependencies",
"type": "shell",
"command": "npm install",
"inAgents": true,
"runOptions": { "runOn": "worktreeCreated" }
},
{
"label": "Start dev server",
"type": "shell",
"command": "npm run dev",
"inAgents": true
}
]
}**First, read the existing `.vscode/tasks.json`** to check for existing run commands (`inAgents: true` tasks).
**If run commands already exist:** treat this as a modify request — ask the user what they'd like to change (add, remove, or update a command).
**If no run commands exist:** try to infer the right commands from the workspace:
Always write to `.vscode/tasks.json` in the workspace root. If the file already exists, merge — do not overwrite unrelated tasks.
After writing, briefly confirm what was added and how to trigger it from the Run button.
Repo: microsoft/vscode
**WORKFLOW SKILL** — Create, update, review, fix, or debug VS Code agent customization files (.instructions.md, .prompt.md, .agent.md, SKILL.md,…
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary,…
Create a hook (.json) to enforce policy or automate agent lifecycle events.
Create an instructions file (.instructions.md) for a project rule or convention.