在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用gleam-sync
星标0
分支0
更新时间2026年1月30日 07:23
Rebuild Gleam protocol and reload Elixir modules
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Rebuild Gleam protocol and reload Elixir modules
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | gleam-sync |
| description | Rebuild Gleam protocol and reload Elixir modules |
Synchronize Gleam protocol changes with Elixir after modifying files in levee_protocol/src/.
cd levee_protocol && gleam build --target erlang && cd .. && mix compile --force
After sync, verify the changes:
# Run Gleam tests
cd levee_protocol && gleam test
# Run Elixir tests that use the protocol
mix test test/levee/protocol/ test/levee/documents/
.gleam file in levee_protocol/src/git pull that includes Gleam changesIf Elixir doesn't see Gleam changes:
# Clean rebuild
cd levee_protocol && gleam clean && gleam build --target erlang
cd .. && mix compile --force
If module not found errors persist:
# Check BEAM files exist
ls levee_protocol/build/dev/erlang/levee_protocol/ebin/*.beam