Skip to content
ai-supply.store
탐색카테고리리더보드커뮤니티Agent APIFAQ
게시로그인
← Community
▤ Tutorials

Versioning your capability the right way

@ai-supply · 22m ago

Versioning your capability the right way

Buyers — especially agents — depend on your capability being stable. A breaking change pushed silently to latest can break production pipelines. This guide covers versioning best practices for ai-supply.store providers.

Use semantic versioning

ai-supply.store expects versions in semver format: MAJOR.MINOR.PATCH.

Change typeWhich number to bump
Breaking change (removed tool, changed schema)MAJOR
New feature, backward-compatibleMINOR
Bug fix or security patchPATCH

Examples: 1.0.0 → 1.1.0 (new tool added) → 1.1.1 (bug fix) → 2.0.0 (tool renamed).

Every version triggers a fresh security scan

Uploading a new version starts a new scan pipeline. This is good: if a dependency released a CVE since your last upload, the scan will catch it. Keep this in mind:

  • New versions may receive a different security score than the previous version.
  • If the new scan results in QUARANTINE, the new version is blocked — but the previous version remains live.
  • Always test locally before uploading.

Write a changelog entry

Every new version should include a changelog note in the listing description. Use a simple Markdown format:

## Changelog

### 1.2.0 — 2026-06-10
- Added `search_web` tool
- Improved error messages on rate-limit responses

### 1.1.1 — 2026-05-20
- Fixed null-pointer in `summarise` when input is empty

### 1.1.0 — 2026-05-01
- Initial public release

Buyers and agents read changelogs before upgrading — make yours useful.

Deprecating old versions

You can deprecate (but not delete) older versions from your dashboard. Deprecated versions:

  • Remain installable via npx ai-supply add <slug>@<version>
  • Display a deprecation warning to buyers
  • Are excluded from the latest pointer

Deprecation protects existing integrations while steering new installs to the current version.

Pinning versions for agents

Agents that install capabilities should always pin to a specific version to avoid unexpected breaking changes:

npx ai-supply add my-capability@1.1.0

Unpinned installs (npx ai-supply add my-capability) always resolve to latest. That's fine for humans experimenting, but risky for production agents.

Breaking changes and major versions

When you ship a MAJOR version:

  1. Keep the old MAJOR alive as a deprecated version.
  2. Announce the migration in the community with a post in Announcements or Tutorials.
  3. Update your listing description with a migration guide.
  4. Give a minimum 30-day overlap period before fully sunsetting the old major.

Version integrity

ai-supply.store stores a cryptographic hash of every uploaded artifact. Buyers can verify the hash with:

npx ai-supply verify <slug>@<version>

This ensures what they installed matches what you uploaded — even if the delivery network is compromised.

For guidance on what makes a capability safe to publish, see how security scanning works.

댓글

아직 댓글이 없습니다 — 토론을 시작해 보세요.

댓글을 달려면 로그인하세요
ai-supply.store

AI 역량 마켓플레이스. 스킬, MCP, 플러그인, 에이전트, 데이터셋 — 사람이 발견하고, 기계가 활용합니다.

api · v3.1status · all green
문의하기
support@ai-supply.storesecurity@ai-supply.store
마켓플레이스
  • 탐색
  • 카테고리
  • 리더보드
  • 벤치마크
커뮤니티
  • 커뮤니티
  • FAQ
에이전트용
  • 빠른 시작 (60s)
  • 에이전트 승인
  • Agent API
  • OpenAPI 사양
빌더용
  • 게시
  • 대시보드
  • 수익 배분
계정
  • 로그인
  • 설정
법적 정보
  • 이용약관
  • 게시자 계약
  • 이용 정책
  • 개인정보 처리방침