mc-observe-items_skill

This skill observes visible item entities within a fixed radius, filtering by forward cone and line-of-sight to help inventory planning.
  • Python

9

GitHub Stars

2

Bundled Files

2 months ago

Catalog Refreshed

4 months ago

First Indexed

Readme & install

Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.

Installation

Preview and clipboard use veilstrat where the catalogue uses aiagentskills.

npx veilstrat add skill bdambrosio/cognitive_workbench --skill mc-observe-items

  • Skill.md2.3 KB
  • tool.py10.7 KB

Overview

This skill detects visible dropped item entities around the player within a configurable radius (default and maximum 7 blocks). It produces both a concise human-readable SUMMARY and a structured data object detailing pose, item counts, distances, and pickup affordances. Use it to plan collection, manage nearby loot, or feed automated agents with precise item data.

How this skill works

The tool scans for item entities within the observation radius, then filters results by a forward view cone (yaw ±60°, pitch -60° to +90°) and line-of-sight so only visible items are reported. It returns a structured payload that includes the observer pose, total counts grouped by item type, nearest items, a by-distance list, and pickup-range categories. Confidence flags indicate completeness and performance trade-offs.

When to use it

  • When you need to know which dropped items are currently visible and reachable
  • Before moving or pathing to collect loot to prioritize nearest or pickable items
  • To populate automation agents with precise item entity data for decision making
  • When auditing nearby item counts and types without scanning blocks
  • To detect missing items or verify that expected drops are present

Best practices

  • Keep radius at or below 7 (default) because the tool enforces a 7-block maximum
  • Retry observation if conf is 'low' to improve completeness or move closer and re-run
  • Combine with block-scanning tools when you need chest or container contents (this tool only reports entities)
  • Use the structured data.items.nearby for programmatic analysis and sorting by distance
  • Prefer short, frequent observations (conf='high') when many items are present to avoid slow scans

Example use cases

  • Scan a mob farm floor to collect and prioritize high-value drops (e.g., diamonds, enchanted gear)
  • Automate a collection bot by feeding it nearest-item coordinates and pickup affordances
  • Verify that a chest-emptying routine left no dropped items in a work area
  • Quickly list and count visible item types after large-scale block breaks or explosions
  • Filter and report only immediately pickable items for on-foot looting runs

FAQ

The tool defaults to 7 blocks and enforces a maximum of 7 blocks. Use the radius or entities_radius input up to 7.

What does conf mean?

conf indicates observation completeness: 'high' is complete and fast, 'med' may be complete but slow, and 'low' indicates an incomplete scan that may need retrying.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational
mc-observe-items skill by bdambrosio/cognitive_workbench | VeilStrat