Agent Skills
› willjim/KIRI-Maker
› kirimaker-local
kirimaker-local
GitHub自动在本地启动 KIRI Maker 3DGS Web 应用,无需安装依赖,直接返回可点击的 localhost 地址。支持后台运行、端口自动选择及基础故障排查,适用于快速预览和测试 3DGS 功能。
Trigger Scenarios
用户要求启动或打开 KIRI Maker
需要在本地运行 3DGS 应用进行测试
Install
npx skills add willjim/KIRI-Maker --skill kirimaker-local -g -y
SKILL.md
Frontmatter
{
"name": "kirimaker-local",
"description": "Launch the bundled KIRI Maker 3DGS web app locally with no package installation and return its clickable localhost address. Use when a user asks to run, start, open, or launch KIRI Maker locally."
}
Run KIRI Maker locally
Start the bundled site immediately. Do not ask the user to clone a repository, install npm packages, or choose a port.
Start
- Run
python3 scripts/serve.pyfrom this skill directory as a long-running/background process. Use the agent's persistent process mechanism so the server remains alive after the command returns. - Read the single startup line in the form
KIRI Maker: http://127.0.0.1:<port>/. - Verify the address responds successfully. If the process tool already confirms a successful request, do not repeat the check.
- Reply in the user's language with a clickable Markdown link to that exact address. Keep the response short and state that closing/stopping the running process stops the site.
The launcher chooses a free loopback port, serves the expanded files in assets/ directly, and implements the /resolve endpoint. It needs only Python 3's standard library. Internet access is still required in the browser for shared models and CDN libraries.
Troubleshoot
- If
python3is unavailable, trypython scripts/serve.py. - If startup fails, report the actual error; do not install unrelated services or replace the launcher with Wrangler.
- If the page opens but external libraries or models fail, explain that the browser must be online and able to reach the referenced CDN or model host.
- Never expose the server beyond
127.0.0.1unless the user explicitly requests LAN access.
Version History
- 8341bb4 Current 2026-08-12 09:08


