Waboom AI
AI Training

AI Training

AI Team TrainingPopular

Hands-on workshops for marketing, sales, operations, and customer service teams.

AI Strategy Workshop

Executive workshops for leadership teams. Identify opportunities. Calculate ROI. Walk out with a roadmap.

Claude Code Workshop

Build apps in hours not months. Ship websites, automations, and tools with AI.

AI Training for Teams

AI Training for Teams

Hands-on workshops for marketing, sales, operations, and customer service teams. Not theory. Real tools. Real tasks. Real outcomes.

2,000+ people trained across NZ

Learn more
AI Automation

AI Automation

AI Agents & AutomationPopular

Your AI workforce: outbound, proposals, knowledge and support agents. Find buyers, write SOWs, answer every call.

AI Retainer Support

Already built with us? Stay on retainer and we keep shipping new agents and features for your business.

Microsoft Copilot Agents

Build custom Copilot agents in Power Automate & Copilot Studio. Automate workflows across your entire Microsoft 365 ecosystem.

Waboom Concierge

Personalised inbound for premium brands. An AI concierge greets every visitor, builds an on-the-spot quote, and books a real conversation.

AI Automation & Integration

AI Automation & Integration

We build faster and more cost effectively than traditional development teams. You tell us the problem. We deliver the solution.

30+ projects live in 24 months

Learn more
AI Voice Agents

AI Voice Agents

AI Voice Agents

24/7 AI-powered phone agents for inbound & outbound calls. Never miss a lead, handle enquiries, book appointments automatically.

AI Receptionist

Pay-as-you-go inbound receptionist. Answers, transfers calls, takes messages inside your VoIP. $1/min with auto top-up.

Voice Agent Pricing

Transparent pricing for AI voice agents. See costs per minute and platform fees.

AI Voice Agent Demo

Talk to Michelle on three voice AI engines side by side. Hear the latency, find the model that fits.

Listen to Our Voices

Preview all 32 AI voice agents across NZ, AU, UK and US. Find the perfect voice for your brand.

Case Studies

Real customer results. Vendor leads, viewings booked, relationships scaled. Every story has the math.

AI Voice Agents

AI Voice Agents

Never miss a lead. AI agents that answer calls 24/7, qualify prospects, and book appointments automatically.

30+ voice agents deployed

Learn more
Case Studies

Case Studies

Melbourne: 5 listings from one 14-year dormant contactPopular

$2.9M of CBD apartments relisted by the same agent who sold them in 2012. AI dialled the dormant number.

Home builder: AU$374.4M in lost sales uncovered

5,200 cold calls into a 70,000-prospect CRM. 234 confirmed lost deals at AU$1.6M each. A very leaky bucket.

Sydney agent: 141 vendor leads in 90 days

9,856 dials, 1,997 conversations, 141 warm-transferred sellers at $32.74 each.

Christchurch developer: 49 viewings in 14 days

931 Meta leads called same-day. 49 viewings booked at $7.12 each.

City Sales Auckland: 100,000+ relationships

How a leading Auckland firm strengthened over 100,000 client relationships with AI.

See all case studies

Browse every Waboom customer case study in one place.

Real numbers from real Waboom customers

Real numbers from real Waboom customers

Vendor leads. Viewings booked. Relationships scaled. Every story has the math.

5,000+ AI-handled conversations

Learn more
Resources

Resources

AI Resources & Guides

Free templates, frameworks, and implementation guides to help you adopt AI effectively in your organisation.

Blog

Expert insights on AI voice agents, automation strategies, and industry best practices from the Waboom team.

Workshop Tutorial Videos

Paid-attendee video library. Cowork 101 and Claude Code 101, on demand with clickable chapter navigation.

AI Resources Hub

AI Resources Hub

Free tools and guides to help you implement AI effectively. From policy templates to ROI calculators.

New resources added monthly

Learn more
Contact

Contact

Contact Us

Get in touch with our team. We'd love to hear about your AI goals.

About Waboom AI

Learn about our mission, team, and why we're passionate about AI adoption in NZ.

Let's Talk AI

Let's Talk AI

