AI C-Suite
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to be a local Python decision-support workflow with no credential or network behavior, but it handles local business context and writes decision files.
This looks safe to use as a local decision-support tool if you are comfortable running the included Python scripts. Run it from the skill directory, review generated logs before sharing, and make sure any real company config or logs are not accidentally committed or published.
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.
The agent can run local Python commands and create or overwrite local decision files; if run from the wrong directory, the scan step may traverse more files than intended.
The skill grants local shell/file tool use and instructs running local Python scripts that scan files and write an output file. This matches the script-backed purpose, but the user should keep execution scoped.
allowed-tools: Read, Write, Edit, Bash, Glob, Grep, Task ... python3 scripts/security_scan.py . ... --output logs/latest-decision.md
Run the workflow from the skill directory, keep outputs under logs/, and avoid using broader tool authority unless explicitly needed.
Company strategy, financial context, and constraints may remain in local config or log files after use.
The skill intentionally processes business context and persists the generated strategic decision to a local markdown file.
Load company context from: config/company.yaml ... ARR or MRR ... runway (months) ... team size ... constraints list ... --output logs/latest-decision.md
Use sanitized inputs when appropriate, protect generated logs, and delete or exclude sensitive local files when no longer needed.
A user who follows the publishing flow without checking ignored files could accidentally commit and push a real local company config.
The README separately suggests creating a local config with real values and later shows a broad Git add/push publishing flow. This is user-directed documentation, not automatic behavior, but it could propagate local business data if not reviewed.
cp config/company.yaml config/company.local.yaml ... Edit config/company.local.yaml with your real values. ... git add ai-csuite ... git push origin main
Before running Git publishing commands, confirm config/company.local.yaml and generated logs are excluded or intentionally safe to publish.
