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

@dongkseo/cli

v0.1.10

Published

**Stability: stable** · `pnpm add @dongkseo/cli` · bin: `nexora`

Downloads

291

Readme

@dongkseo/cli

Stability: stable · pnpm add @dongkseo/cli · bin: nexora

이 파일은 에이전트(사람·LLM)가 소스를 열지 않고도 이 패키지를 쓸 수 있게 하는 오리엔테이션 문서다. CLI는 라이브러리가 아니라 명령 중심이다. 정확한 프로그래매틱 타입은 signatures로 읽어라.

무엇인가 / 무엇이 아닌가

Nexora 개발/운영 CLI다. 에이전트를 스캐폴드하고, dev 서버를 띄우고, 진단·DLQ·예산·handraise를 본다. 같은 기능을 코드에서 부를 수 있게 프로그래매틱 API도 export한다.

  • ✅ 담는 것: nexora 명령(create/dev/doctor/dlq/budget/handraise/export/import), 프로그래매틱 함수(scaffoldAgent, runDev, runDoctor, viewDlq, viewBudget, viewHandraises, exportPackage, importPackage)
  • ❌ 안 담는 것: 런타임 엔진(→ @dongkseo/core), 트랜스포트(→ @dongkseo/transport), 게이트웨이(→ @dongkseo/gateway)

핵심 개념 (명령 ↔ 프로그래매틱 API)

| 명령 | 무엇 | 프로그래매틱 export | | --- | --- | --- | | nexora create agent <name> | 에이전트 스캐폴드 | scaffoldAgent | | nexora dev | dev 서버 부팅(어댑터+로컬 트랜스포트) | runDev | | nexora doctor | 환경/설정 진단 | runDoctor | | nexora dlq | dead-letter 큐 조회 | viewDlq | | nexora budget | 예산 사용 조회 | viewBudget | | nexora handraise | 대기 중 handraise 조회 | viewHandraises | | nexora export / import | 에이전트 패키지 내보내기/가져오기 | exportPackage / importPackage |

사용 레시피

CLI:

npx nexora create agent my-agent --tools read,grep
npx nexora dev
# 다른 터미널
curl -X POST localhost:3000/messages -H 'Content-Type: application/json' -d '{"content":"hello"}'

프로그래매틱(다른 도구에서 스캐폴딩 호출):

import { scaffoldAgent, runDev } from '@dongkseo/cli';

await scaffoldAgent({ name: 'my-agent', tools: ['read', 'grep'] });
await runDev();

API 표면 (소스 안 열고 타입만)

ctx_read(path="platform/cli/src/index.ts",        mode="map")          # 프로그래매틱 export 전체
ctx_read(path="platform/cli/src/scaffold.ts",     mode="signatures")   # scaffoldAgent, ScaffoldOptions
ctx_read(path="platform/cli/src/ops.ts",          mode="signatures")   # runDoctor, viewDlq, viewBudget, viewHandraises
ctx_read(path="platform/cli/src/portability.ts",  mode="signatures")   # exportPackage, importPackage

CLI 진입점(명령 파싱)은 src/cli.ts (bin nexora).

유지보수 (drift 방지)

  • 이 README = 목적·명령·레시피만. API 정본은 소스 TSDoc.
  • 새 명령/함수가 생기면 이 표와 src/index.ts에 한 줄만 추가.

Tests

cd platform/cli && pnpm test

Part of the Nexora multi-tenant agent framework. · Package map