Appearance
创建自定义 OpenClaw 技能。
my-plugin/ ├── SKILL.md ├── index.js └── package.json
export default { name: 'my-plugin', description: '我的自定义技能', async execute(input) { return `收到:${input}`; } }
openclaw plugins install ./my-plugin
查看 官方插件开发指南