Dfw Content Calendar
Analysis
The skill appears to be a normal content-calendar generator, with some disclosed but under-declared API/dependency and data-flow considerations users should notice.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Required env vars: none ... Install specifications No install spec — this is an instruction-only skill. Code file presence 1 code file(s): generate_calendar.py
The registry-level metadata under-declares the runtime shape: it says no env vars and no install spec while the package includes a Python script and SKILL.md documents Python/package/API-key requirements. No hidden install or remote script execution is shown, but the install contract is incomplete.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
requires:
env:
- ANTHROPIC_API_KEY
...
primaryEnv: ANTHROPIC_API_KEYThe skill documents use of an Anthropic API key for non-demo LLM generation. This is purpose-aligned, but API keys are account credentials and can incur cost or expose submitted prompts to the provider.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
return openai.OpenAI(base_url="http://localhost:8800/v1", api_key="local"), "local" ... return anthropic.Anthropic(), "haiku"
The code can route generation to a local OpenAI-compatible service or Anthropic. This provider/backend flow is expected for an LLM content generator, but the data boundary changes depending on the selected backend.
`--past-results=results.json` — feed in engagement data from previous runs; skill adapts theme weights toward what worked
The skill can ingest prior engagement data to influence future calendar generation. This is disclosed and purpose-aligned, but it means previous performance context can affect new outputs.
