feat(marketing-skill): add ai-decision-authority - #998
Open
kubersharmax wants to merge 1 commit into
Open
Conversation
Adds a skill for classifying which AI outputs require human approval, using a three-zone model sorted by reversibility, exposure and frequency. No existing skill in marketing-skill/ covers AI governance or decision authority.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a skill for classifying which AI outputs require human approval, using a three-zone model sorted by reversibility, exposure and frequency.
Summary
marketing-skill/skills/ai-decision-authority/SKILL.mdMarketing teams adopting AI tend to land in one of two failure modes: review every output, which collapses adoption because the tool becomes slower than doing the work by hand, or review nothing, which accumulates compliance exceptions quietly. Both come from applying one governance rule to every decision.
This skill sorts decisions into three zones by stakes rather than seniority, and gives the agent a rule per zone plus the cost of misclassifying in either direction. It handles a single decision or a batch audit of many workflows.
I checked the 48 existing skills in
marketing-skill/skills/before building this. Nothing currently covers AI governance, human-in-the-loop policy, or decision authority, so there is no overlap.One useful distinction it encodes: most workflows span zones, so govern the boundary rather than the whole workflow at its highest zone. "Drafts the newsletter and schedules it" is Zone 1 drafting plus Zone 2 sending, and gating only the send is where most of the available adoption is won.
Checklist
dev(notmain— PRs to main will be auto-closed)SKILL.mdwith valid YAML frontmatter (name,description)--helpwithout errors — no scripts in this skilldomain/skill-name/SKILL.md)Note on frontmatter: this template's checklist mentions a
licensefield, but CONVENTIONS.md section 2 states onlynameanddescriptionare allowed and that PRs with extra frontmatter fields will be rejected. I followed CONVENTIONS.md. Happy to addlicenseif the template is the current rule.Also followed: under 500 lines (114), opinionated rather than a list of options, Anti-Patterns section included, and Cross-References to
marketing-ops,marketing-strategy-pmm,launch-strategy,brand-guidelinesandcontent-production. Noplugin.json, since CONVENTIONS notes skills roll up into the domain plugin automatically. No files touched outside the new directory, so the skill count and auto-generated manifests are unaffected.Type of Change
Testing
No automated tests: this skill is instructions only, with no scripts, so there is nothing to run
--helpagainst.Verification was manual. I walked a mixed set of marketing decisions through the three questions to check the zone boundaries produce sensible results: content variants and internal competitive summaries fall in Zone 1; campaign briefs, partner communications and a newsletter send fall in Zone 2; pricing announcements and regulatory claims fall in Zone 3. I also checked the split case, where drafting and sending inside one workflow separate across two zones rather than collapsing to the higher one.
The three questions are order-dependent by design. Asking about frequency before reversibility gives wrong answers on low-volume reversible work, so the skill instructs the agent to ask reversibility first.
The underlying model comes from applied use in an enterprise product marketing function rather than from a benchmark, and the SKILL.md says so.
Provenance
Based on the Augmented Marketing Decision Architecture, from an observational deployment across 16 product launches in one product marketing function. The SKILL.md states the scope and limits of that evidence rather than presenting the numbers as universal benchmarks.