KS
Killer-Skills

refresh-tarkovdev-schema — Categories.community

v1.0.0
GitHub

About this Skill

Perfect for Gaming Agents needing automated Escape from Tarkov weapon build optimization and GraphQL schema updates. A tool for calculating optimal weapon builds in Escape from Tarkov.

sjtw sjtw
[0]
[0]
Updated: 3/4/2026

Quality Score

Top 5%
49
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
Cursor IDE Windsurf IDE VS Code IDE
> npx killer-skills add sjtw/tarkov-build-optimiser/refresh-tarkovdev-schema

Agent Capability Analysis

The refresh-tarkovdev-schema MCP Server by sjtw is an open-source Categories.community integration for Claude and other AI agents, enabling seamless task automation and capability expansion.

Ideal Agent Persona

Perfect for Gaming Agents needing automated Escape from Tarkov weapon build optimization and GraphQL schema updates.

Core Value

Empowers agents to regenerate the Go client and update the tarkov.dev GraphQL schema, enabling access to new fields, types, and data through GraphQL queries and the tarkov.dev API.

Capabilities Granted for refresh-tarkovdev-schema MCP Server

Updating schema after tarkov.dev API updates
Resolving 'unknown field' errors in GraphQL queries
Integrating new data from the tarkov.dev API into projects
Setting up projects with the latest schema for the first time

! Prerequisites & Limits

  • Requires access to the tarkov.dev API
  • Specific to Escape from Tarkov and its API
  • Needs task automation with 'task tark' command
Project
SKILL.md
6.6 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Refresh Tarkov.dev Schema Skill

Use this skill when updating the tarkov.dev GraphQL schema or regenerating the Go client.


When to Use

  • Tarkov.dev API has added new fields or types you need
  • GraphQL queries are failing with "unknown field" errors
  • You want to use new data that's available in the API
  • After a major tarkov.dev API update
  • Setting up the project for the first time (if schema is missing)

Quick Update

bash
1# Fetch latest schema and regenerate client 2task tarkovdev

This runs two steps:

  1. tarkovdev:get-schema - Downloads the latest schema from tarkov.dev
  2. tarkovdev:regenerate - Regenerates Go code from your queries

Step-by-Step Process

Step 1: Fetch Latest Schema

bash
1task tarkovdev:get-schema

What it does:

  • Introspects the tarkov.dev GraphQL API at https://api.tarkov.dev/graphql
  • Writes the schema to internal/tarkovdev/schemas/schema.graphql

Requirements:

  • graphql-inspector CLI tool (installed via task deps:install:node)
  • Internet connection to reach api.tarkov.dev

Step 2: Update Your Queries (if needed)

If you want to use new fields, update your queries in:

internal/tarkovdev/schemas/queries.graphql

Example: Adding a new field to an existing query

