Personal collection of Claude Code skills for workflow automation and integration.
| Skill | Description |
|---|---|
| adobe-analytics-concepts | Conceptual guidance for Adobe Analytics - core concepts (eVars, props, events), tracking design, analysis workflows, and governance |
| adobe-api-setup | Guide for configuring Adobe AEP and CJA API access with OAuth Server-to-Server authentication |
| cja-sdr-generator | Generate SDR documents from CJA, compare Data Views, and track configuration changes |
| customer-journey-analytics-concepts | Conceptual guidance for Adobe CJA - connections, data views, identity, cross-channel journey analysis |
- Claude Code must be installed and configured
mkdir -p ~/.claude/skillsOption A: Install a single skill
# Clone the repository (if you haven't already)
git clone https://github.com/brian-a-au/bau-claude-skills.git
cd bau-claude-skills
# Copy the desired skill to your Claude skills directory
cp -r skills/adobe-api-setup ~/.claude/skills/Option B: Install all skills at once
# Clone and install all skills
git clone https://github.com/brian-a-au/bau-claude-skills.git
cd bau-claude-skills
cp -r skills/* ~/.claude/skills/Check that your skills are installed correctly:
ls ~/.claude/skills/You should see the skill folders listed (e.g., adobe-analytics-concepts, adobe-api-setup, cja-sdr-generator, customer-journey-analytics-concepts).
Start a new Claude Code session. The skills will be automatically available. You can invoke them by describing the task or by referencing the skill name in your prompt.
To update to the latest version of the skills:
cd bau-claude-skills
git pull
cp -r skills/* ~/.claude/skills/MIT