agentsclimarketplace

Tasks

Skill br3eze-code/br3eze-code/skills/tasks

Personal Ai Agent

Install
npx -y skills add br3eze-code/br3eze-code --skill tasks

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.9 KB, as published. Nobody here has run it

Skill: tasks

Version: 2026.7.0
Dispatcher: manage_project
Domain: productivity

Description

Task management with pluggable provider adapters (local agent memory, Todoist, Asana, Trello, Notion). Also exposes the 9 CPM+EVM project actions via the manage_project dispatcher shared with the project skill.

When to Use

Invoke when the user asks about:

  • Creating, listing, updating, deleting, or completing tasks
  • Assigning a task to a team member
  • Filtering tasks by status, priority, or project
  • Managing tasks across external providers (Todoist, Asana, etc.)

Tools

ActionDescription
createCreate a new task
listList tasks (filter by status/priority/project)
updateUpdate task fields
deleteDelete a task
assignAssign task to a user
completeMark task as completed

Providers

ProviderDescription
local (default)Stored in AgentOS agent memory
todoistTodoist API
asanaAsana API
trelloTrello API
notionNotion API

Example: Create Task

{
  "action": "create",
  "provider": "local",
  "task": {
    "title": "Check router firmware version",
    "priority": "high",
    "project": "maintenance",
    "dueDate": "2026-05-10"
  }
}

Example: List Open Tasks

{
  "action": "list",
  "filters": { "status": "open", "priority": "urgent" }
}

Task Fields

FieldTypeDescription
idstringAuto-generated UUID
titlestringTask title
descriptionstringOptional detail
prioritylow|medium|high|urgentPriority level
dueDateISO date stringDue date
assigneestringAssigned user
tagsarrayLabel tags
projectstringProject grouping
statusopen|in_progress|completedTask status

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.