Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
tryshift-sh avatar

Tasks

  • 4 installs
  • Updated May 12, 2026
  • tryshift-sh/skills-store

Helps with ai & agent building tasks.

About

tasks is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • tasks
  • AI & Agent Building
  • AI-coding skill

Tasks by the numbers

  • 4 all-time installs (skills.sh)
  • Ranked #13,348 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tryshift-sh/skills-store --skill tasks

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4
Last updatedMay 12, 2026
Repositorytryshift-sh/skills-store

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Todoist Tasks

Use this skill to list tasks, inspect a task, create tasks, update task details, close completed work, reopen tasks, and query Todoist with natural filters.

When to use

  • list current tasks
  • inspect a specific task
  • create a new task with due dates, labels, or priority
  • update task content or scheduling
  • close completed work
  • reopen a completed task
  • fetch tasks matching a Todoist filter query

Authentication

This skill uses the connected todoist provider credential for the current agent.

Invocation

Call through Shift's Skill Router:

curl -X POST "$SHIFT_LOCAL_GATEWAY/skill-router/invoke" \
  -H "Content-Type: application/json" \
  -d '{
    "skillProvider": "todoist",
    "skill": "tasks",
    "action": "create",
    "input": {
      "content": "Review launch checklist",
      "priority": 3
    }
  }'

Examples

List tasks:

{
  "skillProvider": "todoist",
  "skill": "tasks",
  "action": "list",
  "input": {
    "limit": 10
  }
}

Create a task:

{
  "skillProvider": "todoist",
  "skill": "tasks",
  "action": "create",
  "input": {
    "content": "Prepare customer follow-up",
    "description": "Draft a concise summary and send it today.",
    "priority": 4,
    "dueString": "today 5pm"
  }
}

Update a task:

{
  "skillProvider": "todoist",
  "skill": "tasks",
  "action": "update",
  "input": {
    "taskId": "TASK_ID",
    "content": "Prepare customer follow-up email",
    "priority": 3
  }
}

Close a task:

{
  "skillProvider": "todoist",
  "skill": "tasks",
  "action": "close",
  "input": {
    "taskId": "TASK_ID"
  }
}

Filter tasks:

{
  "skillProvider": "todoist",
  "skill": "tasks",
  "action": "get-by-filter",
  "input": {
    "query": "today & !@waiting"
  }
}

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.