Edithai

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.

What this means

A broad query could cause the CLI to inspect more files or system information than intended.

Why it was flagged

The skill explicitly documents local file operations and terminal diagnostic command execution. These are coherent for log analysis, but they are sensitive capabilities that should be scoped by the user.

Skill content
- **File Operations**: Read, write, and search files
- **Terminal Commands**: Safe execution of diagnostic commands
Recommendation

Run it from a limited working directory, specify exact log paths, and configure command whitelists/blacklists before use.

What this means

The installed npm package will implement the actual file, command, and API behavior, so trust depends on that external package.

Why it was flagged

The runnable CLI is installed from an external npm package, while the submitted artifacts contain no code files to review. This is a normal instruction-only integration pattern, but users should verify the package source and publisher.

Skill content
Install EdithAI CLI: `npm install -g @xin9min9/edithai-cli`
Recommendation

Check the npm package, publisher, version, and repository before installing globally.

What this means

The CLI can use your DeepSeek account quota and may process data through that account.

Why it was flagged

The skill requires a DeepSeek API key. This credential is expected for the stated DeepSeek-powered analysis purpose, and the artifacts do not show hardcoding or leakage.

Skill content
requires:
      env:
        - DEEPSEEK_API_KEY
Recommendation

Use a dedicated API key with appropriate quota limits and rotate it if you no longer use the skill.

What this means

Selected log contents or summaries may be sent to DeepSeek for processing.

Why it was flagged

The skill discloses use of an external AI provider for log analysis. This is purpose-aligned, but logs may contain secrets, personal data, or business-sensitive information.

Skill content
It leverages the DeepSeek API to provide intelligent insights into log data
Recommendation

Review logs for sensitive data, use provider-approved data handling practices, and avoid sending secrets or regulated data unless permitted.

What this means

Sensitive analysis context may remain on disk after a session ends.

Why it was flagged

The tool stores conversation history locally. This is disclosed, but history may include sensitive queries, filenames, or log-derived context.

Skill content
History file: `~/.edithai/history.json`
Recommendation

Periodically review or delete ~/.edithai/history.json, especially after analyzing sensitive logs.