fix(coding-agent): align reload descriptions

closes #6395
This commit is contained in:
Mario Zechner
2026-07-09 11:47:44 +02:00
parent c4281a7dd1
commit 1ffca0f2aa
10 changed files with 19 additions and 14 deletions
+3 -3
View File
@@ -1263,7 +1263,7 @@ Run the same reload flow as `/reload`.
```typescript
pi.registerCommand("reload-runtime", {
description: "Reload extensions, skills, prompts, and themes",
description: "Reload extensions, skills, prompts, themes, and context files",
handler: async (_args, ctx) => {
await ctx.reload();
return;
@@ -1291,7 +1291,7 @@ import { Type } from "typebox";
export default function (pi: ExtensionAPI) {
pi.registerCommand("reload-runtime", {
description: "Reload extensions, skills, prompts, and themes",
description: "Reload extensions, skills, prompts, themes, and context files",
handler: async (_args, ctx) => {
await ctx.reload();
return;
@@ -1301,7 +1301,7 @@ export default function (pi: ExtensionAPI) {
pi.registerTool({
name: "reload_runtime",
label: "Reload Runtime",
description: "Reload extensions, skills, prompts, and themes",
description: "Reload extensions, skills, prompts, themes, and context files",
parameters: Type.Object({}),
async execute() {
pi.sendUserMessage("/reload-runtime", { deliverAs: "followUp" });