Whether you need training, automation, or strategy - we're here to help you adopt AI effectively.

Response within 24 hours

Learn more
09 885 9695 (NZ)+61 485 027 479 (AU)
←
Module 6 of 6
Share Your Skill
10 min • 0 Lessons

Share Your Skill

Just for you, your team, or the world. Three paths, none of them complicated.

Three Ways to Share. Pick the One That Fits.

You have a working skill. It does its job. The voice is yours.

Now what?

There are three answers, depending on who needs it.

  • Just you
  • Your team
  • Or the wider Claude community

We will go through each one, in plain English, with the exact steps.

Option 1: For Just You. You Are Already Done

If the skill is only for you, you have already finished.

The skill folder lives on your computer (if you built it in Claude Code) or on your account (if you uploaded it through web Settings).

It will follow you everywhere.

The only thing worth doing: back it up.

Take the SKILL.md file and drop it somewhere that survives your laptop dying. Three good options:

  • A Notion page or doc, pinned in a "My Skills" section.
  • A private GitHub repo called my-claude-skills.
  • An iCloud / OneDrive folder you already back up.

That is the whole "for just you" workflow. Move on.

Option 2: For Your Team (Two Paths)

If your team uses Claude, your skill is more useful in their hands than in yours alone.

There are two ways to share, depending on which Claude surface your teammates use.

If Your Team Uses Claude Web or Desktop

Step 1: Zip the skill folder.

💻In Claude Code's terminal, run
cd ~/.claude/skills && zip -r meeting-notes-summary.zip meeting-notes-summary/

You now have a .zip file with the whole skill in it.

It is a few kilobytes. Email-able. Slack-able.

Step 2: Send the zip to your teammates.

Slack, email, a shared drive, whatever your team uses.

The file is small enough to attach anywhere.

Step 3: They upload it to Claude.

Each teammate opens claude.ai, goes to Settings → Capabilities → Skills (the exact label depends on plan), clicks Upload Skill, and picks the zip.

That is it. The skill is now in their account.

💡

The "everyone on the team" version. If you are on Claude Enterprise, an admin can deploy a skill workspace-wide. Every account gets it automatically, and updates push to everyone at once. Ask your admin. The DIY zip-and-send works on any plan.

If Your Team Uses Claude Code

Drop the folder into their ~/.claude/skills/ directory.

They restart Claude Code. Done.

The cleanest way is a shared git repo:

💻First time setup (one teammate does this once)
cd ~/.claude/skills
git init
git remote add origin git@github.com:yourcompany/team-skills.git
git add meeting-notes-summary
git commit -m "Add meeting-notes-summary skill"
git push -u origin main
💻Every other teammate runs this once
cd ~/.claude
git clone git@github.com:yourcompany/team-skills.git skills

After that, anyone who improves a skill pushes the change.

Anyone who needs the latest version pulls.

Skills become a normal part of your team's git workflow.

💡

Why git is better than a shared drive for skills. You get version history, you can see who changed what, and you can revert if a change makes things worse. Skills are just text. They live in git beautifully.

Option 3: For the World. Publish on GitHub

If you built a skill that solves a generic problem (not "for my company") you can publish it.

Other people install it. Some of them improve it and submit fixes back.

This is roughly the same as publishing any open-source project.

Step 1: Make a public GitHub repo.

Name it something descriptive: meeting-notes-summary-skill or claude-skill-meeting-notes.

Public visibility.

Step 2: Put your skill folder in the repo.

Drop the meeting-notes-summary/ folder at the root of the repo.

Don't put a README.md inside the skill folder (that confuses Claude).

Put the README.md at the repo root, outside the skill folder.

Step 3: Write the README for humans, not Claude.

The README is the page someone sees when they land on your repo. It should explain:

  • What the skill does, in one sentence.
  • Who it is for.
  • How to install it (one paragraph: drop the folder into ~/.claude/skills/ or upload via Settings).
  • A quick before/after example so people know what they are getting.
  • A screenshot or two of it in action.
💡

Submit to Anthropic's directory. If your skill is solid, you can submit it to github.com/anthropics/skills as a pull request. They review and merge community skills. Inclusion gives you discoverability.

