Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

family-grocery家庭杂货店

Agent Skill

family-grocery 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,432

周安装

316

GitHub Stars

公开资料未说明

下载量

2,604
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:family-grocery(家庭杂货店)
来源仓库:https://github.com/adeydas/family-grocery
安装命令:
openclaw skills install family-grocery
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install family-grocery

简介

多成员协同管理的家庭购物清单共享系统。

  • 支持按商店分类添加、删除和查看待购物品。
  • 具备管理员权限控制和商店库存网络验证功能。
  • 需确保网络连接正常以同步云端数据。family-grocery 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议设置共享规则防止误删重要条目。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
Family Grocery
slug
family-grocery
version
1.0.0
description
Shared family grocery list — multiple members add, remove, and view items organized by store. Admin-managed access, web-verified store addresses and item availability.
metadata
{"clawdbot":{"emoji":"🛒","requires":{"bins":[]},"os":["linux","darwin","win32"]}}

When to Use

A family member needs to add, remove, or view a shared grocery list that multiple people contribute to. The list is organized by store (with address). Focus: what to buy and where, not meal planning.

Architecture

Shared data lives in a user-configured local path accessible to all family members. See memory-template.md for file templates.

[shared-path]/
├── config.json    # Stores, primary store, fallback order, category→store map
├── users.md       # Family members and roles (admin/member)
├── list.md        # Current grocery list, grouped by store
└── history.md     # Log of all adds, removes, and merges

Skill reference files:

TopicFile
Data file templatesmemory-template.md
List operationslists.md
Store managementstores.md
User managementuser-management.md

Startup Sequence

Run this every invocation, in order:

Step 1 — Resolve user identity

  1. Ask the agent for the name the user has set with it (read from OpenClaw memory key: family_grocery_user).
  2. If no name is stored → deny: "No name found on this agent. Ask your admin to configure your agent with your name." Stop.

Step 2 — Resolve shared path

  1. Read shared path from OpenClaw memory (key: family_grocery_path).
  2. If not found → this is a first-time setup. Go to Admin Init Flow below.

Step 3 — Load config and verify access

  1. Read [shared-path]/config.json and [shared-path]/users.md.
  2. Look up the username (from Step 1) in users.md.
  3. If not found → deny: "[name] is not on the family list. Ask your admin to add you."
  4. If found → proceed. Note whether user is admin or member.

Admin Init Flow

Only runs when no shared path is in OpenClaw memory.

  1. Ask: "What shared path should I use for the family grocery data? (e.g. /Users/Shared/grocery)"
  2. Create directory: mkdir -p [path]
  3. Initialize files from memory-template.md: config.json, users.md, list.md, history.md
  4. Write the current user to users.md as admin
  5. Save path to OpenClaw memory as family_grocery_path
  6. Confirm: "Setup complete. You are admin. Share the path [path] with other family members so they can connect their agents."

Scope

This skill ONLY:

  • Manages the shared grocery list (add, remove, view)
  • Tracks stores and their addresses
  • Assigns items to stores (by user input, category, or primary store default)
  • Checks item availability and store addresses via web search (when available)
  • Manages family member access
  • Surfaces change history on request

This skill NEVER:

  • Makes purchases or places orders
  • Plans meals or suggests recipes
  • Reads or writes files outside [shared-path]
  • Accesses live store inventory systems
  • Pushes notifications when the list changes

Core Rules

1. Always reload config and users on every invocation

Never cache across sessions. Always re-read config.json and users.md at startup to pick up changes made by other family members.

2. Identity is resolved from OpenClaw memory

  • Never ask the user for their name — always read it from the agent's OpenClaw memory. If absent, deny access.
  • Never ask for the shared path if it's in memory.
  • Save both on first encounter so they're never asked again.
  • Name must match exactly (case-insensitive) what the admin registered in users.md.

3. Adding items — always resolve a store first

Resolution order: user input → category mapping → primary store.

See lists.md for full add flow including duplicate detection and web search.

4. Duplicate detection before every add

Before adding any item, fuzzy-match (case-insensitive, singular/plural) against list.md. If a match exists, tell the user who added it and when, then ask whether to merge quantities or add separately. Log merges in history.md.

5. Every write is attributed

Every entry in list.md and history.md must include the user name and ISO timestamp.

6. Web search is optional — always degrade gracefully

  • If web search is available: use it to verify store addresses and item availability.
  • If unavailable: proceed without it, note the limitation to the user once.
  • Never block an action waiting for web search.

7. Store headings always include address

When displaying the list, format each store heading as: 🏪 [Store Name] ([Full Address]) — [Store Hours]

If store hours are missing, resolve them before displaying: web search → confirm with user → save to config.json. If search unavailable, ask user. If user skips, omit hours from heading. This ensures migration from older configs that lack store hours.

Always end the list with Total items: [count] across all stores including unassigned.

8. Admin-only actions

ActionWho can do it
Add a userAdmin only
Set primary storeAdmin only
Set fallback orderAdmin only
Update category→store mapAdmin only
Add a new storeAny user
Add/remove list itemsAny user
View listAny user
View historyAny user

If a member attempts an admin-only action: "Only the admin can do that."


Common Traps

  • Reading from a stale cached config → always reload config.json and users.md at startup
  • Adding an item without resolving a store first → always confirm store before writing to list.md
  • Showing a list dump without store grouping → always group by store with address heading
  • Forgetting to attribute changes → every write must include user + timestamp
  • Blocking on web search when unavailable → degrade gracefully, proceed without it
  • Asking for user name or path every session → these must be in OpenClaw memory after first use

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.4%
按下载量换算1,859

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills