inventory-lookup

inventory-lookup is a skill for Claude Code, Codex from microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents. It costs 47 tokens per session (1,221 once invoked), scanned A, original, MIT.

An inventory and parts lookup skill for fibre-network technicians. It searches equipment records, shows part details, lists available items, and checks stock for one or several parts.

In plain words
What is it for?
Use it to search for parts, inspect SKUs and details, browse categories, check single-item stock, or check several parts together.
Why use it?
It gives technicians one way to find parts and availability instead of checking separate inventory views. This helps answer whether required supplies or equipment are available.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to search for parts, inspect SKUs and details, browse categories, check single-item stock, or check several parts together.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup
About the project

microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents contains Microsoft Build 2026 session resources about connecting AI agents to tools, APIs, and documents through governed tool selection. It is intended for developers building agents that need efficient access to MCP servers, A2A, OpenAPI, connectors, built-in tools, and structured content from multimodal files. The catalogue add-ons are session instructions for exploring these agent-building patterns.

microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents · 10 stars · on GitHub · build.microsoft.com

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 microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents --skill inventory-lookup
Clone the repo
git clone --depth 1 https://github.com/microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents

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 inventory-lookup

README.md
[![agentmods](https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup/github.svg)](https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup)
Your own site
<a href="https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup"><img src="https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup/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 inventory-lookup

Your own site · 80×15
<a href="https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup"><img src="https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/inventory-lookup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,221 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.
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.00047 $0.01221
Opus 5 $0.00023 $0.00611
Sonnet 5 $0.00009 $0.00244
Haiku 4.5 $0.00005 $0.00122

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

Security

Grade A, and why

inventory-lookup 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 12d 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.

src/fibey/src/fibey/agent/skills/inventory-lookup/SKILL.md · 107 lines

How it starts

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

Inventory Lookup

Use this skill when the technician asks about parts, stock, equipment, or availability.

When to Use

  • "Do we have any SC connectors?"
  • "What's the stock on FIB-042?"
  • "Show me all splice equipment"
  • "Is the OTDR available?"
  • "What connectors do we carry?"
  • "Check stock for the parts on WO-007"

Tools Used by This Skill

All inventory capabilities live in the Foundry Toolbox under the inventory MCP server, so the actual tool names are prefixed inventory___.

Capability Prefixed tool name
Free-text part search inventory___search_parts
Browse / filter list inventory___list_parts
Single-part details inventory___get_part_details
Single-part stock inventory___check_stock
Multi-part stock inventory___check_stock_batch

Step 0: Discover tools (REQUIRED before first inventory call this turn)

If the inventory tools aren't already visible in your tool list, call tool_search once with limit: 10. Use a query made from the technician's own domain terms — the toolbox is indexed with fiber-tech vocabulary so terms like "OTDR", "splicer", "VFL", "connector", "patch cord", "splice tray", "test equipment" all match inventory tools directly.

Examples:

  • "OTDR stock?" → tool_search({"query": "OTDR", "limit": 10})
  • "do we have SC connectors?" → tool_search({"query": "SC connector", "limit": 10})
  • generic "check parts" → tool_search({"query": "inventory parts stock", "limit": 10})

Always pass limit: 10 so all inventory tools surface. The returned tools stay callable for the rest of the turn — do not call tool_search again for inventory in this turn.

If tool_search returns "No tools matched", fall back to invoking inventory tools directly via call_tool with their prefixed names from the table above — the tools exist regardless of search results.

Step 1: Choose the Right Tool

Question Type Tool (prefixed name) Example
Free-text search ("do we have…", "find…") inventory___search_parts "do we have splice trays?"
Browse by category inventory___list_parts with category filter "show all connectors"
Specific part by ID inventory___get_part_details with part_id "details on FIB-012"
Stock level for a known part inventory___check_stock with part_id "how many FIB-042 in stock?"
Stock levels for multiple parts inventory___check_stock_batch with part_ids list "check stock for FIB-003 and FIB-012"

Read the full file on GitHub · 107 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. 12d ago First seen · 107 lines · 47 tokens per session scan A 684d01c38f77

Subscribe to this mod's changes

inventory-lookup is a skill published in the GitHub repository microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents (10 stars, last pushed 23d ago), licensed MIT. It adds 47 tokens to every session and 1,221 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

teams-dev

Use this skill whenever the user mentions Microsoft Teams in a development context — whether they're building, integrating, configuring, debugging, or just asking questions. Covers bots, message extensions, embedded web apps, Adaptive Cards, dialogs, SSO, infrastructure, the Teams Developer CLI/SDK, and general Teams…

microsoft/Build26-DEM332-from-zero-to-teammate-in-25-minutes-build-a-teams-agent-live · 82 tokens

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use for any "make slides", "create a deck", or "slides from this document" request.

sickn33/agentic-awesome-skills · 64 tokens

claude-on-foundry

End-to-end assistant skill for the Claude on Foundry Starter Kit (Azure-Samples/claude). Walks customers through deploying, verifying, modifying, debugging, and tearing down a Claude model deployment on Microsoft Foundry using either the Bicep or Terraform IaC variant in this repo, with one-command guidance via azd…

Azure-Samples/claude · 239 tokens

api-agent-ready

Make ANY API agent-ready without integration code — design/harden the surface with the agent-readiness best-practices checklist (one canonical read, field-complete, clear enums/required fields, machine-authable auth), comprehend its OpenAPI/docs with gecko, emit the agent-native artifacts (llms.txt breadcrumb, x-gecko…

GeckoVision/gecko-surf · 186 tokens

buy-a-product

Use this when someone wants to buy something from a Let Me Buy storefront — "buy a water at the bar", "order a coffee for table 9", "pay for the Jägermeister", "get me a drink from jonasbar". Covers picking the store, picking the product, deriving the accounts, and the traps that make a purchase land on the wrong…

GeckoVision/gecko-surf · 126 tokens

txline-sharp-agent

Point an agent at the paywalled TxLINE World Cup odds API with Gecko (one line, no integration code), monitor the feed, and flag sharp implied-probability moves — the signal for a trading tool or an on-chain prediction market. Runs $0 in recorded mode. Use when building a Solana sports-trading agent, a…

GeckoVision/gecko-surf · 92 tokens