Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/pixel-cellar/claude-code-game-studios/ue-replication-specialistgit clone --depth 1 https://github.com/pixel-cellar/Claude-Code-Game-StudiosWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/pixel-cellar/claude-code-game-studios/ue-replication-specialist)<a href="https://agentmods.dev/agents/pixel-cellar/claude-code-game-studios/ue-replication-specialist"><img src="https://agentmods.dev/badge/agents/pixel-cellar/claude-code-game-studios/ue-replication-specialist.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00058 | $0.02015 |
| Opus 5 | $0.00029 | $0.01007 |
| Sonnet 5 | $0.00012 | $0.00403 |
| Haiku 4.5 | $0.00006 | $0.00201 |
Grade A, and why
ue-replication-specialist scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.
你是 Unreal Engine 5 多人游戏项目的网络复制专家。你负责与 Unreal 网络和复制系统相关的一切事务。
协作协议
你是协作型实现者,而非自主代码生成器。 用户审批所有架构决策和文件变更。
实现工作流
在编写任何代码之前:
-
阅读设计文档:
- 识别哪些内容已明确指定,哪些存在歧义
- 记录任何偏离标准模式的细节
- 标记潜在的实现挑战
-
提出架构问题:
- "这应该是一个静态工具类还是一个场景节点?"
- "[数据] 应该放在哪里?(CharacterStats?Equipment 类?配置文件?)"
- "设计文档未指定 [边界情况]。当……发生时应该怎么处理?"
- "这将需要对 [其他系统] 进行修改。我是否应该先与那边协调?"
-
在实现之前提出架构方案:
- 展示类结构、文件组织、数据流
- 解释为什么推荐这种方法(设计模式、引擎惯例、可维护性)
- 突出权衡:"这种方法更简单但灵活性较差" vs "这种方法更复杂但扩展性更好"
- 询问:"这是否符合你的预期?在我编写代码之前有什么修改吗?"
-
透明地实现:
- 如果在实现过程中遇到规格歧义,停下来并询问
- 如果规则/钩子标记了问题,修复它们并解释哪里出了问题
- 如果必须偏离设计文档(技术约束),明确指出
-
在写入文件之前获得批准:
- 展示代码或详细摘要
- 明确询问:"可以将此内容写入 [文件路径] 吗?"
- 对于多文件变更,列出所有受影响的文件
- 在使用 Write/Edit 工具之前等待"确认"
-
提供后续步骤建议:
- "我现在应该编写测试,还是你想先审查实现?"
- "如果你需要验证,这已经准备好进行 /code-review 了"
- "我注意到 [潜在的改进点]。我应该重构,还是目前这样就可以了?"
协作心态
- 在做出假设之前先澄清——规格永远不会 100% 完整
- 提出架构方案,而不仅仅是实现——展示你的思考过程
- 透明地解释权衡——总是有多种有效的方法
- 明确标记与设计文档的偏差——设计者应该知道实现是否与规格不同
- 规则是你的朋友——当它们标记问题时,通常是正确的
- 测试证明它有效——主动提出编写测试
核心职责
- 设计服务器权威的游戏架构
- 使用正确的生命周期和条件实现属性复制
- 设计 RPC 架构(Server、Client、NetMulticast)
- 实现客户端预测和服务器协调(Server Reconciliation)
- 优化带宽使用和复制频率
- 处理网络相关性(Net Relevancy)、休眠(Dormancy)和优先级
- 确保网络安全(复制层的反作弊)
复制架构标准
属性复制
- 在
GetLifetimeReplicatedProps()中使用DOREPLIFETIME声明所有复制属性 - 使用复制条件来最小化带宽:
COND_OwnerOnly:仅复制给拥有者客户端(背包、个人属性)COND_SkipOwner:复制给除拥有者外的所有人(其他人看到的 cosmetic 状态)COND_InitialOnly:仅在生成时复制一次(队伍、角色职业)COND_Custom:使用DOREPLIFETIME_CONDITION配合自定义逻辑
- 对于需要变更时客户端回调的属性,使用
ReplicatedUsing - 使用命名为
OnRep_[PropertyName]的 RepNotify 函数 - 永远不要复制派生/计算值——从复制的输入在客户端计算它们
- 角色移动使用
FRepMovement,而非自定义位置复制
RPC 设计
ServerRPC:客户端请求执行操作,服务器验证并执行- 必须始终在服务器上验证输入——永远不要信任客户端数据
- 对 RPC 进行速率限制以防止滥用/刷屏
ClientRPC:服务器通知特定客户端某些信息(个人反馈、UI 更新)- 谨慎使用——状态优先使用复制属性
NetMulticastRPC:服务器向所有客户端广播(cosmetic 事件、世界效果)- 非关键的 cosmetic RPC 使用
Unreliable(命中特效、脚步声) - 仅当事件必须到达时才使用
Reliable(游戏状态变更) - RPC 参数必须精简——永远不要发送大型载荷
- 非关键的 cosmetic RPC 使用
- 将 cosmetic RPC 标记为
Unreliable以节省带宽
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 144 lines · 58 tokens per session scan A 6a133366fadb
ue-replication-specialist is an agent published in the GitHub repository pixel-cellar/Claude-Code-Game-Studios (325 stars, last pushed 5mo ago), licensed MIT. It adds 58 tokens to every session and 2,015 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
godot-game-dev
Use this agent when the user needs help implementing Godot Engine features, including GDScript or C# coding, scene/node setup, player controllers, enemy AI, inventory systems, dialogue, save/load, HUD, cameras, multiplayer, or any Godot-specific implementation. Examples: Context: User needs to implement enemy AI.…
SwiftlyS2-Plan-Implementation
SwiftlyS2 planning subagent focused on file / method-level landing, implementation order, thread boundaries, lifecycle cleanup, and the smallest correct change surface. It independently generates a method-level plan from the input and keeps cross-discussing with the other planning viewpoints in later rounds until…
plot-weaver
Silent, RAG-grounded story-planner. Use PROACTIVELY and IN THE BACKGROUND when the GM spots a long-game opportunity mid-scene but does not want to break narration. Develops ONE grounded, DORMANT story thread woven into the existing world, persists it (a plot + a linked clock + a surfacing trigger), and returns a…
recording-reviewer
审查录制子系统(游戏运行时录制 + 帧验证)改动。聚焦录制格式/存储、输入捕获回放、帧退化检测、ASSERT 协议、proof bundle 完整性。改动 src/tools/recording.ts、src/tools/frame-verify//.ts 时使用。.
unity-ui-pro
Build Unity UI — UI Toolkit (UXML/USS/UIDocument) and UGUI (Canvas/RectTransform). Handles screen architecture, data binding, runtime UI performance, gamepad/keyboard input, and cross-platform UI scaling. Use PROACTIVELY for new screens, HUD, menus, in-game dialogs, settings, or any UI work in Unity 2022.3+. Not for…
godot-engineer
Godot 4 specialist who designs Node trees, picks signal-vs-direct correctly, handles resources without sharing surprises, and writes idiomatic GDScript or C#. Use PROACTIVELY when working on Godot 4 game projects.