一键导入
taskfile
Use when user asks about available tasks, project workflows, or how to do something in this project - reads Taskfile.yml to discover and execute tasks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when user asks about available tasks, project workflows, or how to do something in this project - reads Taskfile.yml to discover and execute tasks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | taskfile |
| description | Use when user asks about available tasks, project workflows, or how to do something in this project - reads Taskfile.yml to discover and execute tasks |
This project uses Taskfile for task automation. All available tasks are defined in Taskfile.yml at the project root.
When to use this skill:
Taskfile.yml to see all task definitionsdesc: field explaining what it doesQuick list: Run task --list to see all tasks with descriptions.
Non-interactive tasks: Run directly with task <name>
task format
task build
task test
Interactive tasks: Either run interactively OR pass variables:
# Interactive (prompts for input)
task new
# Non-interactive (pass variable)
task new NAME=my-project
When user wants to run an interactive task:
Example conversation:
User: Create a new component
Agent: What should I name it? (e.g., MyComponent)
User: UserProfile
Agent: *runs: task new NAME=UserProfile*
task --list - Show all available taskstask <task-name> - Run specific tasktask --help - Get help on Taskfile usageThis skill often works with:
Manage development environments using devenv. Use for devenv.nix files, environment setup, dependency management.
Manage development environments using devenv. Use for devenv.nix files, environment setup, dependency management.
Use for all Git operations, version control workflows, and repository management. Handles commits, branches, merges, releases.