Utm campaign governor
Skill sisodiabhumca/agent-skills/skills/utm-campaign-governor
Enforces vendor-neutral UTM naming conventions by validating marketing links and generating a normalized, policy-compliant output.From its SKILL.md
npx -y skills add sisodiabhumca/agent-skills --skill utm-campaign-governorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.2 KB, 258 tokens by cl100k_base, as published. Nobody here has run it
When to invoke
- You manage marketing campaigns and need consistent UTM tags across teams.
- You want to validate a batch of URLs against a naming policy and produce corrected URLs.
Inputs needed
--input: CSV with aurlcolumn.- Optional:
--policy: JSON policy file (allowed sources/mediums, required params, casing rules). - Optional:
--out: Path to write results CSV.
Workflow
- Load URLs.
- Parse query parameters.
- Validate required UTM params (
utm_source,utm_medium,utm_campaign). - Validate allowed values (if provided) and casing rules.
- Produce:
status: ok / fixed / invalidissues: semicolon-separatednormalized_url: URL with normalized UTMs (when possible)
Output format
CSV with columns:
urlstatusissuesnormalized_url
Guardrails
- Never change the base URL path or non-UTM query params.
- Do not guess missing required params; mark as invalid.
- Keep the skill vendor-neutral (no platform-specific assumptions).
Reference code
Use utm_campaign_governor.py.
What ships with it: 2 files
4.0 KB alongside SKILL.md, 1 of them executable
- README.md314 B
- utm_campaign_governor.pyruns3.7 KB