graphql
1query GetWeapons { 2 items(type: weapon) { 3 id 4 name 5 # Add new fields here 6 weight 7 basePrice 8 } 9}

Step 3: Regenerate Go Client

bash
1task tarkovdev:regenerate

What it does:

  • Runs genqlient code generator
  • Reads genqlient.yaml configuration
  • Generates Go types and functions in internal/tarkovdev/generated-queries.go

Configuration file: genqlient.yaml

yaml
1schema: internal/tarkovdev/schemas/schema.graphql 2operations: 3 - internal/tarkovdev/schemas/queries.graphql 4generated: internal/tarkovdev/generated-queries.go

Step 4: Verify the Changes

bash
1# Check what changed 2git diff internal/tarkovdev/ 3 4# Ensure it compiles 5go build ./... 6 7# Run relevant tests 8go test ./internal/tarkovdev/... 9go test ./internal/importers/...

What Gets Generated

After regeneration, internal/tarkovdev/generated-queries.go contains:

  • Go structs for all GraphQL types used in your queries
  • Query functions like GetWeapons(ctx, client), GetMods(ctx, client), etc.
  • Response types with proper JSON unmarshaling

Example generated code:

go
1type GetWeaponsResponse struct { 2 Items []GetWeaponsItem `json:"items"` 3} 4 5type GetWeaponsItem struct { 6 Id string `json:"id"` 7 Name string `json:"name"` 8 // New fields appear here automatically 9} 10 11func GetWeapons(ctx context.Context, client graphql.Client) (*GetWeaponsResponse, error) { 12 // Generated query execution 13}

Making Query Changes

Add a New Query

  1. Open internal/tarkovdev/schemas/queries.graphql
  2. Add your query:
graphql
1query GetTraderOffers { 2 traders { 3 id 4 name 5 cashOffers { 6 item { 7 id 8 name 9 } 10 price 11 } 12 } 13}
  1. Regenerate:
bash
1task tarkovdev:regenerate
  1. Use the generated function:
go
1import "tarkov-build-optimiser/internal/tarkovdev" 2 3resp, err := tarkovdev.GetTraderOffers(ctx, graphqlClient)

Modify an Existing Query

  1. Edit the query in queries.graphql
  2. Regenerate: task tarkovdev:regenerate
  3. Update any code using the old structure (compiler will help find it)

Remove a Query

  1. Delete or comment out the query in queries.graphql
  2. Regenerate: task tarkovdev:regenerate
  3. Remove any code calling the deleted query function

Understanding the Schema

View the Schema

bash
1# Open in your editor 2code internal/tarkovdev/schemas/schema.graphql

The schema shows:

  • Available types (Item, Weapon, Mod, Trader, etc.)
  • Fields on each type
  • Query operations you can use
  • Enums and their values

Explore Available Fields

graphql
1# Look for the type you're interested in 2type Item { 3 id: ID! 4 name: String 5 weight: Float 6 types: [ItemType!]! 7 # ... many more fields 8}

Check Query Operations

graphql
1type Query { 2 items(type: ItemType): [Item] 3 item(id: ID!): Item 4 traders: [Trader] 5 # ... etc 6}

Troubleshooting

Schema fetch fails

Error: Can't connect to api.tarkov.dev

Solutions:

  • Check internet connection
  • Verify API is online: curl https://api.tarkov.dev/graphql
  • Check if API endpoint changed (update in Taskfile)
  • Try again later (API might be down)

Code generation fails

Error: genqlient errors during regeneration

Check:

  • Query syntax is valid GraphQL
  • Field names match the schema exactly (case-sensitive)
  • Types used in queries exist in the schema
  • Required fields are included in queries

Debug:

bash
1# Validate your queries manually 2cat internal/tarkovdev/schemas/queries.graphql 3 4# Check genqlient version 5go list -m github.com/Khan/genqlient

Generated code has compilation errors

After regeneration, Go build fails

Solutions:

  • Update code using the changed types
  • Check if field names or types changed in the API
  • Verify your queries match the new schema
  • Look for breaking changes in tarkov.dev API

New fields not appearing

You fetched the schema but new fields aren't available

Check:

  • Did you run task tarkovdev:get-schema?
  • Is the field added to your query in queries.graphql?
  • Did you run task tarkovdev:regenerate after updating queries?
  • Is the field actually in the schema? (Check schema.graphql)

Best Practices

When to Update

  • ✅ Before starting work that needs new API fields
  • ✅ When GraphQL errors mention unknown fields
  • ✅ Periodically to stay current with API changes
  • ❌ Not during active development unless needed
  • ❌ Not if your queries are working fine

After Updating

  1. Check the diff to understand what changed
  2. Update your queries if needed
  3. Rebuild and test
  4. Update importers if data structures changed
  5. Commit schema and generated code together

Query Design

  • Request only fields you actually use (performance)
  • Use fragments for reusable field sets
  • Keep queries focused and named clearly
  • Document complex queries with comments

Files Involved

  • Schema source: https://api.tarkov.dev/graphql
  • Schema file: internal/tarkovdev/schemas/schema.graphql
  • Your queries: internal/tarkovdev/schemas/queries.graphql
  • Generated code: internal/tarkovdev/generated-queries.go
  • Config: genqlient.yaml
  • Client wrapper: internal/tarkovdev/tarkov-dev.go

Dependencies

Installed via task deps:install:node:

  • graphql-inspector - For schema introspection

Installed via task deps:install:go:

  • github.com/Khan/genqlient - For code generation

Related Skills

Looking for an alternative to refresh-tarkovdev-schema or building a Categories.community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
Communication