DEV Community

Cover image for Your Team's Agent Skills Are a Mess. Here's How to Fix It.
IT Lackey
IT Lackey

Posted on • Originally published at itlackey.dev

Your Team's Agent Skills Are a Mess. Here's How to Fix It.

This is part seven in a series about managing the growing pile of skills, scripts, and context that AI coding agents depend on. Part one introduced progressive disclosure. Part two unified your local assets across platforms. Part three added remote context via OpenViking. Part four connected community knowledge through Context Hub.

Everything up to now has been about you. Your skills. Your stash. Your agent. That's fine when you're working solo, but most of us aren't.

You've got a deploy skill. Your teammate has one too. They do slightly different things — yours includes the canary step, theirs adds a Slack notification you didn't know about. A third person on the team wrote theirs for Codex and it skips the canary entirely.

Now the deploy process changes. Say the team adds a new staging environment. You update your skill. You mention it in standup. Your teammate says they'll update theirs later. The third person was out that day and doesn't hear about it. Two weeks later, someone deploys to the wrong environment because their skill still has the old configuration.

This isn't hypothetical. If your team uses AI coding assistants, this is happening right now. Every developer building up their own skill collection, no shared source of truth, no way to know when someone else has a better version of the same thing.

Every agent skills article on the internet is written for individual developers. But teams are where skills become both most valuable and most chaotic. Here's how to fix it.

The Simplest Thing: A Shared Directory

Your team already has a shared drive or mounted directory? Use it.

# Team lead creates the shared source
mkdir -p /mnt/shared/team-skills/skills/deploy
cat > /mnt/shared/team-skills/skills/deploy/SKILL.md << 'EOF'
# Deploy to Production

Standard deployment workflow for all services.

## Steps
1. Run test suite: `bun test`
2. Build: `bun run build`
3. Deploy to staging: `./scripts/deploy.sh staging`
4. Run smoke tests: `./scripts/smoke.sh staging`
5. Deploy to production: `./scripts/deploy.sh production`
6. Notify #deploys channel in Slack

## Rollback
If smoke tests fail: `./scripts/rollback.sh staging`
EOF
Enter fullscreen mode Exit fullscreen mode

Each developer adds it as a source:

akm add /mnt/shared/team-skills
akm search "deploy"
Enter fullscreen mode Exit fullscreen mode

That's it. The shared skill shows up in everyone's search results alongside their personal skills. When the team lead updates the deploy skill, everyone sees the update on the next index refresh. No copying. No syncing. No "hey, I updated the deploy skill" messages in Slack.

This works best for co-located teams or teams that already share infrastructure. Zero overhead to set up.

Git for Distributed Teams

If your team is distributed, a Git repo is the natural choice. You already use Git for everything else — why not for skills?

# Team lead creates the repo
# github.com/your-org/team-agent-skills
# Standard kit structure: skills/, commands/, knowledge/

# Each developer adds it
akm add github:your-org/team-agent-skills

# Pull latest when needed
akm update --all
Enter fullscreen mode Exit fullscreen mode

This buys you everything Git already provides:

  • Version history. See when the deploy skill changed and why.
  • Pull request review. New skills and updates go through the same review process as code.
  • Branch-based testing. Try a new version of a skill on a branch before merging.
  • CI integration. Lint your skill files, validate structure, run tests.

A new developer runs akm add, and they've got the entire team's skill library indexed and searchable immediately. No onboarding doc that says "copy these files to these directories."

Private Registry for Larger Orgs

For larger teams or organizations that want discoverability without mandating specific skills, akm supports private registries. Think npm for agent skills, but hosted internally.

# Search the team registry
akm search "deploy" --registry https://registry.internal.company.com

# Install a specific skill from the registry
akm add registry:deploy-to-k8s
Enter fullscreen mode Exit fullscreen mode

This makes more sense when your organization has dozens of teams, each with their own skills, and you want cross-team discovery without requiring everyone to index everything. Also handy when you need access control — some skills are sensitive.

When the Team Skill Doesn't Quite Fit

Here's the scenario every team hits: the standard deploy skill works for 90% of cases. But your project has a specific environment variable, an extra pre-deploy step, or a different notification channel.

You don't want to modify the team skill — that breaks it for everyone else. You don't want to write your own from scratch — that's the duplication problem we started with.

akm clone solves this:

# Fork the team skill into your personal source
akm clone skill:deploy

# Now you have a local copy to customize
# Edit ~/.akm/sources/default/skills/deploy/SKILL.md
# Add your project-specific steps
Enter fullscreen mode Exit fullscreen mode

The team version stays clean. Your fork is yours to customize. Both appear in your search results — the team version and your customized version — with the local fork ranked higher since it's in your personal source.

When the team updates their version, you can re-clone to get the update and reapply your customizations. Or diff the two versions to see what changed.

Putting It Together

Here's what the full workflow looks like for a team of five:

Team lead (one-time setup):

# Create the team skills repo
mkdir team-agent-skills
cd team-agent-skills
akm setup
# Add skills, commands, knowledge
# Push to github.com/your-org/team-agent-skills
Enter fullscreen mode Exit fullscreen mode

Each developer (one-time setup):

# Add team source alongside personal sources
akm add github:your-org/team-agent-skills
akm add ~/.claude/skills
akm add ~/.codex/skills
Enter fullscreen mode Exit fullscreen mode

Daily workflow:

# Search finds results from all sources
akm search "deploy"

# Team skill and personal skills appear together
# Best match wins, regardless of source

# Pull team updates
akm update --all
Enter fullscreen mode Exit fullscreen mode

When customization is needed:

akm clone skill:deploy
# Edit local copy
# Both versions stay searchable
Enter fullscreen mode Exit fullscreen mode

No file copying. No sync scripts. No "which version is correct?" conversations. The team source is the source of truth. Personal forks are explicitly personal. Search finds everything.

Why This Scales

This whole workflow is built on the progressive disclosure pattern from the previous post. At team scale, it's not just an optimization — it's a necessity.

A team of five, each with 30 personal skills plus 50 shared team skills, has 200 total skills in play. Front-loading all of them into every agent session would cost 200,000+ tokens. With akm's search-then-load pattern, each session uses only the 2-5 skills it actually needs.

The agent doesn't know or care whether a skill came from the team source, a personal directory, or a Git repository. It searches, it finds, it loads. The source management is your concern as a developer. The skill content is the agent's concern. Clean separation.

Getting Started

If you're a team lead looking to set up shared skills:

  1. Pick your approach — shared filesystem for co-located teams, Git repo for distributed teams, registry for large organizations
  2. Create the shared source with a standard kit structure
  3. Have each developer run akm add to register the source
  4. Start with 3-5 high-value skills that everyone uses (deploy, test, review, etc.)
  5. Iterate from there

The infrastructure is minimal. The payoff is immediate.

Give it a shot and let me know how it holds up. The repo's at github.com/itlackey/akm, and the Getting Started guide will get you wired up in a few minutes.

Top comments (0)