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 VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: cognary-ai-tasks Version: 1.0.0 The skill bundle is classified as benign. All instructions in SKILL.md are directly related to managing tasks using the `cognary-cli` tool, including installation (`npm install -g cognary-cli`), authentication via `COGNARY_API_KEY`, and various task management commands. There is no evidence of data exfiltration, malicious execution beyond the stated purpose, persistence mechanisms, obfuscation, or prompt injection attempts designed to subvert the agent's core function or access unrelated sensitive data. The instructions for the agent are solely focused on task management and output formatting.
Findings (0)
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.
Installing the CLI adds executable code to the user’s environment; a compromised or impersonated package could affect the user account running it.
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.
If `cognary-cli` is not installed, install it first: ```bash npm install -g cognary-cli ```
Verify the npm package and publisher before installing, prefer a pinned version if available, and install with the least privileges necessary.
Anyone with the API key may be able to access or modify the user’s Cognary tasks according to the key’s permissions.
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.
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
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.
A mistaken command or ambiguous user request could update, complete, or delete the wrong task.
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.
Use for listing, adding, updating, completing, uncompleting, and deleting tasks.
For updates and deletions, confirm the intended task ID and action before running the command, especially when multiple tasks have similar names.
