brand knowledge base

ReviewAudited by ClawScan on May 10, 2026.

Overview

This skill coherently builds brand knowledge files, but it sends selected input documents to a configured LLM API and saves reusable outputs, so users should redact sensitive data and review results.

Use this skill only with documents you are comfortable sending to your configured LLM provider. Redact secrets, customer data, and confidential business material; use a dedicated API key; and review generated knowledge files before publishing or ingesting them into other agents.

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.

What this means

A provider API key may incur usage costs or expose account access if mishandled.

Why it was flagged

The skill authenticates to an LLM provider with a local API key. This is expected for the stated LLM processing, but the key is still a sensitive credential.

Skill content
api_key = os.getenv("OPENAI_API_KEY") ... client = OpenAI(api_key=api_key, base_url=base_url)
Recommendation

Use a dedicated LLM API key with the minimum needed permissions and revoke it if you stop using the skill.

What this means

Private business documents or customer data included in the input may leave the local environment.

Why it was flagged

The skill sends the selected document to an external LLM provider. This is clearly disclosed and central to the purpose, but it can include confidential brand or customer information.

Skill content
"The full contents of the specified input file will be sent over HTTPS to the configured OpenAI-compatible API provider"
Recommendation

Redact sensitive or regulated data before use and choose a trusted OPENAI_BASE_URL/provider.

What this means

Incorrect, poisoned, or over-claiming content could be reused by downstream agents or published publicly.

Why it was flagged

The generated knowledge base is intended for later RAG/agent/public use, and the skill itself warns that raw inputs may mislead the model if not reviewed.

Skill content
在正式装载入 RAG 系统、对客 Agent 或公开网站前,必须经过人工的严格复核与批准
Recommendation

Manually review and approve generated files before loading them into RAG systems, customer-facing agents, or public websites.