
vscode-tasks-organizer
by garnertb
Collection of agent skills
SKILL.md
name: vscode-tasks-organizer description: Guide for creating or modifying VS Code tasks.json files with a focus on developer experience. metadata: author: garnertb version: "1.1"
This skill helps you organize VS Code tasks.json files for consistency and
developer experience improvements.
Analysis Steps
- Check for available scripts Check for common task types: dev/run, build,
test, lint, format in the language ecosystem (eg JavaScript/TypeScript check
package.jsonscripts) - Identify inconsistencies in the task.json analyze property ordering, naming conventions, and missing properties. The output should be a list of recommended improvements to ensure consistency and enhance developer experience.
- Review task grouping — VS Code supports
build,test, ornonegroups
Improvements to Apply
Property Ordering
Standardize all tasks with consistent property order: label → type →
command → group → icon → detail → options → problemMatcher
Naming Conventions
- Use consistent label format (e.g.,
Title Case) - Match casing across all tasks
Icons
All tasks should have an icon, if already present ensure consistency in style and color (based on task category) and that the icon is appropriate and intuitive.
If missing, add semantic icons with appropriate colors using these defaults:
- Dev/Run tasks: green (
terminal.ansiGreen) withrunorglobeicons - Build tasks: cyan (
terminal.ansiCyan) withtoolsicon - Test tasks: magenta (
terminal.ansiMagenta) withbeaker,browser, oreyeicons - Lint tasks: yellow (
terminal.ansiYellow) withsearchicon - Format tasks: blue (
terminal.ansiBlue) withsymbol-colororwandicons
Details
Add descriptive detail text explaining each task's purpose
Problem Matchers
Add appropriate problem matchers for error detection based on language ecosystem and task type:
- JavaScript/TypeScript:
$tsc,$eslint-stylish
Cleanup
- Remove redundant
options.cwdif defaulting to workspace folder - Fix any JSON syntax errors (trailing commas, etc.)
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
1ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon


