Agent skill
vikunja
Manage projects and tasks in Vikunja, an open-source project management tool. Create projects, tasks, set due dates, priorities, and track completion.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/vikunja
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83d\udccb", "requires": { "env": [ "VIKUNJA_URL", "VIKUNJA_USER", "VIKUNJA_PASSWORD" ], "bins": [ "uv" ] }, "primaryEnv": "VIKUNJA_URL" }
SKILL.md
Vikunja Project Management
Manage projects and tasks in Vikunja, an open-source, self-hosted project management tool.
Setup
Set these environment variables:
VIKUNJA_URL- Your Vikunja instance URL (e.g.,https://vikunja.example.com)VIKUNJA_USER- Username or emailVIKUNJA_PASSWORD- Password
Commands
Projects
# List all projects
uv run {baseDir}/scripts/vikunja.py projects
# Get project details
uv run {baseDir}/scripts/vikunja.py project <ID>
# Create a project
uv run {baseDir}/scripts/vikunja.py create-project "Project Name" -d "Description"
Tasks
# List all tasks
uv run {baseDir}/scripts/vikunja.py tasks
# List tasks in a specific project
uv run {baseDir}/scripts/vikunja.py tasks --project <PROJECT_ID>
# Create a task
uv run {baseDir}/scripts/vikunja.py create-task "Task title" --project <ID> --due 2026-01-15 --priority 3
# Mark task complete
uv run {baseDir}/scripts/vikunja.py complete <TASK_ID>
Options
--json- Output results as JSON (for programmatic use)
Priority Levels
- 0: None
- 1: Low
- 2: Medium
- 3: High
- 4: Urgent
- 5: Critical
Examples
# Create a project for Q1 planning
uv run {baseDir}/scripts/vikunja.py create-project "Q1 2026 Planning" -d "Quarterly planning tasks"
# Add a high-priority task
uv run {baseDir}/scripts/vikunja.py create-task "Review budget" --project 5 --due 2026-01-20 --priority 3
# Check what's due
uv run {baseDir}/scripts/vikunja.py tasks --project 5 --json
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?