Apo Cli
Analysis
This appears to be a coherent apohealth shopping helper, but it can change a pharmacy cart, send medication searches to apohealth.de, and store apohealth session/cart state locally.
Findings (5)
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.
python3 {baseDir}/apo_cli.py cart add <variant_id> ... cart remove <variant_id> ... cart clear ... cart checkoutThe skill exposes cart mutation and checkout-opening commands. This matches the pharmacy cart-management purpose and is paired with safeguards, but users should still review cart-changing actions.
uv tool install git+https://github.com/Lars147/apo-cli
The README shows an optional user-directed install from a GitHub repository without a pinned commit. The skill's main path uses the bundled script, so this is a provenance note rather than an automatic install risk.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
COOKIES_FILE = SCRIPT_DIR / "apo_cookies.json" ... headers["Cookie"] = format_cookie_header(self.cookies) ... save_cookies(self.cookies)
The CLI loads, sends, and saves apohealth cookies in a local JSON file. This is bounded to apohealth.de and supports cart continuity, but cookies are session-like authority.
X-Shopify-Storefront-Access-Token: 965d12c54028db404dcedb3f9e9c4b03
The research notes include a credential-like Shopify Storefront token. The artifact describes it as public in apohealth's HTML, and no visible code uses it, but hardcoded tokens in distributed artifacts are still worth noticing.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
BASE_URL = "https://www.apohealth.de" ... client.get("/search/suggest.json", params)Search queries and cart API requests are sent to apohealth.de. This is disclosed and necessary for the skill, but medication names and PZNs can reveal health interests.
