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

claude-nexus

v0.34.1

Published

Claude Code plugin for nexus-core agent orchestration

Readme

claude-nexus

npm version license

🌏 English

Claude Code용 Nexus 에이전트 오케스트레이션 플러그인. nexus-core의 canonical 에이전트·스킬·MCP 서버를 Claude 하네스에 등록한다.

무엇이 들어 있나

  • 에이전트 9종: architect · designer · engineer · lead · postdoc · researcher · reviewer · tester · writer
  • 스킬 3종: nx-auto-plan · nx-plan · nx-run[plan]·[auto-plan]·[run] 태그로 활성화
  • MCP 서버 nexus-core: 플래닝·태스크·이력·아티팩트 상태 관리 도구 14종 (nx_plan_*·nx_task_*·nx_history_search·nx_artifact_*)
  • 훅 2종:
    • SessionStart.nexus/ 폴더 구조와 화이트리스트 .gitignore 보장
    • UserPromptSubmit — 태그 6종 ([plan]·[auto-plan]·[run]·[m]·[m:gc]·[d]) 라우팅
  • 활성화 시 lead 에이전트가 메인 스레드가 되도록 settings.json 기본 포함

필요 설정

서브에이전트 resume(SendMessage) 기능을 쓰려면 Claude Code 세션에 CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 환경 변수가 필요하다 (Claude Code가 플러그인 settings.jsonenv는 적용하지 않으므로 사용자가 설정). ~/.claude/settings.json 또는 프로젝트 .claude/settings.json에 추가:

{
  "env": { "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" }
}

설치

Claude Code 안에서 플러그인 마켓플레이스로 설치한다.

/plugin marketplace add moreih29/claude-nexus
/plugin install claude-nexus@nexus

사용

설치 후 새 Claude Code 세션을 열면 lead 에이전트가 메인 스레드로 실행된다. 요청 앞에 태그를 붙여 스킬을 활성화한다.

| 태그 | 동작 | |---|---| | [plan] | nx-plan 스킬 — 다관점 분석과 결정 정렬 기반 실행 계획 | | [auto-plan] | nx-auto-plan 스킬 — 요청을 자동 분해해 계획 | | [run] | nx-run 스킬 — 현재 계획의 태스크 실행 | | [m] <본문> | .nexus/memory/에 교훈·참조 저장 | | [m:gc] | .nexus/memory/ 정리 | | [d] <결정> | 활성 plan 세션 현재 안건에 대한 결정 기록 |

선택: statusline

플러그인은 2줄 statusline 스크립트를 함께 배포한다. 첫 줄은 ◆Nexus vX.Y.Z·모델·프로젝트·git 브랜치(staged/unstaged), 둘째 줄은 컨텍스트 사용률과 모드별 사용량 정보:

  • OAuth 세션 (Claude Pro·Max) — 5h/7d 사용 한도 게이지(리셋까지 남은 시간). 로컬의 여러 Claude 세션이 $CLAUDE_CONFIG_DIR/.usage_cache(미설정 시 ~/.claude/.usage_cache)를 공유하므로 API 중복 호출 없이 경합이 방지된다.
  • API 모드 (ANTHROPIC_API_KEY 설정)API $X.XX today 형식으로 오늘(UTC 자정 기준) 발생한 비용을 표시. Claude Code가 기록하는 로컬 jsonl 세션 로그를 직접 스캔해 모델별 토큰을 합산하고 Anthropic 공식 가격표 기반으로 USD 환산하므로, 별도 admin key 셋업이 불필요하다.

CLAUDE_CONFIG_DIR 환경변수로 다중 OAuth 계정을 분리해 쓰는 경우, statusline의 캐시·키체인 조회·비용 스캔이 모두 본체와 동일한 알고리즘으로 자동 분기된다.

Claude Code는 플러그인이 사용자 statusLine을 자동 등록하는 걸 허용하지 않으므로, 별도 CLI로 배포된 claude-nexus를 본인의 ~/.claude/settings.json에 등록한다.

bunx 또는 npx (설치 불필요)

{
  "statusLine": {
    "type": "command",
    "command": "bunx claude-nexus"
  }
}

npx -y claude-nexus도 동일하게 동작한다. 최초 호출 1회만 패키지를 로컬 캐시에 받고, 이후 호출은 캐시에서 즉시 실행된다.

전역 설치 (가장 빠른 시작 시간)

bun add -g claude-nexus    # 또는 npm i -g claude-nexus
{
  "statusLine": {
    "type": "command",
    "command": "claude-nexus"
  }
}

업데이트는 bun update -g claude-nexus(또는 npm update -g claude-nexus) 한 번으로 끝난다.

요구 사항

  • Claude Code (최신)
  • Node.js 20 이상 (훅·MCP 서버 실행)

라이선스

MIT