Unified Agent + reusable Go agent core.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: add runtime commands docs

Lyric fc8e8179 9b86f3fd

+196
+8
web/vitepress/docs/.vitepress/i18n.ts
··· 96 96 } 97 97 }, 98 98 { 99 + slug: 'runtime-commands', 100 + text: { 101 + en: 'Commands', 102 + zh: '命令', 103 + ja: 'コマンド' 104 + } 105 + }, 106 + { 99 107 slug: 'subagents', 100 108 text: { 101 109 en: 'Subagents',
+1
web/vitepress/docs/guide/docs-map.md
··· 17 17 - [TODO and Heartbeat](/guide/todo-and-heartbeat) 18 18 - [Skills](/guide/skills) 19 19 - [Built-in Tools](/guide/built-in-tools) 20 + - [Commands](/guide/runtime-commands) 20 21 - [Subagents](/guide/subagents) 21 22 - [ACP](/guide/acp) 22 23 - [MCP](/guide/mcp)
+61
web/vitepress/docs/guide/runtime-commands.md
··· 1 + --- 2 + title: Commands 3 + description: Commands supported by chat, Console, and channel runtimes. 4 + --- 5 + 6 + # Commands 7 + 8 + Commands are messages that start with `/` inside interactive chat, Console tasks, or channel runtimes. 9 + 10 + > In Slack, `/` triggers Slack's own command system, so add a leading space before `/`, for example ` /model`. 11 + > 12 + > In Slack group chats, commands must explicitly address the bot. In Telegram group chats, normal bot commands such as `/model@BotName` are supported. 13 + 14 + ## Common Commands 15 + 16 + These commands are available in CLI chat, Console Web, Telegram, Slack, LINE, and Lark. 17 + 18 + | Command | What it does | 19 + |---|---| 20 + | `/help` | Lists currently available commands. | 21 + | `/model` | Shows the current model. | 22 + | `/skill` | Shows current skills. | 23 + | `/workspace` | Shows the current workspace directory. | 24 + 25 + For `/workspace`, these forms are supported: 26 + 27 + | Command | What it does | 28 + |---|---| 29 + | `/workspace` | Shows the current workspace directory. | 30 + | `/workspace attach <dir>` | Attaches or replaces the workspace directory. | 31 + | `/workspace detach` | Detaches the current workspace. | 32 + 33 + For `/model`, these forms are supported: 34 + 35 + | Command | What it does | 36 + |---|---| 37 + | `/model` | Shows the current model. | 38 + | `/model set <profile_name>` | Switches the current model. | 39 + 40 + ## CLI Chat Only 41 + 42 + These commands are available in `mistermorph chat`. 43 + 44 + | Command | What it does | 45 + |---|---| 46 + | `/exit` | Exits the chat session. | 47 + | `/quit` | Exits the chat session. | 48 + | `/reset` | Clears the current conversation history. | 49 + | `/memory` | Displays the current project memory. | 50 + | `/remember <content>` | Adds a long-term memory item for the current project. | 51 + | `/init` | Generates an `AGENTS.md` file for the current project. | 52 + | `/update` | Regenerates `AGENTS.md` and overwrites the existing file. | 53 + 54 + ## Telegram Only 55 + 56 + These commands are only available in Telegram. 57 + 58 + | Command | What it does | 59 + |---|---| 60 + | `/id` | Shows the current Telegram chat id and chat type. | 61 + | `/reset` | Clears chat history, sticky skills, known mentions, and init state for that chat. |
+1
web/vitepress/docs/ja/guide/docs-map.md
··· 17 17 - [TODO と Heartbeat](/ja/guide/todo-and-heartbeat) 18 18 - [Skills](/ja/guide/skills) 19 19 - [組み込みツール](/ja/guide/built-in-tools) 20 + - [コマンド](/ja/guide/runtime-commands) 20 21 - [Subagents](/ja/guide/subagents) 21 22 - [ACP](/ja/guide/acp) 22 23 - [MCP](/ja/guide/mcp)
+61
web/vitepress/docs/ja/guide/runtime-commands.md
··· 1 + --- 2 + title: コマンド 3 + description: chat、Console、channel runtime で使えるコマンド。 4 + --- 5 + 6 + # コマンド 7 + 8 + コマンドは、interactive chat、Console task、channel runtime の中で送る、`/` で始まるメッセージです。 9 + 10 + > Slack では `/` が Slack 自身の command system を起動するため、`/` の前に空白を入れます。例: ` /model` 11 + > 12 + > Slack の group chat では bot を明示してコマンドを送る必要があります。Telegram の group chat では `/model@BotName` のような通常の bot command を使えます。 13 + 14 + ## 共通コマンド 15 + 16 + 次のコマンドは CLI chat、Console Web、Telegram、Slack、LINE、Lark で使えます。 17 + 18 + | コマンド | 内容 | 19 + |---|---| 20 + | `/help` | 現在使えるコマンドを表示します。 | 21 + | `/model` | 現在の model を表示します。 | 22 + | `/skill` | 現在の skills を表示します。 | 23 + | `/workspace` | 現在の workspace directory を表示します。 | 24 + 25 + `/workspace` は次の形に対応しています。 26 + 27 + | コマンド | 内容 | 28 + |---|---| 29 + | `/workspace` | 現在の workspace directory を表示します。 | 30 + | `/workspace attach <dir>` | workspace directory を設定または置き換えます。 | 31 + | `/workspace detach` | 現在の workspace を外します。 | 32 + 33 + `/model` は次の形に対応しています。 34 + 35 + | コマンド | 内容 | 36 + |---|---| 37 + | `/model` | 現在の model を表示します。 | 38 + | `/model set <profile_name>` | 現在の model を切り替えます。 | 39 + 40 + ## CLI Chat 専用コマンド 41 + 42 + 次のコマンドは `mistermorph chat` でのみ使えます。 43 + 44 + | コマンド | 内容 | 45 + |---|---| 46 + | `/exit` | chat session を終了します。 | 47 + | `/quit` | chat session を終了します。 | 48 + | `/reset` | 現在の conversation history を消します。 | 49 + | `/memory` | 現在の project memory を表示します。 | 50 + | `/remember <content>` | 現在の project に long-term memory を追加します。 | 51 + | `/init` | 現在の project に `AGENTS.md` を生成します。 | 52 + | `/update` | `AGENTS.md` を再生成し、既存ファイルを上書きします。 | 53 + 54 + ## Telegram 専用コマンド 55 + 56 + 次のコマンドは Telegram でのみ使えます。 57 + 58 + | コマンド | 内容 | 59 + |---|---| 60 + | `/id` | 現在の Telegram chat id と chat type を表示します。 | 61 + | `/reset` | その chat の履歴、sticky skills、known mentions、init state を消します。 |
+1
web/vitepress/docs/zh/guide/docs-map.md
··· 17 17 - [待办事项与 Heartbeat](/zh/guide/todo-and-heartbeat) 18 18 - [Skills](/zh/guide/skills) 19 19 - [内置工具](/zh/guide/built-in-tools) 20 + - [命令](/zh/guide/runtime-commands) 20 21 - [Subagents](/zh/guide/subagents) 21 22 - [ACP](/zh/guide/acp) 22 23 - [MCP](/zh/guide/mcp)
+63
web/vitepress/docs/zh/guide/runtime-commands.md
··· 1 + --- 2 + title: 命令 3 + description: Chat、Console 和其他 Channels 支持的命令。 4 + --- 5 + 6 + # 命令 7 + 8 + 命令是在交互式 chat、Console task 或通道 runtime 里发送的以 `/` slash 符号开头的命令。 9 + 10 + > 在 Slack 中,由于 `/` 会触发 Slack 自己的命令,所以需要在 `/` 前面加一个空格。例如 ` /model`。 11 + > 12 + > Slack 群聊里,命令需要明确提到 bot。Telegram 群聊可以使用普通 bot command,例如 `/model@BotName`。 13 + 14 + ## 通用命令 15 + 16 + 这些命令在 CLI chat、Console Web、Telegram、Slack、LINE 和 Lark 中可用。 17 + 18 + | 命令 | 作用 | 19 + |---|---| 20 + | `/help` | 列出当前可用的运行时命令。 | 21 + | `/model` | 查看当前模型。 | 22 + | `/skill` | 显示当前 skills。 | 23 + | `/workspace` | 查看当前 workspace 目录。 | 24 + 25 + 其中, 26 + 27 + 对于 `/workspace`,支持如下参数: 28 + 29 + | 命令 | 作用 | 30 + |---|---| 31 + | `/workspace` | 无参数,查看当前 workspace 目录。 | 32 + | `/workspace attach <dir>` | 绑定或替换 workspace 目录。 | 33 + | `/workspace detach` | 解绑当前 workspace。 | 34 + 35 + 对于 `/model`,支持如下参数: 36 + 37 + | 命令 | 作用 | 38 + |---|---| 39 + | `/model` | 查看当前模型。 | 40 + | `/model set <profile_name>` | 切换当前模型。 | 41 + 42 + ## CLI Chat 特有的命令 43 + 44 + 这些命令只在 `mistermorph chat` 中可用。 45 + 46 + | 命令 | 作用 | 47 + |---|---| 48 + | `/exit` | 退出 chat session。 | 49 + | `/quit` | 退出 chat session。 | 50 + | `/reset` | 清空当前对话历史。 | 51 + | `/memory` | 显示当前项目记忆。 | 52 + | `/remember <content>` | 为当前项目新增一条长期记忆。 | 53 + | `/init` | 为当前项目生成 `AGENTS.md`。 | 54 + | `/update` | 重新生成 `AGENTS.md`,并覆盖已有文件。 | 55 + 56 + ## Telegram 特有的命令 57 + 58 + 这些命令只在 Telegram 中可用。 59 + 60 + | 命令 | 作用 | 61 + |---|---| 62 + | `/id` | 显示当前 Telegram chat id 和 chat type。 | 63 + | `/reset` | 清空该 chat 的聊天历史、sticky skills、已知 mention 和 init 状态。 |