skills/skill-collections/alfworld/alfworld-object-state-inspector/SKILL.md
Inspects a receptacle's contents by navigating to it and reading the observation. Use when you need to check what is on or inside a receptacle (e.g., "what's on the shelf", "is the holder empty", "check the table for items"). Executes `go to {receptacle}`, parses the observation listing items present, and decides whether to take an item, search elsewhere, or proceed.
npx skillsauth add zjunlp/Skills alfworld-object-state-inspectorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Inspect the state or contents of a target receptacle by navigating to it and parsing the environment's observation feedback.
go to {target_receptacle}"On the {receptacle}, you see nothing." -- receptacle is empty"On the {receptacle}, you see a {item1}, and a {item2}." -- items are presenttake {item} from {receptacle}go to target name is invalid -- verify the receptacle name from your environment scango to for navigation; it does not use open, close, or toggleScenario 1: Check if a toiletpaperhanger has toilet paper.
Action: go to toiletpaperhanger 1
Observation: On the toiletpaperhanger 1, you see nothing.
Decision: Holder is empty. Find a toiletpaper roll elsewhere and bring it here.
Scenario 2: Check a toilet for available items.
Action: go to toilet 1
Observation: On the toilet 1, you see a soapbottle 1, and a toiletpaper 1.
Decision: toiletpaper 1 is available. Execute take toiletpaper 1 from toilet 1.
development
Machine learning in Python with scikit-learn. Use when working with supervised learning (classification, regression), unsupervised learning (clustering, dimensionality reduction), model evaluation, hyperparameter tuning, preprocessing, or building ML pipelines. Provides comprehensive reference documentation for algorithms, preprocessing techniques, pipelines, and best practices.
development
Query Reactome REST API for pathway analysis, enrichment, gene-pathway mapping, disease pathways, molecular interactions, expression analysis, for systems biology studies.
tools
Cheminformatics toolkit for fine-grained molecular control. SMILES/SDF parsing, descriptors (MW, LogP, TPSA), fingerprints, substructure search, 2D/3D generation, similarity, reactions. For standard workflows with simpler interface, use datamol (wrapper around RDKit). Use rdkit for advanced control, custom sanitization, specialized algorithms.
development
Python interface to OpenMS for mass spectrometry data analysis. Use for LC-MS/MS proteomics and metabolomics workflows including file handling (mzML, mzXML, mzTab, FASTA, pepXML, protXML, mzIdentML), signal processing, feature detection, peptide identification, and quantitative analysis. Apply when working with mass spectrometry data, analyzing proteomics experiments, or processing metabolomics datasets.