← Back to Skills Marketplace
Eternal Task Board
by
Eternal0404
· GitHub ↗
· v1.0.0
· MIT-0
102
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install eternal-task-board
Description
Simple CLI task/project board (kanban)
README (SKILL.md)
task-board
A lightweight kanban-style task board that runs entirely from the CLI.
Usage
# Add tasks
python3 scripts/tasks.py add "Fix login bug" --priority high
python3 scripts/tasks.py add "Update docs" --priority low
# Move tasks through stages
python3 scripts/tasks.py move 3 doing
python3 scripts/tasks.py move 3 done
# List tasks
python3 scripts/tasks.py list
python3 scripts/tasks.py list --status todo
# Show kanban board
python3 scripts/tasks.py board
# Remove a task
python3 scripts/tasks.py remove 3
Commands
add \x3Ctitle>— Add a new taskmove \x3Cid> \x3Cstatus>— Move task to a status (todo, doing, done)list— List tasks (filter with--status)board— Show kanban board viewremove \x3Cid>— Remove a task
Options
--priority— Task priority:low,medium,high--status— Filter by status--db— Custom database file path
Usage Guidance
The skill appears to be a small, local CLI tool that stores data in a JSON file (default .tasks.json in the current working directory or whatever you pass to --db). It contains no network calls or secret access. Before installing or running: (1) review the code (already small and readable), (2) run it in an isolated directory to avoid overwriting an existing .tasks.json, (3) avoid pointing --db to any sensitive system paths (don’t use home config files, system auth files, etc.), and (4) ensure Python3 is available. Note: the script will overwrite the specified JSON file, so back up any important data at that path. Autonomous invocation is allowed by default on the platform (not a fault of this skill); that simply means the agent could run the CLI if granted the skill — consider whether you want the agent to run local commands automatically.
Capability Analysis
Type: OpenClaw Skill
Name: eternal-task-board
Version: 1.0.0
The skill bundle implements a standard CLI-based kanban task manager. The Python script (scripts/tasks.py) uses only built-in libraries to manage tasks in a local JSON file, with no evidence of network activity, unauthorized file access, or malicious execution logic.
Capability Assessment
Purpose & Capability
Name/description match the included Python CLI. There are no unrelated environment variables, binaries, or external services requested.
Instruction Scope
SKILL.md simply instructs running Python on scripts/tasks.py with optional --db path. The script only reads/writes the specified JSON file and prints to stdout; it does not access other system paths, environment variables, or network endpoints.
Install Mechanism
No install spec is provided (instruction-only); no downloads or third-party install steps are required.
Credentials
The skill declares no required env vars or credentials and the code does not read secrets or external credentials.
Persistence & Privilege
always is false and the skill does not request persistent system-wide privileges. It only creates/updates the local DB file specified by --db (default .tasks.json).
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install eternal-task-board - After installation, invoke the skill by name or use
/eternal-task-board - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Built by Jarvis for @Eternal0404
Metadata
Frequently Asked Questions
What is Eternal Task Board?
Simple CLI task/project board (kanban). It is an AI Agent Skill for Claude Code / OpenClaw, with 102 downloads so far.
How do I install Eternal Task Board?
Run "/install eternal-task-board" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Eternal Task Board free?
Yes, Eternal Task Board is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Eternal Task Board support?
Eternal Task Board is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Eternal Task Board?
It is built and maintained by Eternal0404 (@eternal0404); the current version is v1.0.0.
More Skills