C.W.K.
Stream
Lesson 07 of 07 · published

엔터프라이즈 배포와 marketplace

~12 min · skills, marketplace, enterprise, distribution

Level 0🌱 입문자
0 XP0/70 lessons0/11 achievements
0/120 XP to next level120 XP to go0% complete

라이브러리 ship 하듯 Skill ship

조직 내에서 Skill 이 공유 라이브러리만큼 중요해져. 팀이 어떻게 찾고, 설치하고, 버전 관리하고, 업데이트할지 표준화. 패턴: (1) 버전 release 가진 Skill 모노레포, (2) 내부 인프라에서 serve 되는 private marketplace, (3) skill + agent + asset 같이 plugin 패키징.

Anthropic 의 public marketplace 에는 바가 더 높음: 명료한 docs, paths: 에 secret X, 잘 묘사된 invocation intent, eval 하네스 옆에 커밋. Marketplace 게시가 reviewable; private 배포는 네 책임.

Code

Internal Skills monorepo layout·text
org-skills/
├── README.md
├── package.json          ← versioning + scripts
├── skills/
│   ├── sql-perf-advisor/
│   ├── pr-summary/
│   ├── changelog-writer/
│   ├── security-audit/
│   └── brand-rewrite/
├── plugins/
│   └── analyst-toolkit/   ← bundles 3 of the skills above
└── tests/
    └── run-all-evals.sh

# Versioning: tag releases (v1.4.0)
# Distribution: install from internal git url
Plugin manifest bundling skills·json
{
  "name": "analyst-toolkit",
  "version": "1.4.0",
  "description": "Skills + agents the analyst team uses every day",
  "skills": ["pr-summary", "changelog-writer", "brand-rewrite"],
  "agents": ["research-coordinator"],
  "permissions": {
    "fileAccess": "working-folder",
    "webFetch": false
  }
}

External links

Exercise

내부 Skill 모노레포 spinup (단일 Git repo + skills/ 폴더, README, tests/ 폴더). Skill 2개 옮겨. v1.0.0 release 태그. 다른 머신에 설치해서 배포 흐름 verify.

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.