Retail Knowledge
Analysis
This is a coherent retail knowledge-base Q&A skill, with notable but purpose-aligned handling of local KB files, session context, query logging, and a membership example that may request a phone number.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
parser.add_argument("--kb", required=True, help="Path to knowledge_base.json") ... kb = json.loads(kb_path.read_text(encoding="utf-8"))The helper reads a caller-specified local JSON file and outputs matching entries. This is central to local KB search, but the file path should be limited to the intended retail knowledge base.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
回复本消息您的手机号,我帮您查
A membership-points example suggests asking the customer to reply with a phone number so the agent can check the balance. That is plausible for retail service, but it involves a personal identifier and account-style lookup that is not otherwise described by credentials or backend configuration.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Maintain context across turns within a session ... Log the query internally for Step 12 gap digest
The skill directs the agent to remember session context and internally log unanswered queries. This is purpose-aligned for better Q&A, but it creates retained conversation data that should be scoped.
