Quick Ref / Command

Marketing Kit

/ak:kit-builder

Build Marketing Kit skills and workflows

Build AgentKit Marketing skills, agents, commands, and workflows using the kit's guides, templates, decision tree, and init script.

01

Name component

02

Use decision tree

03

Load guide

04

Initialize skeleton

Rule 01

Choose the smallest component type that matches the job

Rule 02

Use kit templates instead of ad-hoc structure

Rule 03

Components live in their documented locations

Rule 04

Keep marketing automation reusable and discoverable

Execution Map

Core lanes from input to output, aligned with the command's real execution path.

01

Start

Input, scope, route

  1. 1 Name component Identify whether the user needs a skill, agent, command, or workflow, plus the component name.
  2. 2 Use decision tree Map reusable knowledge to skills, autonomous handlers to agents, slash actions to commands, and orchestration to workflows.
02

Work

Agent / skill execution

  1. 3 Load guide Read the matching reference guide: skill-guide, agent-guide, command-guide, or workflow-guide.
  2. 4 Initialize skeleton Use python scripts/init_component.py <type> <name> for supported component types.
03

Verify

Gate, review, validation

  1. 5 Apply template Fill the matching template path with domain-specific marketing behavior and references.
  2. 6 Check best practices Review best-practices and marketing-checklist so the component fits the kit structure.
04

Close

Report, handoff, artifact

  1. 7 Integrate agents Use planner, researcher, or docs-manager when the component needs planning, research, or documentation ownership.

Output / publish flags

Only flags that change the artifact or publish it. Not the full option set.

--yagni

YAGNI component pass

Argument-hint flag for keeping a new kit component minimal and avoiding unnecessary structure.

Example

/ak:kit-builder skill referral-scanner --yagni

Sample Prompt

Concrete invocations for each flag, subcommand, mode, or route available in the live workflow.

Create a skill Recommended
/ak:kit-builder skill competitor-signal
Use when:
You need reusable marketing domain knowledge or tool guidance.
Expected:
Loads the skill guide, initializes .claude/skills/{name}/SKILL.md, and fills the skill template.
Create a workflow
/ak:kit-builder workflow weekly-growth-review --yagni
Use when:
A repeated multi-step marketing process needs orchestration without overbuilding.
Expected:
Uses the workflow guide and template, then checks best practices and the marketing checklist.
Create an agent
/ak:kit-builder agent launch-copywriter
Use when:
A marketing agent persona needs a reusable AgentKit agent file, not a one-off prompt.
Expected:
Loads the agent guide and initializes the agent template under the marketing kit layout.

Handled Scope

  • Skill scaffolding
  • Specialized marketing agents
  • User-invocable commands
  • Workflow orchestration
  • Kit structure onboarding

Artifacts Produced

AgentKit component

Pattern

.claude/skills/{name}/SKILL.md, .claude/agents/{name}.md, .claude/commands/{path}.md, or .claude/workflows/{name}.md

Generated component scaffold plus filled domain behavior and references

Next