npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

zivo-skills

v0.1.13

Published

ZIVO Team Skills CLI - manage AI agent skills across Claude Code, Codex, Gemini, Cursor

Downloads

280

Readme

ZIVO TEAM Skills

ZIVO 팀 전용 AI 에이전트 스킬 관리 CLI.

설치

스킬 이름으로 설치 (권장)

# 특정 스킬 설치
npx zivo-skills add zivo-back-arch --code {code}

# 전체 스킬 설치
npx zivo-skills add --all --code {code}

# 프롬프트 없이 설치
npx zivo-skills add zivo-back-resilience -y --code {code}

GitHub URL로 설치

npx zivo-skills add https://github.com/sangwookp9591/zivo-team-skills \
  --skill zivo-back-arch --code {code}

로컬 경로로 설치 (개발용)

git clone https://github.com/sangwookp9591/zivo-team-skills.git
cd /path/to/your-project
npx zivo-skills add /path/to/zivo-team-skills --all --code {code}

기타 명령어

# 설치된 스킬 목록
npx zivo-skills list

# 스킬 제거
npx zivo-skills remove <skill-name>

지원 에이전트

| 에이전트 | 설치 경로 | | ----------- | ----------------- | | Claude Code | .claude/skills/ | | Codex | .codex/skills/ | | Gemini CLI | .gemini/skills/ | | Cursor | .cursor/skills/ |

스킬 목록

Backend

| 스킬 | 설명 | | ---------------------- | ---------------------------------------------------------------------------------------------------------------------------- | | zivo-back-arch | Spring Boot + MyBatis/JPA, DDD/Hexagonal 아키텍처. @NotifyOn, @ApiResponseWrapper, @Loggable 등 커스텀 어노테이션, TDD, 보안 | | zivo-back-gof | Spring Boot GoF 디자인 패턴. 상황별 패턴 추천, 오버엔지니어링 판단, DDD 계층 내 패턴 적용 | | zivo-back-resilience | Backend Resilience & Performance Guard. 외부 API timeout, 커넥션 풀, N+1, circuit breaker, 캐시 전략, 502/500/timeout 디버깅 |

Frontend (Admin)

| 스킬 | 설명 | | --------------------------- | ----------------------------------------------------------------------------------------------- | | zivo-admin-new-page | 신규 페이지 추가. 리스트/상세 보일러플레이트, 레이아웃 패턴, API 서비스, TanStack Query, StyleX | | zivo-admin-workspace | 공유 컴포넌트/훅/타입. shared/ui 생성 규칙, 커스텀 훅, 프로젝트 구조 맵 | | zivo-admin-migrate-design | HTML → React+StyleX 마이그레이션. 90+ 컴포넌트 매핑, CSS→StyleX 변환, 갭 분석 | | zivo-stylex-guide | StyleX 지뢰밭 가이드. 토큰, 반응형 로컬 상수 패턴, 에러 해결법 |

Flutter

| 스킬 | 설명 | | ----------------------- | ------------------- | | zivo-flutter-arch | Flutter 앱 아키텍처 | | zivo-flutter-i18n | Flutter 다국어 처리 | | zivo-flutter-patterns | Flutter 공통 패턴 |

옵션

| 옵션 | 설명 | | ---------------- | ---------------------- | | --skill <name> | 특정 스킬만 설치 | | --all | 전체 스킬 설치 | | --code <code> | 팀 인증 코드 | | -y, --yes | 프롬프트 스킵 | | -g, --global | 글로벌 설치 | | --copy | symlink 대신 파일 복사 | | --force | 충돌 시 강제 덮어쓰기 | | --no-cache | 캐시 무시 |

스킬 개발

skills/ 디렉토리에 새 스킬을 추가합니다:

skills/
└── my-skill/
    ├── SKILL.md           # 스킬 본문 (frontmatter 필수)
    └── references/        # 참조 파일 (선택)
        └── example.md

SKILL.md frontmatter

---
name: my-skill
description: 스킬 설명
triggers:
  - keyword1
  - keyword2
metadata:
  author: ZIVO Team
  version: "1.0.0"
---

Deploy

pnpm install
pnpm build
npm version patch
git push
npm login
npm publish --access public

License

MIT