Activity Notifier

v1.0.0

Broadcast agent activity status to Discord channel (thinking, tool use, web search, coding, done, error). Use for transparency so users know agent is working.

0· 290·1 current·1 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name, description, and runtime instructions all describe sending activity updates to Discord. The single required config path (channels.discord.token) is appropriate for that purpose.
Instruction Scope
SKILL.md instructs the agent to use the message tool to send concise status updates to a Discord channel. This scope is narrow and consistent, but you should be aware that any content the agent includes in these messages (including context, progress, or errors) will be posted to Discord and could leak sensitive information if not controlled.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk or downloaded. Low install risk.
Credentials
The skill declares a required config path channels.discord.token (expected for Discord integration). SKILL.md also mentions an optional ACTIVITY_CHANNEL_ID environment variable but that env var is not listed in the registry requires.env — minor inconsistency. No unrelated credentials are requested.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or modify other skills. Normal privilege level for a notifier skill.
Scan Findings in Context
[no_regex_findings] expected: Scanner found no matches; this is expected because the skill is instruction-only with no code files for static analysis.
Assessment
This skill will post the agent's activity updates to a Discord channel using the channels.discord.token credential. Before installing: 1) Confirm channels.discord.token is a token you control and that it has limited permissions (prefer a bot token scoped to only send messages). 2) Use a dedicated, non-sensitive Discord channel to avoid leaking private data — agent messages can include context or error details. 3) Note the SKILL.md mentions an optional ACTIVITY_CHANNEL_ID env var that isn't declared in the registry; if you plan to override the channel, set and review that variable. 4) Test in a disposable channel first to ensure the messages and frequency meet your expectations and to avoid spam. 5) If you want stricter controls, restrict when the skill is invoked or require manual confirmation before sending updates.

Like a lobster shell, security has layers — review code before you run it.

latestvk975a920pcneznbaqq1zf43y6x823pc3

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📢 Clawdis
Configchannels.discord.token

SKILL.md

Activity Notifier

Broadcast real-time agent activity to Discord channel.

When to Use

USE this skill when:

  • Starting a long-running task (installing skills, downloading files, etc.)
  • Waiting for rate limits or external APIs
  • Running multiple sequential operations
  • User might think you're stuck or buggy

Activity Types

StatusEmojiWhen
🤔 Thinking🤔Starting to think/plan
🔧 Working🔧Using tools
🌐 Web🌐Searching/fetching from web
💻 Coding💻Writing/editing code
⏳ WaitingWaiting for rate limit/API
✅ DoneTask completed
❌ ErrorSomething went wrong

Usage Examples

// Send activity update
message({
  action: "send",
  channel: "discord",
  to: "channel:1477516155655688306",
  message: "⏳ **Activity Update**\n\nInstalling 6 skills... (waiting for rate limit)"
})

Guidelines

  • Be concise — short updates, not novels
  • Use emoji — visual scanning is faster
  • Include progress — "3/6 installed" is better than "installing..."
  • Don't spam — only for tasks >5 seconds
  • Final summary — always send completion message

Configuration

Optional: Set ACTIVITY_CHANNEL_ID in environment to override default channel.

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…