Taxragflow
PassAudited by ClawScan on May 13, 2026.
Overview
This appears to be a coherent tax Q&A skill that queries a configured RAGFlow knowledge base, but users should protect the RAGFlow API key and verify where their questions are sent.
Before installing, make sure you trust the RAGFlow server URL and can provide a limited-scope API key. Avoid sending highly sensitive tax or business details unless the endpoint's privacy and retention practices are acceptable.
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.
When invoked, the agent may run the bundled Python script and make an outbound API request for the tax question.
The skill declares local execution and network access so it can run query_tax.py and call the configured RAGFlow API.
"permissions": ["exec.run", "network.access"]
Use it only where local script execution and outbound access to the intended RAGFlow endpoint are acceptable.
Anyone with the configured RAGFlow key may be able to access the associated private tax knowledge base according to that key's permissions.
The script uses a bearer API key to access RAGFlow. This is expected for a private knowledge-base integration, but it is a sensitive credential.
RAGFLOW_API_KEY = os.getenv("RAGFLOW_API_KEY") ... "Authorization": f"Bearer {RAGFLOW_API_KEY}"Use a least-privilege RAGFlow API key, store it securely, and verify the publisher declares the required credential and environment variables.
Tax questions, which may include business-sensitive details, will be shared with the configured RAGFlow service.
The full user question is sent to the configured RAGFlow chat-completions endpoint.
payload = {"model": "deepseek-chat", "messages": [{"role": "user", "content": query_text}], "stream": False} ... requests.post(url, headers=headers, json=payload, timeout=60)Confirm the RAGFlow API URL, retention policy, and access controls before sending confidential corporate tax information.
