📦 Template Tool — Template 工具
v1.0.0Process text templates with variable substitution. Use for generating dynamic content from template files.
0· 0·0 当前·0 累计
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install template-tool
镜像加速npx clawhub@latest install template-tool --registry https://cn.longxiaskill.com✓ 镜像可用
技能文档
模板 - 文本模板处理器 用提供的值替换模板文件中的占位符。支持变量替换,具有可配置的分隔符,用于内容生成。 用法:template-tool [选项] <模板文件> [key=value...] 选项 -d DELIM:使用自定义分隔符(默认:{{ }}) -o FILE:输出到文件 示例 template-tool greeting.txt name=World template-tool report.md title="Annual Report" year=2026 echo "Hello {{name}}" | template-tool name=Jack