Landing Page Design
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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.
The agent may run external provider jobs through infsh, which could send prompts externally or use the user's account.
The skill allows the agent to run the infsh CLI. This fits the stated image-generation and research purpose, but it is broad within that third-party tool.
allowed-tools: Bash(infsh *)
Review infsh commands before running them, especially anything that could incur cost, publish content, or use non-example inputs.
Installing the CLI gives a third-party binary access to run on the user's machine.
The quick start uses a remote installer for an external CLI. It is user-directed and disclosed, but it requires trusting the external distribution source.
curl -fsSL https://cli.inference.sh | sh && infsh login
Use the official source, prefer manual installation when possible, and verify the checksum before running the CLI.
Generated images or searches may be tied to the user's external account and any associated billing or usage limits.
The skill expects authentication to the inference.sh CLI. This is normal for the integration, but it means provider calls may use the user's account.
infsh login
Use an account and permissions appropriate for this task, and check provider billing and data-use settings.
If real landing-page copy, company strategy, or customer information is placed in prompts, that information may be sent to third-party services.
The skill sends prompts or search queries to external provider apps through infsh. This is disclosed and purpose-aligned, but data boundaries are not further detailed.
infsh app run tavily/search-assistant --input '{ "query": "best SaaS landing page examples 2024 conversion rate" }'Avoid including confidential business or customer data in prompts unless the external provider's privacy and retention terms are acceptable.
