Install
$ agentstack add skill-br3eze-code-br3eze-code-tasks ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
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.
- Author: br3eze-code
- Source: br3eze-code/br3eze-code
- License: Apache-2.0
- Homepage: https://br3eze.africa
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.