user-tasks

Create, list, update, complete, and delete user tasks in the Frontline to-dos inbox via CLI.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/api-evangelist/frontline --skill user-tasks-api-evangelist
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: user-tasks
Source: https://github.com/api-evangelist/frontline/tree/main/skills/vendor/user-tasks
Command: npx skills add https://github.com/api-evangelist/frontline --skill user-tasks-api-evangelist

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing the account-wide to-dos inbox from the terminal is difficult when tasks are scattered across assignees, due dates, and linked CRM records. This Skill lets you operate the Frontline user-tasks CLI directly to keep personal and team follow-ups organized without opening the app. ## Core Features & Use Cases - Full task lifecycle: Create, list, inspect, update, complete, reopen, and delete user tasks with filters for assignee, completion state, team, and linked object. - CRM record linking: Attach a task to a Company or Person record using an object slug and row ID, or unlink it later. - Assignee management: Assign tasks to account users by ID, with replace-style updates to the assignee list. - Use Case: Ask the assistant to create a task "Email David about the Q3 renewal" due 2026-06-25, assigned to user 42 and linked to a company record, then list all your pending tasks in a table. ## Quick Start Ask the assistant to list your pending user tasks or create a new to-do with a due date and assignee using the frontline user-tasks command.

Frequently Asked Questions about user-tasks

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a task linked to a CRM record from the CLI?▼

Use frontline user-tasks create with --content, plus --object and --row together to link the task to a record. For example, --object companies --row abc123 links the task to a company; both flags are required as a pair.

How do I list only my pending tasks in Frontline?▼

Run frontline user-tasks list --mine --pending to show your open tasks. Add --table for a flat summary view, or filter by linked object, people, or teams with --object, --people, and --teams.

What is the difference between user tasks and object tasks in Frontline?▼

User tasks live in the global to-dos inbox and are managed with frontline user-tasks, while object tasks live on a specific record's timeline via frontline object task. A user task can link to a record but remains in the inbox.

Why can't I complete a user task in Frontline?▼

Completing a task requires you to be one of its assignees, and the command errors if the task is already completed. Check the assignees with frontline user-tasks get and use frontline user-tasks uncomplete to reopen a completed task.

Does updating assignees add to the existing list?▼

No, the --assignees flag on frontline user-tasks update replaces the entire assignee list rather than appending. Pass the full comma-separated set of user IDs you want assigned.