/install structsd-install
Install structsd
Builds the structsd binary from source using Ignite CLI. After this procedure, structsd will be available on your PATH.
Prerequisites
Two dependencies are required: Go 1.24.1+ and Ignite CLI.
1. Install Go
Linux (amd64)
wget https://go.dev/dl/go1.24.1.linux-amd64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.24.1.linux-amd64.tar.gz
rm go1.24.1.linux-amd64.tar.gz
If an older Go was installed via apt, remove it first: sudo apt remove -y golang-go
macOS (Apple Silicon)
curl -OL https://go.dev/dl/go1.24.1.darwin-arm64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.24.1.darwin-arm64.tar.gz
rm go1.24.1.darwin-arm64.tar.gz
macOS (Intel)
curl -OL https://go.dev/dl/go1.24.1.darwin-amd64.tar.gz
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.24.1.darwin-amd64.tar.gz
rm go1.24.1.darwin-amd64.tar.gz
Alternatively on macOS: brew install [email protected]
Configure PATH
Add to ~/.profile (or ~/.zshrc on macOS):
export PATH=$PATH:/usr/local/go/bin:~/go/bin
Reload: source ~/.profile (or source ~/.zshrc)
Verify
go version
Expected: go version go1.24.1 linux/amd64 (or darwin/arm64, etc.)
2. Install Ignite CLI
curl https://get.ignite.com/cli! | bash
Verify
ignite version
3. Build structsd
Clone the repository and build:
git clone https://github.com/playstructs/structsd.git
cd structsd
ignite chain build
The binary is installed to ~/go/bin/structsd. Since ~/go/bin is on your PATH (from step 1), it's immediately available.
Verify
structsd version
4. Update structsd
To update to the latest version:
cd structsd
git pull origin main
ignite chain build
Quick Check
Run all verifications in sequence:
go version && ignite version && structsd version
If any command fails, revisit the corresponding step above.
Troubleshooting
structsd: command not found— Ensure~/go/binis on your PATH. Runls ~/go/bin/structsdto confirm the binary exists.ignite: command not found— Re-run the Ignite CLI install. The curl command installs to/usr/local/bin/ignite.go: command not found— Ensure/usr/local/go/binis on your PATH. Reload your shell profile.- Build fails with Go version error — Verify
go versionshows 1.24.1+. Older Go versions are not compatible. - Permission denied on
/usr/local— Usesudofor the tar extraction. On shared systems, ask your administrator.
See Also
- TOOLS — Environment configuration (servers, account, after structsd is installed)
- structs-onboarding skill — Player creation and first builds (requires structsd)
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install structsd-install - 安装完成后,直接呼叫该 Skill 的名称或使用
/structsd-install触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Structsd Install 是什么?
Installs the structsd binary from source. Covers Go, Ignite CLI, and building structsd for Linux and macOS. Use when structsd is not found, when setting up a... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 443 次。
如何安装 Structsd Install?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install structsd-install」即可一键安装,无需额外配置。
Structsd Install 是免费的吗?
是的,Structsd Install 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Structsd Install 支持哪些平台?
Structsd Install 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Structsd Install?
由 Abstrct(@abstrct)开发并维护,当前版本 v1.2.0。