Discord Task Tracker

v1.0.1

Track tasks in Discord using natural language. Add, list, complete, and delete tasks via chat commands. Triggers: add task, track task, todo, my tasks, task...

0· 43·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for fuzzyb33s/discord-task-tracker.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Discord Task Tracker" (fuzzyb33s/discord-task-tracker) from ClawHub.
Skill page: https://clawhub.ai/fuzzyb33s/discord-task-tracker
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install discord-task-tracker

ClawHub CLI

Package manager switcher

npx clawhub@latest install discord-task-tracker
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill is described as a "Discord" task tracker, but the included code is a simple CLI script (scripts/task_manager.py) that reads/writes tasks.json and prints responses to stdout. There are no Discord API calls or credential requirements. Also, the SKILL metadata lists no required binaries, but the references show running the script with python — the skill should declare Python as a required binary.
Instruction Scope
SKILL.md and references/commands.md limit actions to reading/writing tasks.json in the skill directory and printing responses. They do not direct the agent to read other files, env vars, or external endpoints. However, SKILL.md claims "All task operations reply directly in the Discord channel" while the script only outputs to stdout — integrating with Discord would require a separate wrapper/bot that calls this script.
Install Mechanism
No install spec (instruction-only plus included script). Nothing is downloaded or written to disk by an installer. The only included code is the local Python script and a tasks.json file.
Credentials
No environment variables, credentials, or config paths are requested. The skill's behavior (local file-based task storage) does not require secrets or external service access.
Persistence & Privilege
always is false and the skill does not request persistent platform privileges. It does create/modify tasks.json in its own directory (expected for its function) and does not modify other skills or system-wide settings.
Assessment
This skill is a simple local CLI task manager that stores tasks in tasks.json and prints output; it does not itself connect to Discord or use credentials. Before installing: (1) confirm your environment provides Python (the repo assumes running 'python scripts/task_manager.py'); the metadata should declare python as a required binary but does not. (2) Understand that to actually reply in Discord you need a separate bot/integration that calls this script and posts the output; the skill does not implement networking. (3) tasks.json is stored in the skill directory — ensure its file permissions are acceptable for your environment (it may contain user task text and is readable by any process/user with access to the directory). (4) Review scripts/task_manager.py yourself; its behavior is straightforward (read/modify JSON) but IDs may shift after deletions and completed tasks are removed. If you need true Discord integration, prefer a skill that explicitly implements the Discord API and documents required tokens and permissions.

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

latestvk97faxz1jwkd48an1pwpa81ys585jd8t
43downloads
0stars
2versions
Updated 2d ago
v1.0.1
MIT-0

Discord Task Tracker

Track your tasks directly from Discord with natural language commands.

Commands

CommandDescription
add task <description>Add a new task
list tasks / my tasks / task listShow all tasks
complete task <task number>Mark a task as done
delete task <task number>Remove a task

Examples

add task Finish the Discord bot integration
list tasks
complete task 1
delete task 2

How It Works

  • Tasks are stored in tasks.json in the skill directory
  • Task numbers are assigned sequentially; use list tasks to see current numbers
  • Completed tasks are removed from the list
  • All task operations reply directly in the Discord channel

Comments

Loading comments...