Creative Ops Copilot

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do what it says: generate production-planning documents and, only when requested, create folders or push an invoice draft to a configured local invoicing API.

Before installing, be aware that this skill writes planning and invoice-draft files locally, can create a project folder skeleton, and can push an invoice draft to a configured invoicing API if you explicitly request it. Verify the output path and invoicing API configuration before using those optional features.

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

If used, the skill may create or update an invoice draft in the user's local invoicing system.

Why it was flagged

The skill can trigger a write-like API action, but it is clearly disclosed as optional and requires an explicit user instruction.

Skill content
POST the invoice draft to the local invoicing API (only if base URL is configured and Chris says “push it”).
Recommendation

Only use the invoice push option when you intend to create the draft, and confirm the configured API URL before using it.

What this means

A configured invoicing API key would grant the script whatever invoice-draft permissions that key has.

Why it was flagged

The script can use an optional API key from local configuration to authenticate to the invoicing API; this is expected for the stated invoicing integration and is not logged or sent elsewhere in the artifacts.

Skill content
api_key = (api.get("apiKey") or "").strip()
    if api_key:
        req.add_header("Authorization", f"Bearer {api_key}")
Recommendation

Use a narrowly scoped API key if the local invoicing system supports it, and avoid storing broader credentials in the config file.

What this means

Using the skeleton option will create folders and a README under the chosen output path.

Why it was flagged

The script can create a local project folder structure, which is disclosed and purpose-aligned but still modifies the local filesystem.

Skill content
parser.add_argument("--skeleton", action="store_true", help="Create a project folder skeleton")
Recommendation

Run the script from the intended project directory or pass a specific safe output path.