@dcrays/dcgchat 0.4.7 → 0.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/bot.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcrays/dcgchat",
3
- "version": "0.4.7",
3
+ "version": "0.4.8",
4
4
  "type": "module",
5
5
  "description": "OpenClaw channel plugin for 书灵墨宝 (WebSocket)",
6
6
  "main": "index.ts",
package/src/bot.ts CHANGED
@@ -241,7 +241,7 @@ export async function handleDcgchatMessage(msg: InboundMessage, accountId: strin
241
241
  const workspaceDir = getWorkspaceDir()
242
242
  const skill = msg.content.skills_scope[0]
243
243
  const skillDir = `${workspaceDir}/skills/${skill.skill_code}`
244
- const skillText = `在目录"${skillDir}"下读取并使用技能"${skill.skill_code}",`
244
+ const skillText = `用户选择使用此技能:"${skill.skill_code}",技能路径是:"${skillDir}",在目录下查找并`
245
245
  text = skill.skill_code ? `${skillText} ${text}` : text
246
246
  dcgLogger(`skill: text: ${text}`)
247
247
  }