← Back to Skills Marketplace
mjrussell

Anylist

by Matt Russell · GitHub ↗ · v0.1.0
cross-platform ⚠ suspicious
2252
Downloads
2
Stars
6
Active Installs
1
Versions
Install in OpenClaw
/install anylist
Description
Manage grocery and shopping lists via AnyList. Use when user asks about shopping lists, groceries, or adding/checking off items to buy.
README (SKILL.md)

AnyList CLI

Manage grocery and shopping lists via AnyList.

Installation

npm install -g anylist-cli

Setup

# Authenticate interactively
anylist auth

# Or set environment variables for non-interactive use
export ANYLIST_EMAIL="[email protected]"
export ANYLIST_PASSWORD="your-password"

Commands

Lists

anylist lists              # Show all lists
anylist lists --json       # Output as JSON

Items

anylist items "Grocery"              # Show items in a list
anylist items "Grocery" --unchecked  # Only unchecked items
anylist items "Grocery" --json       # Output as JSON

Add Items

anylist add "Grocery" "Milk"
anylist add "Grocery" "Milk" --category dairy
anylist add "Grocery" "Chicken" --category meat --quantity "2 lbs"

Categories: produce, meat, seafood, dairy, bakery, bread, frozen, canned, condiments, beverages, snacks, pasta, rice, cereal, breakfast, baking, spices, seasonings, household, personal care, other

Manage Items

anylist check "Grocery" "Milk"      # Mark as checked
anylist uncheck "Grocery" "Milk"    # Mark as unchecked
anylist remove "Grocery" "Milk"     # Remove from list
anylist clear "Grocery"             # Clear all checked items

Usage Examples

User: "What's on the grocery list?"

anylist items "Grocery" --unchecked

User: "Add milk and eggs to groceries"

anylist add "Grocery" "Milk" --category dairy
anylist add "Grocery" "Eggs" --category dairy

User: "Check off the bread"

anylist check "Grocery" "Bread"

User: "Add ingredients for tacos"

anylist add "Grocery" "Ground beef" --category meat
anylist add "Grocery" "Taco shells" --category other
anylist add "Grocery" "Lettuce" --category produce
anylist add "Grocery" "Tomatoes" --category produce
anylist add "Grocery" "Cheese" --category dairy

Notes

  • List and item names are case-insensitive
  • If an item already exists, adding it again will uncheck it (useful for recipes)
  • Use --json for scripting and programmatic access
Usage Guidance
This skill appears to be a wrapper around an AnyList CLI, which is reasonable for managing shopping lists — but there are a couple of things to check before installing or using it: 1) Metadata mismatch: the SKILL.md tells you to authenticate non-interactively using ANYLIST_EMAIL and ANYLIST_PASSWORD, yet the skill manifest does not declare any required credentials. Ask the publisher to declare these env vars (or better, a token) in the manifest. 2) Verify the npm package: the instructions recommend 'npm install -g anylist-cli'; confirm the package name, publisher, and source on npm (and prefer an official package) before installing. 3) Avoid storing plaintext passwords in environment variables if possible — prefer API tokens or OAuth. 4) If you intend the agent to run this autonomously, be cautious about granting it access to environment variables or secrets on the host; ensure the agent runtime limits which env vars the skill can access. If the publisher cannot justify the missing credential declarations or provide a safer auth method, treat the skill as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: anylist Version: 0.1.0 The skill bundle is classified as benign. All instructions in SKILL.md, including the installation of `anylist-cli` via npm and the setup for authentication using environment variables, are directly aligned with the stated purpose of managing AnyList. There is no evidence of prompt injection attempts against the agent, data exfiltration, malicious execution, persistence mechanisms, or any other intentional harmful behavior. The required access to credentials and the use of shell commands are necessary for the skill's legitimate function.
Capability Assessment
Purpose & Capability
Name and description (manage AnyList shopping lists) align with the instructions which show CLI commands (lists, items, add, check, etc.). The declared metadata bin 'anylist' is consistent with an anylist CLI binary.
Instruction Scope
SKILL.md instructs the agent/user to run an external CLI (anylist) and to authenticate (either interactively via 'anylist auth' or via env vars). The instructions do not ask the agent to read unrelated system files, but they do reference environment variables (ANYLIST_EMAIL, ANYLIST_PASSWORD) that are not declared in the skill's metadata — the agent could be asked to use or access credentials not announced by the skill manifest.
Install Mechanism
There is no install spec in the registry (instruction-only), but SKILL.md recommends npm install -g anylist-cli. Using an npm package is a normal approach, but the registry didn't declare an install step or vet the package. This is moderate-risk compared with a bundled or well-known release; verify the npm package and its publisher before installing.
Credentials
The runtime instructions suggest using ANYLIST_EMAIL and ANYLIST_PASSWORD for non-interactive auth, but the skill manifest lists no required env vars or primary credential. Requesting an email/password (especially a password env var) is plausible for a CLI client, but the lack of declared credentials in metadata is an inconsistency and storing passwords in plain env vars is a privacy risk — a token-based auth would be preferable.
Persistence & Privilege
always is false and there are no install steps that modify other skills or system-wide settings. The skill is instruction-only and does not request persistent placement or elevated privileges in the manifest.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install anylist
  3. After installation, invoke the skill by name or use /anylist
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
Initial release
Metadata
Slug anylist
Version 0.1.0
License
All-time Installs 6
Active Installs 6
Total Versions 1
Frequently Asked Questions

What is Anylist?

Manage grocery and shopping lists via AnyList. Use when user asks about shopping lists, groceries, or adding/checking off items to buy. It is an AI Agent Skill for Claude Code / OpenClaw, with 2252 downloads so far.

How do I install Anylist?

Run "/install anylist" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Anylist free?

Yes, Anylist is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Anylist support?

Anylist is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Anylist?

It is built and maintained by Matt Russell (@mjrussell); the current version is v0.1.0.

💬 Comments