Comonyx Admin

PassAudited by ClawScan on May 10, 2026.

Overview

The skill is high-impact because it uses Cosmonyx admin credentials, fetches company records, writes exports, and can email them, but the reviewed artifacts disclose these behaviors and they fit the stated admin purpose.

Install only if you are authorized to administer Cosmonyx data. Before use, verify the Cosmonyx endpoint, understand that the skill can fetch all company records, protect the SMTP .env file, and confirm export paths and email recipients before sending sensitive company data.

Findings (5)

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 and using the skill means the agent can authenticate as a Cosmonyx admin and access company records during the session.

Why it was flagged

The skill requires direct Cosmonyx admin credentials and sends them to the Cosmonyx gateway sign-in endpoint. This is central to the stated admin function, but it is high-privilege account access.

Skill content
Ask once: "Please provide your Cosmonyx admin email." ... "Please provide your Cosmonyx admin password." ... POST https://gateway-dev.cosmonyx.co/auth/signin
Recommendation

Use only with an authorized admin account, verify the gateway-dev.cosmonyx.co endpoint is the intended environment, and avoid sharing credentials outside a trusted session.

What this means

A user action could result in broad company data retrieval or outbound reminder emails to selected companies.

Why it was flagged

The skill directs broad API access to retrieve all company records and includes workflows that can send reminder emails. These actions match the admin purpose but are operationally impactful.

Skill content
Fetch the full list of companies... Request all pages until there are no more... Send reminder emails to records where complianceStatus is Not Started
Recommendation

Confirm the selected filter, recipient set, and intended email action before allowing the agent to send messages or export all records.

What this means

Exported company records may be sent to an external recipient and through the configured SMTP provider.

Why it was flagged

The email workflow can transmit generated PDF or Excel exports through SMTP to a recipient address supplied during the task. This is disclosed and purpose-aligned, but it moves potentially sensitive company data outside the local environment.

Skill content
obtain the recipient address and set EMAIL_TO and ATTACHMENT_PATH in the command ... python3 send-email.py /tmp/companies_body.txt
Recommendation

Only email exports to approved recipients, verify the attachment path before sending, and use an approved SMTP account.

What this means

Company exports can remain on disk after the task and may be accessible to other local tools or users with filesystem access.

Why it was flagged

The skill persists exported company records to a normal user folder. This is expected for an export workflow, but the file may contain sensitive business or compliance data.

Skill content
Save the file into the current user’s Downloads folder ... $HOME/Downloads/comonyx-companies.pdf
Recommendation

Store exports in an appropriate secure location and delete them when they are no longer needed.

What this means

Users may need to create SMTP configuration manually and should understand where email credentials are stored.

Why it was flagged

The setup documentation references an .env.example file and SMTP environment variables, while the provided registry requirements list no required environment variables. This appears to be a setup/documentation gap rather than hidden behavior.

Skill content
Copy .env.example to .env in this skill root and set SMTP_USERNAME, SMTP_PASSWORD...
Recommendation

Review the SMTP configuration before use, protect the .env file, and avoid storing unnecessary long-lived secrets.