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

@ai-rpg-engine/starter-cyberpunk

v2.2.2

Published

AI RPG Engine cyberpunk starter: Neon Lockbox

Readme

@ai-rpg-engine/starter-cyberpunk

霓虹色保险箱 — 一个用于 AI RPG 引擎的赛博朋克入门世界。

安装

npm install @ai-rpg-engine/starter-cyberpunk

您将学到的内容

这个入门示例展示了引擎的灵活性——使用相同的引擎架构,但具有完全不同的属性模型:

| 特性 | “霓虹色保险箱”展示的内容 | |---|---| | Rulesets | cyberpunkMinimalRuleset — 属性(铬/反射/网络入侵),资源(生命值/防火墙/带宽),8 个动词,包括“入侵”和“接入”。 | | Zones & traversal | 3 个区域(街道 → 服务器机房 → 保险库),包含光照、危险和可交互元素。 | | Districts | 霓虹街道区域(公共)与保险库区域(安全,由派系控制)。 | | Dialogue | “掮客”的简报,包含 3 个分支和全局标志效果。 | | Combat | 具有攻击性 AI 的 ICE 哨兵,目标是守卫保险库。 | | Cognition & perception | 更高的衰减 + 不稳定性,基于“反射”的感知,以及“网络入侵”感应属性。 | | Progression | 3 节点网络入侵技能树(数据包嗅探器 → 防火墙强化 → 神经增强)。 | | Environment | 暴露的电线,进入区域时会造成 2 点生命值伤害。 | | Factions | 保险库防火墙派系,凝聚力为 0.95。 | | Belief provenance | 更快的谣言传播速度(延迟=1),每跳 3% 的失真。 | | Inventory | ICE 破解程序 — 减少目标 ICE 的数值 8。 | | Presentation rules | ICE 代理将所有非 ICE 实体标记为入侵。 |

奇幻与赛博朋克 — 相同的引擎,不同的规则集

| | 圣殿阈值 | 霓虹色保险箱 | |---|---|---| | 属性 | 活力 / 意志 / 反应 | 铬 / 反射 / 网络入侵 | | 资源 | 生命值,体力 | 生命值,防火墙,带宽 | | 独特的动词 | — | 入侵,接入 | | 感知 | 默认 | 基于反射 + 网络入侵感应 | | 认知衰减 | 基础值 0.02 | 基础值 0.03,不稳定性 0.8 | | 谣言传播 | 延迟=2,无失真 | 延迟=1,3% 失真 |

内容

  • 3 个区域 — 霓虹街道,废弃服务器机房,数据保险库
  • 1 个 NPC — 掮客“基拉”(简报对话,3 种对话路径)
  • 1 个敌人 — ICE 哨兵(具有攻击性 AI,守卫保险库的目标)
  • 1 个物品 — ICE 破解程序(减少目标 ICE 资源)
  • 1 棵技能树 — 网络入侵技能(数据包嗅探器 → 防火墙强化 → 神经增强)
  • 1 条规则 — ICE 代理将所有非 ICE 实体标记为入侵
  • 15 个模块已连接 — 与圣殿阈值相同,但配置不同

使用方法

import { createGame } from '@ai-rpg-engine/starter-cyberpunk';

// One line — all 15 modules, content, and ruleset pre-wired
const engine = createGame(77);

// Or import pieces individually:
import { manifest, zones, fixerDialogue, cyberpunkMinimalRuleset } from '@ai-rpg-engine/starter-cyberpunk';

文档


MCP Tool Shop 构建。