Vikunja Tasks
Manage tasks and projects on a self-hosted Vikunja instance. Use when the user wants to create, view, complete, or manage tasks, check what's due or overdue, list projects, or get …
nickian
@nickian
Install
$ openclaw skills install @nickian/vikunja-tasksVikunja Task Manager
Manage tasks and projects on a self-hosted Vikunja instance via REST API.
Setup
Set these environment variables:
export VIKUNJA_URL="https://your-vikunja-instance.com"
export VIKUNJA_TOKEN="your-api-token"
Get your API token: Vikunja → Settings → API Tokens → Create token.
Commands
List tasks
{baseDir}/scripts/vikunja.sh tasks --count 10
{baseDir}/scripts/vikunja.sh tasks --project "Shopping" --count 5
{baseDir}/scripts/vikunja.sh tasks --search "groceries"
{baseDir}/scripts/vikunja.sh tasks --sort priority --order desc
Overdue tasks
{baseDir}/scripts/vikunja.sh overdue
Tasks due soon (next N hours)
{baseDir}/scripts/vikunja.sh due --hours 24
{baseDir}/scripts/vikunja.sh due --hours 48
Create a task
{baseDir}/scripts/vikunja.sh create-task --project "Tasks" --title "Buy milk" --due "2026-02-01" --priority 3
Priority: 1 (low) to 5 (urgent). Due date format: YYYY-MM-DD.
Complete a task
{baseDir}/scripts/vikunja.sh complete --id 123
Get task details
{baseDir}/scripts/vikunja.sh task --id 123
List projects
{baseDir}/scripts/vikunja.sh projects
Create a project
{baseDir}/scripts/vikunja.sh create-project --title "New Project" --description "Optional description"
Get notifications
{baseDir}/scripts/vikunja.sh notifications
Due Date Monitoring
To get proactive notifications about due/overdue tasks, set up a cron job:
clawdbot cron add \
--name "Task due check" \
--cron "0 9,14 * * *" \
--tz "America/Denver" \
--session isolated \
--message "Check Vikunja for overdue and upcoming tasks (next 24 hours). If any are found, notify me with the list." \
--deliver \
--channel telegram
Notes
- Project names in
--projectare case-insensitive - Filter expressions follow Vikunja filter syntax (see https://vikunja.io/docs/filters)
- All times are handled in America/Denver timezone
Related skills
TickTick
@byungkyuTickTick API integration with managed OAuth. Manage tasks, projects, and task lists. Use this skill when users want to create, update, complete, or organize...
Things Mac
@steipeteManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database). Use when a user asks Clawdbot to add a task to Things, list inbox/today/upcoming, search tasks, or inspect projects/areas/tags.
Todoist CLI
@buddyhManage Todoist tasks, projects, labels, and sections via the `todoist` CLI. Use when a user asks to add/complete/list tasks, show today's tasks, search tasks, or manage projects.
Todoist
@mjrussellManage tasks and projects in Todoist. Use when user asks about tasks, to-dos, reminders, or productivity.
Prd
@bjesuiterCreate and manage Product Requirements Documents (PRDs). Use when: (1) Creating structured task lists with user stories, (2) Specifying features with acceptance criteria, (3) Planning feature implementation for AI agents or human developers.
Google Tasks
@byungkyuGoogle Tasks API integration with managed OAuth. Manage task lists and tasks with full CRUD operations. Use this skill when users want to read, create, update, or delete tasks and task lists in Google Tasks. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gatew