Install
openclaw skills install cognary-ai-tasksManage task lists via cognary-cli. Use for listing, adding, updating, completing, uncompleting, and deleting tasks. Triggers on any request about tasks, to-dos, task lists, reminders-as-tasks, or tracking action items.
openclaw skills install cognary-ai-tasksManage tasks via cognary-cli tasks. Always pass --json for parseable output.
If cognary-cli is not installed, install it first:
npm install -g cognary-cli
The COGNARY_API_KEY env var must be set. If calls fail with an auth error, tell the user:
cognary-cli tasks list [--status active|completed|all] [--category <cat>] [--priority High|Medium|Low] [--search <query>] [--sort createdAt|updatedAt|dueDate|priority|title] [--order asc|desc] [--limit <n>] [--page <n>] [--active-only] [--completed-limit <n>] --json
Default: all tasks, sorted by createdAt desc, limit 20.
cognary-cli tasks add "<title>" [--notes "<notes>"] [--category "<cat>"] [--priority High|Medium|Low] [--due-date "<date>"] --json
cognary-cli tasks get <id> --json
cognary-cli tasks update <id> [--title "<title>"] [--notes "<notes>"] [--category "<cat>"] [--priority High|Medium|Low] [--due-date "<date>"] --json
cognary-cli tasks complete <id> --json
cognary-cli tasks uncomplete <id> --json
cognary-cli tasks delete <id> --json