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 skills add znlgis/opengis-skills --skill supersplatgit clone --depth 1 https://github.com/znlgis/opengis-skillsWrote 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/skills/znlgis/opengis-skills/supersplat)<a href="https://agentmods.dev/skills/znlgis/opengis-skills/supersplat"><img src="https://agentmods.dev/badge/skills/znlgis/opengis-skills/supersplat/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/znlgis/opengis-skills/supersplat"><img src="https://agentmods.dev/badge/skills/znlgis/opengis-skills/supersplat.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.1 | $0.00076 | $0.02479 |
| Opus 5 | $0.00038 | $0.01239 |
| Sonnet 5 | $0.00015 | $0.00496 |
| Haiku 4.5 | $0.00008 | $0.00248 |
Grade A, and why
supersplat 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 12d 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 — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.
项目地址: https://github.com/playcanvas/supersplat
在线编辑器: https://superspl.at/editor | 用户手册: https://developer.playcanvas.com/user-manual/gaussian-splatting/editing/supersplat/
许可证: MIT | 最新版本: 参见 GitHub Releases| 默认分支:
main
概述
SuperSplat 是「3D 高斯泼溅领域的 Photoshop + 发布平台」:完全基于 Web、免下载安装、源码开源。它专为 3DGS「训练之后、上线之前」的后期处理而生,解决原始 .ply 噪点多、体积大、坐标不规范、缺乏清理/动画/发布能力等问题。
- 检查 / 编辑:加载、查看、选择并删除高斯点(噪点、漂浮物 floaters)。
- 变换 / 裁剪:平移/旋转/缩放、包围盒裁剪、多模型场景管理。
- 外观优化:颜色调整、球谐(SH)带数控制。
- 动画:相机姿态关键帧、时间轴、动画导出。
- 导出 / 发布:多格式导出(含压缩),或一键发布到 PlayCanvas 托管获得分享链接。
- 技术栈:TypeScript + PlayCanvas 引擎(
createGraphicsDevice初始化 WebGL2/WebGPU)+ PCUI 组件库 + i18next 国际化 + Rollup 构建。
3DGS 由 Inria 2023 年论文《3D Gaussian Splatting for Real-Time Radiance Field Rendering》提出,相比 NeRF 具备实时渲染、训练快、画质高的优势。
在线使用(推荐)
直接打开 https://superspl.at/editor,将训练产出的 .ply(COLMAP + gaussian-splatting / Postshot / Nerfstudio 等)拖入即可,无需安装。
典型后期处理流程:
- 导入
.ply高斯模型。 - 清理:用选择工具框选/套索选中噪点与漂浮物 → 删除(删除仅打
deleted标记,导出时才真正剔除,可撤销恢复)。 - 裁剪:用包围盒裁掉无关区域。
- 变换:摆正坐标系、调整朝向与比例(多模型场景可分别变换)。
- 调色:调整颜色、设置保留的 SH 带数。
- 动画(可选):设置相机关键帧与时间轴。
- 导出 / 发布:选择格式导出,或发布到云端。
导出格式
导出弹窗(src/ui/export-popup.ts)支持:
| 格式 | 扩展名 | 特点 | 适用场景 |
|---|---|---|---|
| 标准 PLY | .ply |
无损、体积大、通用 | 归档、再编辑、跨工具交换 |
| 压缩 PLY | .compressed.ply |
PlayCanvas 量化压缩,体积大幅减小,仍是 PLY | Web 加载、平衡体积与兼容性 |
| Splat | .splat |
antimatter15 紧凑二进制 | 轻量 Web 查看器 |
| KSplat | .ksplat |
mkkellogg 的分块/可流式格式 | Three.js 高斯查看器 |
| SOG | .sog |
Self-Organizing Gaussians,WebP 纹理存储,体积极小 | Web 发布、移动端 |
减小体积三板斧(常把数百 MB 压到几 MB):
- 删除噪点:导出时被标记删除的点不写入,点数 = 原始 − 已删除。
- Compress PLY:开启量化压缩。
- 降低 SH Bands:高阶球谐占绝大多数属性;Web 场景常保留 0–1 阶即可,会损失少量视角相关高光但显著减小体积。
带查看器导出:可打包成自包含 HTML 或 ZIP(Package),含相机动画与循环模式(none / repeat / pingpong),双击即可在浏览器观看。
发布到 PlayCanvas 平台
一键发布(src/publish.ts、src/ui/publish-settings-dialog.ts)获得在线可分享、可嵌入链接:
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.
- 12d ago First seen · 153 lines · 76 tokens per session scan A b851d494f78b
supersplat is a skill published in the GitHub repository znlgis/opengis-skills (61 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 2,479 once invoked, about $0.0004 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 skills, from other repositories
typescript-advanced-types
Master TypeScript's advanced type system including generics, conditional types, mapped types, template literals, and utility types for building type-safe applications. Use when implementing complex type logic, creating reusable type utilities, or ensuring compile-time type safety in TypeScript projects.
bnb-chain-toolkit-guide
Guide to the BNB Chain Toolkit — a modular TypeScript toolkit for building, deploying, and interacting with smart contracts on BNB Chain. Includes BEP-20 token utilities, DeFi integrations, wallet management, and cross-chain bridging. Built for BNB Chain Hackathon by the Sperax team.
solana-toolkit-guide
Guide to the Solana Wallet Toolkit — vanity address generation with multi-threaded search, official Solana Labs libraries, Rust and TypeScript implementations. Includes wallet generation, custom address prefixes, and OG names on the blockchain.
silo-extension-builder
Help the user design, write, compile, and install a Silo extension from a natural-language description. The extension follows the same format as any publishable Silo extension and can be shared via npm or a tarball URL when ready.
javascript-sandbox
Best practices for using the clodex built-in JavaScript sandbox for browser debugging, fetched-data processing, attachments, and mini-app orchestration within its bundled capability boundary.
openmanus
Use OpenManus as an external autonomous Python agent for long-running research, browser-style exploration, data analysis, or multi-step execution tasks from inside a mounted workspace.