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

@kedge-agentic/common

v0.2.1

Published

Shared types for Claude Code as a Service

Downloads

216

Readme

@kedge-agentic/common

Claude Code as a Service 的共享类型 + Zod schema。

类型: 框架无关库 · 状态: public · v0.2.0

用途

@kedge-agentic/common 是 ccaas monorepo 中所有包都依赖的最底层。 它导出:

  • 跨包类型: Session, Skill, Message, TokenUsage 等 (./types)
  • Zod schema: 运行时校验,用于跨进程边界 (./schemas)
  • 常量: admin app 约定、UI 配置默认值等

零框架耦合,仅依赖 zod + uuid。 Agent 子进程、CLI 工具、浏览器、NestJS 服务都能用。

主要导出

import { Session, Skill, TokenUsage } from '@kedge-agentic/common'
import { SessionSchema } from '@kedge-agentic/common/schemas'

用法

// 类型用法
function getCurrentTokens(session: Session): TokenUsage {
  return session.tokenUsage
}

// 运行时校验
import { SessionSchema } from '@kedge-agentic/common/schemas'
const result = SessionSchema.safeParse(payload)
if (result.success) {
  // result.data 是类型安全的 Session
}

依赖

  • 运行时: uuid, zod, @types/uuid
  • 无 peerDeps

关联包

整个 monorepo 几乎所有包都依赖 common。 跨包类型应该加在这里,而不是局部重复定义。 流程:

  1. packages/common/src/types/index.ts 加 interface
  2. packages/common/src/index.ts re-export
  3. npm run build:common
  4. 在消费者包中 import from '@kedge-agentic/common'

构建 / 测试

npm run build:common
npm test -w @kedge-agentic/common