Agent skill · AI & Agents

alfworld-inventory-management

Use when the agent must collect and track multiple instances of the same object type in ALFWorld (e.g., "put two cellphone in bed"). This skill maintains a count of collected versus needed objects, guides systematic searching through receptacles, and ensures each found object is placed at the target before searching for the next.

zjunlpgithub.com/zjunlpGitHub ↗
claude-codeMIT
Install
npx skills add zjunlp/SkillNet --skill alfworld-inventory-management --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: experiments/src/skills/alfworld/alfworld-inventory-management/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,117
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Inventory Management Skill ## When to Use Activate this skill when: - Task requires collecting **multiple instances** of the same object type (e.g., "put two cellphone in bed") - You need to track progress toward a quantity-based goal - Searching through multiple locations systematically ## Core Workflow ### 1. Initialize Inventory - Parse the task description to identify: - **Target object type** (e.g., "cellphone") - **Required quantity** (e.g., "two" = 2) - **Target receptacle** (e.g., "bed 1") - Initialize counters: `collected = 0`, `needed = <quantity>` - Create empty list for searched locations ### 2. Systematic Search Pattern Follow this search priority: 1. **Visible surfaces** (desks, dressers, beds, countertops) - check first 2. **Closed containers** (drawers, cabinets, safes) - open and inspect 3. **Less common locations** (shelves, side tables, garbage cans) 4. **Return to known locations** if inventory incomplete **Critical Rule:** After finding an object, immediately place it at the target location before searching for the next one. Do not attempt to carry multiple objects simultaneously. ### 3. Action Decision Logic Use this decision tree at each step: ``` Is target

What's inside
Steps it walks through
  1. When to Use
  2. Core Workflow
  3. 1. Initialize Inventory
  4. 2. Systematic Search Pattern
  5. 3. Action Decision Logic
  6. 4. Per-Object Cycle
  7. Example
  8. Error Handling
Ships with 1 file
  • references/common_mistakes.md
More from SkillNet
All skills →
About this skill
What does the alfworld-inventory-management skill do?

Use when the agent must collect and track multiple instances of the same object type in ALFWorld (e.g., "put two cellphone in bed"). This skill maintains a count of collected versus needed objects, guides systematic searching through receptacles, and ensures each found object is placed at the target before searching for the next.

How do I install it?

Run `npx skills add zjunlp/SkillNet --skill alfworld-inventory-management --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From zjunlp/SkillNet, a repository with 1,117 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going