Slacrawl

ReviewAudited by ClawScan on May 17, 2026.

Overview

Slacrawl appears purpose-built for searching Slack archives, but it installs an external CLI and may access private Slack messages, DMs, and Slack tokens when syncing.

Before installing, confirm you trust the slacrawl Go module and consider pinning/reviewing its source. Use the skill with narrow Slack workspaces, channels, date ranges, and search limits. Do not provide Slack tokens unless needed, and if you do, use minimal scopes and approve syncs intentionally.

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.

What this means

The behavior you get depends on the currently published Go module version, not just the reviewed SKILL.md instructions.

Why it was flagged

The install uses a mutable @latest Go module for the executable, while the reviewed artifact set contains no implementation code for that binary.

Skill content
module: github.com/openclaw/slacrawl/cmd/slacrawl@latest
Recommendation

Install only if you trust the slacrawl source, and prefer pinning or reviewing a specific module version before using it with private Slack data.

What this means

A Slack token could allow the tool to read Slack content according to that token’s scopes, potentially including private threads or DMs.

Why it was flagged

The skill may use Slack credentials for API sync and private thread/DM hydration, which is expected for this integration but grants access to account/workspace data.

Skill content
API sync and full thread/DM hydration require Slack tokens; do not assume they exist.
Recommendation

Use the narrowest Slack token scopes possible, only for intended workspaces, and avoid providing tokens unless API sync or hydration is actually needed.

What this means

Private Slack messages may be surfaced to the agent and included in responses if queries are too broad.

Why it was flagged

The skill is designed to retrieve Slack archive content, including channel and DM slices, into the agent’s working context.

Skill content
search local Slack archives, check freshness, inspect channel or DM slices
Recommendation

Ask for narrow searches, confirm the intended workspace/channel/date range, and avoid using it on Slack archives containing data the agent should not see.

What this means

Improper SQL use could reveal more archive data than intended, although the instructions tell the agent to keep SQL read-only.

Why it was flagged

The skill exposes a raw SQL query capability, but the documented use is limited to read-only counts and rankings over the Slack archive.

Skill content
slacrawl sql "select count(*) from messages;" ... Use read-only SQL for exact counts/rankings.
Recommendation

Use SQL only for narrow, read-only analysis and avoid broad queries that dump message contents unless explicitly needed.