Agent skill
use-taskfile
Run common project operations using the Taskfile. Use when building, testing, starting services, running migrations, or any project operation. Run `task` to discover available tasks.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/use-taskfile
SKILL.md
Use Taskfile Skill
Use this skill when running project operations. Prefer Taskfile tasks over manual commands.
Discover Available Tasks
task
This lists all available tasks with descriptions.
Common Task Categories
| Category | Example Tasks | Purpose |
|---|---|---|
api:* |
api:build, api:start, api:start:docker |
Build and run the API |
compose:* |
compose:up, compose:down |
Manage Docker services |
evaluator:* |
evaluator:start, evaluator:start:test-mode |
Run the evaluator |
importer:* |
importer:start, importer:start:use-cache |
Import data from tarkov.dev |
migrate:* |
migrate:up, migrate:up:docker, migrate:down, migrate:create |
Database migrations |
test:* |
test, test:unit, test:integration, test:integration:docker |
Run tests |
tarkovdev:* |
tarkovdev:get-schema, tarkovdev:regenerate |
Update GraphQL schema |
Running Tasks
# Run a specific task
task <task-name>
# Example: apply migrations (local/devcontainer)
task migrate:up
# Example: apply migrations (with docker)
task migrate:up:docker
Key Tasks
task init- Set up development environmenttask init:go-only- Set up Go-only development environmenttask test:unit- Run tests without databasetask migrate:up- Apply database migrations (local/devcontainer)task importer:start- Repopulate weapons/items from tarkov.dev API
Repopulating the Database
If the database has been wiped or migrations rolled back, repopulate data with:
task compose:up # Ensure database is running
task migrate:up # Apply migrations
task importer:start # Fetch and import all weapons/items from tarkov.dev
Use task importer:start:use-cache to import from local cache instead of fetching from the API.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?