AgentStack
SKILL verified Apache-2.0 Self-run

Tasks

skill-br3eze-code-br3eze-code-tasks · by br3eze-code

A Claude skill from br3eze-code/br3eze-code.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-br3eze-code-br3eze-code-tasks

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Tasks? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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

| Action | Description | |---|---| | create | Create a new task | | list | List tasks (filter by status/priority/project) | | update | Update task fields | | delete | Delete a task | | assign | Assign task to a user | | complete | Mark task as completed |

Providers

| Provider | Description | |---|---| | local (default) | Stored in AgentOS agent memory | | todoist | Todoist API | | asana | Asana API | | trello | Trello API | | notion | Notion 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

| Field | Type | Description | |---|---|---| | id | string | Auto-generated UUID | | title | string | Task title | | description | string | Optional detail | | priority | low\|medium\|high\|urgent | Priority level | | dueDate | ISO date string | Due date | | assignee | string | Assigned user | | tags | array | Label tags | | project | string | Project grouping | | status | open\|in_progress\|completed | Task status |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.