install
source · Clone the upstream repo
git clone https://github.com/fastxyz/skill-optimizer
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/fastxyz/skill-optimizer "$T" && mkdir -p ~/.claude/skills && cp -r "$T/mock-repos/cli-taskfile-demo" ~/.claude/skills/fastxyz-skill-optimizer-cli-taskfile-demo && rm -rf "$T"
manifest:
mock-repos/cli-taskfile-demo/SKILL.mdsource content
taskfile CLI
A simple command-line task manager.
Usage
taskfile add --title "Buy groceries" taskfile list taskfile done --id abc123
Commands
add
Add a new task.
taskfile add --title "Task title"
list
List your current tasks.
taskfile list
done
Mark a task as done using its ID.
taskfile done --id <id>