Gracie Crm
PassAudited by ClawScan on May 1, 2026.
Overview
This appears to be a coherent local CRM helper that stores and updates lead/contact records, with no evidence of exfiltration or hidden background behavior.
This skill looks purpose-aligned for a local CRM. Before installing, be comfortable with storing lead/contact data in the skill directory, review or back up crm.json, and remember that add/call/note/import commands intentionally change the local CRM database.
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.
Running update commands can alter the local lead database, including sales status and follow-up information.
The CLI can modify local CRM records by logging calls, changing statuses, setting follow-up dates, and saving the updated data. This is expected for the stated CRM purpose but can change business records.
lead["calls"].append(call_record)
lead["status"] = new_status
if args.followup:
lead["followup_date"] = args.followup
save(leads)Use mutating commands only when you intend to update the CRM, and consider backing up crm.json if the lead data matters.
Lead names, phone numbers, call outcomes, notes, and follow-up dates remain stored locally and may be shown or updated by the skill.
The bundled/local CRM database contains persistent lead contact details and notes. This is purpose-aligned, but it is sensitive business context that may be reused in later CRM tasks.
"name": "P.A.C. Plumbing",
"phone": "718-720-4980",
...
"notes": [
"Owner is Paul, best time is morning before 9am"
]Treat crm.json as business contact data; avoid adding information you would not want stored in the skill directory, and protect or back up the file as needed.
You have less external provenance information for deciding whether to trust the included CRM script and lead data.
The artifacts do not provide a source repository or homepage. This is a provenance limitation, although the provided install information does not show remote downloads, package installation, or hidden helpers.
Source: unknown Homepage: none
Review the included files before installing and prefer a known source or maintainer if provenance is important for your workflow.