What We Are Deliberately Not Covering

Some skills are built into bigger applications using the Skills API and Anthropic's Agent SDK.

That is real, that is useful, and it is genuinely a different course.

If you are a developer building an app that uses skills programmatically, the Anthropic Skills API docs are where you go next.

Everything else in this course (the descriptions, the trigger fixes, the iteration loop) still applies, the only thing that changes is how the skill gets loaded.

For the rest of you: you have shipped a real skill.

You can use them, build them, debug them, and share them. That is the whole beginner course.

What You Have Done in About an Hour

Take stock.

You started this course not sure what a Claude Skill was. You finish it having:

  1. Understood why skills exist and when to use them (Module 1).
  2. Learned how skills work across Claude Web, Desktop, and Code (Module 2).
  3. Used a skill someone else built and felt the difference (Module 3).
  4. Built your own first skill with skill-creator (Module 4).
  5. Fixed a skill that did not trigger correctly (Module 5).
  6. Shared a skill with your team or the world (Module 6).

That is the operator-level grasp.

You can now turn any repeated workflow into a permanent capability for Claude, and for anyone you share it with.

✨ What you just did. You moved from "I prompt Claude every time" to "I teach Claude once". That is the operator move. Most people never make it. You did.

Where to Go Next

You have shipped one skill. Here is what gets powerful next.

Chain Skills Together

The real magic shows up when one skill triggers another.

Picture writing a blog post. Today you might do it in three separate Claude conversations:

  1. Research what is hot in your industry this week
  2. Draft a post in your voice
  3. Run an SEO check and fix the gaps

With three skills (research, my-voice-draft, seo-check), you can chain them in a single ask:

💻Type something like
Research what is hot in the [your industry] space this week,
then draft a 1200-word post in my voice on the most interesting
angle, then run the SEO check and tell me what to fix.

Claude loads all three skills, runs them in sequence, and hands you a finished draft.

We use this exact chain at Waboom AI. One ask, three skills, one finished post.

Build Skills That Use Connectors

Skills get even more useful when they pair with Connectors (the access layer that lets Claude read your Notion, send emails, update your CRM, etc).

A skill on its own can only work on what you paste into the chat. A skill plus a connector can:

  • Read your Linear backlog and draft this sprint's tasks
  • Read your inbox and draft replies in your voice
  • Read your HubSpot deal pipeline and write the weekly forecast

When you build your next skill, ask yourself: what would this be able to do if it could reach out to one of my tools? If the answer is "a lot more", that is your second skill.

We cover the full distinction in Claude Skills vs MCP on the blog.

Use Skills Other People Have Built

You do not have to build every skill from scratch. There are three places to find skills built by other people.

  • The Anthropic skills repo at github.com/anthropics/skills. Official, maintained, safe. Start here.
  • The Skills section inside Claude Desktop. Click the + button next to Skills and then Browse skills. Anthropic ships a directory of community plugins you can install in one click.
  • Operator newsletters. Karol Zieminski's Substack ships specific, tested skills (alt-text generator, LinkedIn teasers, expense trackers) with the full SKILL.md inline. Read, copy, adapt.
  • GitHub at large. Search "claude skill" on GitHub and you will find dozens of community skills. Real estate skills, finance skills, design skills, dev tooling.

When you install a skill from any of these sources, open the SKILL.md file and read it first. Always.

A skill is just instructions Claude follows. If you install one without reading it, you are letting a stranger tell your Claude what to do. Most of them are fine. Some are not.

A 30-second read is the difference between a useful capability and an unexpected behaviour. Treat it like installing a browser extension or a script someone shared on Reddit.

💡

Trust check. Before installing a skill from someone you do not know: (1) read the SKILL.md end to end. (2) Check if there are scripts in a scripts/ folder, those run when triggered. (3) Look at the author's other work. (4) Prefer skills from the official Anthropic repo or from a person you can verify.

✨ The change-log habit. Karol Zieminski's rule for any autonomous work: always ask for a what-changed.md summary after the task. "Always ask for a change log." It is a 10-second audit that catches every silent decision a skill made. Build the habit early, especially with skills you did not write yourself.

