Cognary Tasks is an AI-first task manager that turns your spoken thoughts into organized, actionable tasks instantly. Just speak naturally, and Cognary uses AI to prioritize, structure, and manage your to-dos for you. Less effort, more focus — productivity built for the AI era.

PassAudited by ClawScan on May 1, 2026.

Overview

This task-manager skill is coherent and purpose-aligned, but users should notice that it installs a third-party CLI, uses an API key, and can change or delete tasks.

Before installing, verify the cognary-cli package source, configure the API key carefully, and make sure the agent confirms the exact task before updating or deleting anything.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the CLI adds executable code to the user’s environment; a compromised or impersonated package could affect the user account running it.

Why it was flagged

The skill tells the user to install a global npm CLI package without a pinned version. This is consistent with the skill’s purpose, but users must trust the package source and publisher.

Skill content
If `cognary-cli` is not installed, install it first:

```bash
npm install -g cognary-cli
```
Recommendation

Verify the npm package and publisher before installing, prefer a pinned version if available, and install with the least privileges necessary.

What this means

Anyone with the API key may be able to access or modify the user’s Cognary tasks according to the key’s permissions.

Why it was flagged

The skill requires an API key for the Cognary task service. That is expected for managing a user’s task account, but the key is sensitive credential material.

Skill content
The `COGNARY_API_KEY` env var must be set. If calls fail with an auth error... Then provide the key so it can be configured
Recommendation

Use a dedicated or least-privileged API key if possible, avoid sharing it in unrelated chats or files, and rotate it if it may have been exposed.

What this means

A mistaken command or ambiguous user request could update, complete, or delete the wrong task.

Why it was flagged

The documented CLI operations include actions that modify or delete task data. These actions are aligned with a task-manager skill, but they can affect user records.

Skill content
Use for listing, adding, updating, completing, uncompleting, and deleting tasks.
Recommendation

For updates and deletions, confirm the intended task ID and action before running the command, especially when multiple tasks have similar names.