@foxden-app/foxclaw 0.3.19 → 0.4.1
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.
- package/.env.example +4 -2
- package/README.md +5 -5
- package/README_EN.md +5 -5
- package/dist/auth/mirror.d.ts +25 -1
- package/dist/auth/mirror.js +96 -8
- package/dist/codex_app/client.d.ts +3 -1
- package/dist/codex_app/client.js +14 -3
- package/dist/controller/controller.d.ts +12 -2
- package/dist/controller/controller.js +67 -11
- package/dist/i18n.d.ts +20 -2
- package/dist/i18n.js +20 -2
- package/dist/main.js +89 -15
- package/dist/types.d.ts +19 -0
- package/docs/agent-assisted-install.md +3 -2
- package/docs/install-for-beginners.md +10 -2
- package/docs/troubleshooting.md +12 -0
- package/docs/user-manual.md +4 -4
- package/docs/zh/agent-assisted-install.md +3 -2
- package/docs/zh/foxclaw-skill.md +3 -1
- package/docs/zh/install-for-beginners.md +10 -2
- package/docs/zh/troubleshooting.md +12 -0
- package/docs/zh/user-manual.md +4 -4
- package/package.json +1 -1
- package/skills/foxclaw/SKILL.md +5 -2
- package/skills/foxclaw/references/telegram-setup.md +4 -2
|
@@ -34,6 +34,7 @@ Behavior:
|
|
|
34
34
|
- `TG_ALLOWED_CHAT_ID` + `TG_ALLOWED_TOPIC_ID`: that topic becomes the default scope
|
|
35
35
|
- Private chat with `TG_ALLOWED_USER_ID` still works in every mode above
|
|
36
36
|
- Multiple tokens start independent Codex runtimes in one FoxClaw service; group messages must mention or reply to the intended bot
|
|
37
|
+
- Each bot keeps its own Codex home, sessions, and current auth selection; verify it privately with `/status` and `/auth`
|
|
37
38
|
|
|
38
39
|
If multiple bots share one group, keep the same `TG_ALLOWED_CHAT_ID`; use explicit `@botname` mentions or replies. Separate topics are still useful for organization.
|
|
39
40
|
|
|
@@ -71,8 +72,9 @@ If the bridge is still polling, it may consume the update before you inspect it.
|
|
|
71
72
|
|
|
72
73
|
After the bridge is started:
|
|
73
74
|
|
|
74
|
-
1. Private chat mode:
|
|
75
|
-
- send `/help` to the bot in private chat
|
|
75
|
+
1. Private chat mode:
|
|
76
|
+
- send `/help` to the bot in private chat
|
|
77
|
+
- for each configured bot, send `/status` and `/auth` and confirm its isolated runtime is shown
|
|
76
78
|
- send one plain-language message such as `show /status`
|
|
77
79
|
2. Group mode:
|
|
78
80
|
- send `/help` in the configured group or default topic
|