主 Agent 提示词
管理员全局主提示词不可被覆盖;用户提示词和当前对话提示词只会追加在后面。
我的主提示词
只影响当前用户自己的主 Agent 长期偏好。
当前对话附加提示词
只作用于 master-agent 当前对话。
当前对话
{!clawAvailability.selectable ? (
Claw Runtime 当前不可用
{clawAvailability.reasonLabel}
{storedClawOverrideUnavailable ? (
当前对话之前保存过 Claw Runtime,运行时会自动回退到默认后端。
) : null}
) : null}
组合预览
主 Agent 实际读取时会先遵守管理员全局主提示词,再追加你的私有提示词和当前对话附加提示词。
{promptPreview}
新增记忆
支持自动沉淀后的手动增补、编辑和归档。项目记忆需要绑定到真实项目,而不是 master-agent 会话本身。
{newMemory.scope === "project" ? (
setNewMemory((current) => ({ ...current, projectId: value }))}
placeholder="例如 wenshenapp"
/>
) : null}
setNewMemory((current) => ({ ...current, title: value }))}
placeholder="例如:项目进度"
/>
项目记忆
当前用户在不同项目里沉淀下来的进度、决策、阻塞与调研记忆。
{projectMemories.length === 0 ? (
暂无项目记忆。
) : null}
{projectMemories.map((memory) => {
const draft = memoryDrafts[memory.memoryId] ?? draftFromMemory(memory);
return (
{memory.title}
{memoryScopeLabel(memory.scope)} · {memoryTypeLabel(memory.memoryType)}
{memory.projectId ? ` · ${memory.projectId}` : ""}
{memory.archived ? "已归档" : formatTimestampLabel(memory.updatedAt)}
updateMemoryDraft(memory.memoryId, (current) => ({ ...current, title: value }))
}
placeholder="记忆标题"
/>
);
})}
通用记忆
当前用户自己的长期偏好与稳定约束。
{globalMemories.length === 0 ? (
暂无通用记忆。
) : null}
{globalMemories.map((memory) => {
const draft = memoryDrafts[memory.memoryId] ?? draftFromMemory(memory);
return (
{memory.title}
{memoryScopeLabel(memory.scope)} · {memoryTypeLabel(memory.memoryType)}
{memory.archived ? "已归档" : formatTimestampLabel(memory.updatedAt)}
updateMemoryDraft(memory.memoryId, (current) => ({ ...current, title: value }))
}
placeholder="记忆标题"
/>
);
})}
{message ? (
{message}
) : null}
);
}