tdx-assets

tdx-assets is a skill for Claude Code from gebruder/wirken. It costs 58 tokens per session (1,626 once invoked), scanned A, original, MIT.

A read-only lookup tool for TeamDynamix, an IT service-management system, that connects staff members with the devices and other assets assigned to them.

In plain words
What is it for?
Use it to find people and return their assigned devices, locations, models, ownership types, and statuses, including names that could not be matched.
Why use it?
It helps resolve messy names or email addresses and avoids checking each person’s asset records manually.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to find people and return their assigned devices, locations, models, ownership types, and statuses, including names that could not be matched.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gebruder/wirken/tdx-assets
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add gebruder/wirken --skill tdx-assets
Clone the repo
git clone --depth 1 https://github.com/gebruder/wirken

Made for: Claude Code.

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 tdx-assets

README.md
[![agentmods](https://agentmods.dev/badge/skills/gebruder/wirken/tdx-assets/github.svg)](https://agentmods.dev/skills/gebruder/wirken/tdx-assets)
Your own site
<a href="https://agentmods.dev/skills/gebruder/wirken/tdx-assets"><img src="https://agentmods.dev/badge/skills/gebruder/wirken/tdx-assets/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tdx-assets

Your own site · 80×15
<a href="https://agentmods.dev/skills/gebruder/wirken/tdx-assets"><img src="https://agentmods.dev/badge/skills/gebruder/wirken/tdx-assets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,626 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00058 $0.01626
Opus 5 $0.00029 $0.00813
Sonnet 5 $0.00012 $0.00325
Haiku 4.5 $0.00006 $0.00163

Measured 11d ago against content hash f6e112f41a47, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

tdx-assets scanned grade A with 0 findings 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 11d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/connectors/tdx-assets/SKILL.md · 140 lines

How it starts

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

TeamDynamix staff asset lookup

Look up the devices and locations assigned to staff in TeamDynamix. The operator gives you a list of people (names, emails, or partial identifiers, often messy); you resolve each to a TDX person, pull the assets assigned to them, and return one table plus a section for names you could not resolve cleanly.

Authentication

Every request uses the http_request tool with credential: tdx-api. The tool injects that credential host-side as the Authorization: Bearer header; you never see the token value and must not put credentials in a request body or a header yourself. There is no login step in this skill: the tdx-api credential is already a TDX bearer token the operator minted and stored.

If any call returns HTTP 401, the token has expired. Stop immediately, do not retry, and tell the operator: "The tdx-api credential has expired; refresh it (see INSTALL.md) and run again." You cannot re-authenticate from inside this skill.

Steps

  1. Resolve each person. For each input identifier, call http_request:

    • method GET
    • url https://your-tenant.teamdynamix.com/TDWebApi/api/people/lookup?searchText=<url-encoded identifier>&maxResults=10
    • credential tdx-api

    The response is a JSON array of User objects. people/lookup returns the identity fields you need (UID, FullName, PrimaryEmail, LocationName, IsActive); it omits collection properties (Attributes among them) that this skill does not use. Prefer entries with IsActive: true. Then:

    • Exactly one active match → resolved. Keep UID, FullName, PrimaryEmail.
    • More than one plausible matchambiguous. Do not auto-pick. Add the candidates (FullName, PrimaryEmail, UID) to the "Needs confirmation" section and move on.
    • No match → add the original identifier to the "Could not resolve" section. Never silently drop an input.
  2. Pull assets per resolved person. For each resolved UID, call http_request:

    • method POST
    • url https://your-tenant.teamdynamix.com/TDWebApi/api/APPID/assets/search
    • credential tdx-api
    • body {"OwningCustomerIDs": ["<UID>"], "MaxResults": 100}

Read the full file on GitHub · 140 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 140 lines · 58 tokens per session scan A f6e112f41a47

Subscribe to this mod's changes

tdx-assets is a skill published in the GitHub repository gebruder/wirken (171 stars, last pushed today), licensed MIT. It adds 58 tokens to every session and 1,626 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

neuroskill-bci

Use live BCI cognitive and mood state from NeuroSkill.

NousResearch/hermes-agent · 18 tokens

edgeone skill scanner

A local static scanner that checks agent-skill files for security risks before they are installed or used. Static analysis examines files without running them.

Tencent/AI-Infra-Guard · 148 tokens

running-openmed-ondevice

Run OpenMed models fully on-device with the MLX (Apple Silicon), CoreML (iOS/macOS), or ONNX/WebGPU (cross-platform/browser) backends, including convert-quantize-run workflows. Use when the user wants to deploy OpenMed at the edge, run NER/de-id on Apple Silicon, target iPhone/iPad/Mac, export to ONNX or WebGPU…

maziyarpanahi/openmed · 175 tokens

opentrons-integration

Official Opentrons Protocol API for OT-2 and Flex robots. Use when writing protocols specifically for Opentrons hardware with full access to Protocol API v2 features. Best for production Opentrons protocols, official API compatibility. For multi-vendor automation or broader equipment control use pylabrobot.

synthetic-sciences/openscience · 66 tokens

pylabrobot

Vendor-agnostic lab automation framework. Use when controlling multiple equipment types (Hamilton, Tecan, Opentrons, plate readers, pumps) or needing unified programming across different vendors. Best for complex workflows, multi-vendor setups, simulation. For Opentrons-only protocols with official API…

synthetic-sciences/openscience · 73 tokens

aig-scanner

A.I.G Scanner — AI security scanning for infrastructure, AI tools / skills, AI Agents, and LLM jailbreak evaluation via Tencent Zhuque Lab AI-Infra-Guard. Uses built-in exec + Python script, no plugin required. Requires AIGBASEURL to be configured. Triggers on: scan AI service, AI vulnerability scan, scan AI infra…

Tencent/AI-Infra-Guard · 142 tokens