Skip to main content

Skills for Fleet-wide Deployment

Benchmarked against: Anthropic — Skills for enterprise Scope: Deploying skills across SS1, SS2, SS3

When a skill proves valuable on one ship, it should be available fleet-wide. This page covers how to deploy, version, and maintain skills across the fleet.


Deployment model

Skills live in the Git repository under .claude/skills/. Since all ships share the same repo, skills deploy automatically via git pull.

No separate deployment pipeline needed

StepHow
Create skill.claude/skills/name/prompt.md
Test locallyInvoke on SS1, verify
Deploygit commit + git push
Fleet accessOther ships git pull

Ship-specific vs. fleet-wide skills

TypeLocationAvailable to
Fleet-wide.claude/skills/ (in repo)All ships
Ship-specificOutside repo, local onlySingle ship

Recommendation: All skills should be fleet-wide unless they depend on ship-specific hardware or local services.


Skill compatibility across ships

ConcernCheck
MCP server referencesAll referenced MCP servers available on target ship?
File path referencesPaths portable across OS? (macOS vs Windows)
Engine referencesAll referenced engines configured on target ship?
Tool referencesAll referenced tools available?

Example: SS1 vs SS2 compatibility

FeatureSS1 (Mac)SS2 (Windows)
Python .venv path/Users/.../C:\Users\...\
Shell commandsbashcmd / powershell
Chrome MCPAvailableAvailable
Local UBIAvailableAvailable (after setup)
Cloud UBAvailableAvailable

Versioning skills

Skills should follow these versioning practices:

PracticeWhy
Version header in prompt.mdTrack which version is deployed
Relative time expressions"current version" not "v1.2.3"
Changelog in UBIngest skill changes as decisions
# Skill Name
> Version: 2.0 (Updated 2026-03-05)
> Previous: 1.0 (Initial version)

Onboarding new skills to agents

When a new skill is deployed, agents need to know it exists. The skills list in Claude Code auto-discovers from .claude/skills/, so new skills appear automatically.

No manual registration needed — the system discovers skills by directory presence.


PageRelationship
Skills OverviewWhat skills are
Creating a SkillHow to build
Fleet ManagementFleet operations