mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
8cac29d9bb
TOOLS.md was intentionally removed in 21d60f6 and #771, as tools are
now provided to the LLM via JSON schema through ToProviderDefs().
These references were missed during that cleanup.
Suggested by @yinwm in #1355.
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
469 B
Go
30 lines
469 B
Go
package openclaw
|
|
|
|
var migrateableFiles = []string{
|
|
"AGENTS.md",
|
|
"SOUL.md",
|
|
"USER.md",
|
|
"HEARTBEAT.md",
|
|
}
|
|
|
|
var migrateableDirs = []string{
|
|
"memory",
|
|
"skills",
|
|
}
|
|
|
|
var supportedChannels = map[string]bool{
|
|
"whatsapp": true,
|
|
"telegram": true,
|
|
"feishu": true,
|
|
"discord": true,
|
|
"maixcam": true,
|
|
"qq": true,
|
|
"dingtalk": true,
|
|
"slack": true,
|
|
"matrix": true,
|
|
"line": true,
|
|
"onebot": true,
|
|
"wecom": true,
|
|
"wecom_app": true,
|
|
}
|