🎓Go further: The 5 advanced patterns Anthropic has seen workclick to expand

Once you have built two or three skills, you will start spotting these shapes. Anthropic published them as "patterns we have seen work well" and they are a strong head start for skill number four.

1. Sequential workflow orchestration. Your skill walks Claude through a fixed, ordered set of steps. Step 1 must finish before Step 2 starts. Each step has a check. Good for: customer onboarding flows, sprint setup, invoicing.

2. Multi-MCP coordination. Your skill orchestrates calls across two or more Connectors. Example: pull from Figma, store in Drive, create tickets in Linear, post a summary to Slack. Each phase hands data to the next. Good for: design-to-dev handoff, weekly reports that aggregate from multiple sources.

3. Iterative refinement. The skill knows the output gets better when it loops. Draft → validate → fix → re-validate → polish. The skill defines the quality threshold and knows when to stop iterating. Good for: report generation, complex copy, anything where "draft one" never matches "draft three".

4. Context-aware tool selection. The skill has a decision tree. Same outcome (e.g., store this file), different tool depending on context (cloud storage for large files, Notion for collaborative docs, GitHub for code, local for temporary). Good for: routing decisions, fallback logic.

5. Domain-specific intelligence. The skill embeds expert knowledge a generic LLM would miss. Financial compliance rules. Medical screening rules. Legal contract red flags. The skill enforces the domain rules before any action, including a paper trail. Good for: anything where mistakes have a regulator attached.

You do not need to pick a pattern up-front. Build the skill, and the pattern will reveal itself in the shape your steps take.

What's Next After This Course

A few good directions:

  • Build more skills. The first one is the hardest. Once you have one, you will start spotting candidates everywhere. "I do this every Monday" is a skill. "I have to remind Claude how to format this" is a skill.
  • Share your skill with us. Email it to leo@waboom.ai or tag us on LinkedIn. We love seeing what people build.
  • Go deeper on Claude Code. If Module 4 Path C was your first time in the terminal, our Claude Code 101 course covers the rest of what Claude Code can do.
  • Come to a workshop. We run live Claude Code workshops every month. Hands-on Claude Code + Skills training. Bring a real problem, leave with a working skill.

Thanks for doing the course.

←PreviousWhy Skills Don't TriggerCourse Complete!Back to Resources →
Waboom AI

Empowering New Zealand and Australian businesses with AI voice agents and automation that deliver real, measurable value.

info@waboom.ai+64 9 885 9695 (NZ)+61 485 027 479 (AU)
Level 8, 139 Quay Street
Auckland CBD, New Zealand

Voice Agents

  • AI Voice Agents
  • AI Receptionist NZ
  • AI Receptionist Australia
  • AI Phone Answering
  • AI Virtual Receptionist
  • AI Receptionist Pay As You Go
  • Waboom Concierge
  • Medical Answering Service
  • Answering Service Australia
  • AI Sales Agent
  • Voice Agent Pricing
  • Listen to Voices
  • Real Estate Guide

By Industry

  • Real Estate
  • Mortgage Brokers
  • Insurance Brokers
  • Property Managers
  • Medical Clinics
  • Dentists
  • Vets
  • Childcare + ECE
  • Car Dealerships
  • Construction + Builders
  • Electricians
  • Plumbers
  • HVAC
  • Accountants
  • Law Firms
  • All industries and regions

Workshops

  • All Workshops
  • AI Team Training
  • AI Strategy Workshop
  • AI Champion Workshop
  • Claude Team Training
  • Claude Code Workshop
  • Lovable Workshop
  • Free AI Workshop

Automation

  • AI Automation
  • Microsoft Copilot Agents
  • Integrations

Company

  • About Us
  • Contact
  • Partners
  • Pipedrive Partner
  • Resources
  • Blog
  • AI Agency NZ
  • AI Agency Australia

Powered by leading AI technologies

VAPIOpenAIZapierMakeStripe

© 2026 Waboom.ai. All rights reserved.

PrivacyTermsSecurity