Legal Consulting Bundle
Analysis
The artifacts describe a coherent legal-consulting web app with purpose-aligned legal knowledge and optional DeepSeek LLM use, with privacy and setup details users should review.
Findings (4)
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.
allowed-tools: - Read - Write - WebSearch - WebFetch
The skill requests file read/write and web access; these are plausible for legal document review and research, but broad enough that users should keep usage task-scoped.
copy .env.example .env
The setup instructions reference a .env.example file, but that file is not listed in the provided manifest.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
DEEPSEEK_API_KEY = os.getenv("DEEPSEEK_API_KEY", "") ... "Authorization": f"Bearer {DEEPSEEK_API_KEY}"The app can use a DeepSeek API key, but the registry metadata declares no required or optional environment variables.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
DEEPSEEK_API_URL = "https://api.deepseek.com/v1/chat/completions" ... {"role": "user", "content": user_prompt}When configured with an API key, the app sends the user's legal question to an external LLM provider.
