test-inventree-devcontainer

test-inventree-devcontainer is a skill for Claude Code, Codex from jrobelia/inventree-plugin-ai-toolkit. It costs 62 tokens per session (1,913 once invoked), scanned A, original, MIT.

An end-to-end test procedure for the InvenTree Plugin AI Toolkit development container. A development container is a Docker-based workspace with the project's tools and dependencies.

In plain words
What is it for?
Use it to verify container upgrades, initialize the toolkit, and confirm the development server is healthy.
Why use it?
It checks that the container builds, setup completes, and the expected InvenTree server starts after version or Python changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/inventree/dev.

Good fit Use it to verify container upgrades, initialize the toolkit, and confirm the development server is healthy.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-inventree-devcontainer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jrobelia/inventree-plugin-ai-toolkit/test-inventree-devcontainer.svg)](https://agentmods.dev/skills/jrobelia/inventree-plugin-ai-toolkit/test-inventree-devcontainer)
Your own site
<a href="https://agentmods.dev/skills/jrobelia/inventree-plugin-ai-toolkit/test-inventree-devcontainer"><img src="https://agentmods.dev/badge/skills/jrobelia/inventree-plugin-ai-toolkit/test-inventree-devcontainer.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,913 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.01913
Opus 5 $0.00031 $0.00957
Sonnet 5 $0.00012 $0.00383
Haiku 4.5 $0.00006 $0.00191

Measured 8d ago against content hash 57ccd9f6dcad, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

test-inventree-devcontainer scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl.exe -s --max-time 10 http://localhost:8001/api/system/health/
.devin/skills/test-inventree-devcontainer/SKILL.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test the InvenTree Plugin AI Toolkit devcontainer

Purpose: Verify that the devcontainer image builds, the one-time setup completes, and the InvenTree dev server serves the expected version.


One-liner

From the toolkit root, after updating submodules and wiping stale volumes:

docker compose -f .devcontainer/docker-compose.yml -f .devcontainer/docker-compose.frontend-volumes.yml up -d --build
docker compose -f .devcontainer/docker-compose.yml -f .devcontainer/docker-compose.frontend-volumes.yml exec -u vscode toolkit bash -c "cd /workspace && bash .devcontainer/postCreateCommand.sh"
cd /workspace/reference/inventree-source && invoke dev.server -a 0.0.0.0:8001

Workflow

1. Align the InvenTree source submodule

The devcontainer points at reference/inventree-source and uses invoke tasks from it. The committed submodule pointer may lag origin/stable, which is where a new InvenTree release (and a new MIN_PYTHON_VERSION) can land.

git submodule update --init --recursive --remote --force

Completion criterion: reference/inventree-source/src/backend/InvenTree/InvenTree/version.py shows the expected INVENTREE_SW_VERSION and MIN_PYTHON_VERSION. If the goal is to validate a Python version bump, MIN_PYTHON_VERSION must match the devcontainer base image.

2. Wipe stale data volumes when the Python base image changes

/inventree-data/venv is stored on a named Docker volume. postCreateCommand.sh creates it with python3 -m venv, which fails if the directory already exists. After a Python version bump, start from an empty volume.

docker compose -f .devcontainer/docker-compose.yml -f .devcontainer/docker-compose.frontend-volumes.yml down -v

Completion criterion: docker volume ls no longer shows devcontainer_inventree-data before the next up.

3. Build and verify the toolkit image

docker compose -f .devcontainer/docker-compose.yml -f .devcontainer/docker-compose.frontend-volumes.yml build --no-cache toolkit

Read the full file on GitHub · 141 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 141 lines · 62 tokens per session scan A 57ccd9f6dcad

Subscribe to this mod's changes

test-inventree-devcontainer is a skill published in the GitHub repository jrobelia/inventree-plugin-ai-toolkit (1 stars, last pushed 20d ago), licensed MIT. It adds 62 tokens to every session and 1,913 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

dotnet-testing-advanced-tunit-advanced

A guide for advanced TUnit testing in .NET. TUnit is a testing framework; the guide covers tests driven by data, dependency injection, integration tests, retries, time limits, and filtering.

kevintsengtw/dotnet-testing-agent-skills · 211 tokens

dotnet-testing-advanced-aspire-testing

A guide to testing .NET Aspire distributed applications, which are programs made of several coordinated services. It covers tests that run the real service setup through an AppHost, the project that describes how those services are arranged.

kevintsengtw/dotnet-testing-agent-skills · 193 tokens

dotnet-testing-advanced-aspnet-integration-testing

Guidance for ASP.NET Core integration tests, which test several web application parts together through HTTP requests and responses.

kevintsengtw/dotnet-testing-agent-skills · 210 tokens

dotnet-testing-advanced-testcontainers-database

Guidance for integration tests that use Testcontainers, a library that starts real services in temporary Docker containers, with databases such as SQL Server, PostgreSQL, or MySQL.

kevintsengtw/dotnet-testing-agent-skills · 199 tokens

dotnet-testing-advanced-webapi-integration-testing

Guidance for ASP.NET Core Web API integration tests, including HTTP endpoints and ProblemDetails, a standard format for describing API errors.

kevintsengtw/dotnet-testing-agent-skills · 201 tokens

verify

Build the computer-use-demo image and drive the Streamlit UI headlessly to verify changes end-to-end.

anthropics/claude-quickstarts · 23 tokens