feat(knowledge): rebuild the project notes panel as Project knowledge (#2973)
The panel stored notes, todos and plans inside one shared JSON file that six unrelated domains also wrote to, synchronised itself through window CustomEvents, and could only read plans. It is now Project knowledge: server-owned storage with explicit routes, a store with rollback, a section sidebar, plans that open and edit in place, and search across all of it. Notes and plans the user pins travel with every message sent in that project. Pinning is project state, not an attachment to one message, so it holds until unpinned and the work status panel names what is riding along and can detach it. Agent memory is added alongside, in two scopes: what is true about the user, and what is true about this codebase. The split is not cosmetic — a wrong project fact costs one project and is noticed, while a wrong global fact quietly shapes every session everywhere and the user has no code to check it against. It stays separate from notes so an agent mistake cannot land in what the user wrote. Sessions receive an index of titles only; bodies are read on demand, because an index carrying full text grows until it crowds out the conversation. Deciding what a session must be told, and whether it has been told, now lives on the server. The client owned it before, which meant sessions started without a UI — scheduled tasks, sessions the agent dispatches — received nothing at all, and a tab's record of what it had sent outlived the conversation: after compaction the agent no longer held the block while the tab went on believing it did. What was delivered is recorded in the session's own metadata, and compaction restores it through the runtime that already restores pinned messages, in the same turn. Agent memory ships dark behind OPENCHAMBER_MEMORY_ENABLE: unset, there is no tool, no routes, no session index, no settings row and no panel tab. Absent rather than switched off, so nothing invites turning on a feature that has not been announced. Pinned notes and plans are unaffected and ship as normal.
This commit is contained in:
committed by
GitHub
parent
7611076436
commit
34e8a24b20
@@ -0,0 +1,199 @@
|
||||
/**
|
||||
* Client for the OpenChamber agent memory routes.
|
||||
*
|
||||
* The store is owned by the server (`packages/web/server/lib/agent-memory`).
|
||||
* This module only speaks HTTP and resolves no storage paths.
|
||||
*
|
||||
* Every function throws on failure. An authoritative read must never resolve to
|
||||
* an empty list a caller could mistake for "the agent remembers nothing" — that
|
||||
* reading is exactly what would make the user think memory had been lost.
|
||||
*
|
||||
* A 404 is the one exception, and it means the feature is switched off rather
|
||||
* than that the entry is missing: the server disables the whole surface, so
|
||||
* callers translate it into `disabled` instead of an error.
|
||||
*/
|
||||
|
||||
import { createProjectIdFromPath } from './projectId';
|
||||
import { runtimeFetch } from './runtime-fetch';
|
||||
|
||||
export type AgentMemoryType = 'fact' | 'preference' | 'reference';
|
||||
export type AgentMemoryScope = 'global' | 'project';
|
||||
|
||||
export interface AgentMemoryEntry {
|
||||
id: string;
|
||||
title: string;
|
||||
body: string;
|
||||
type: AgentMemoryType;
|
||||
createdAt: number;
|
||||
updatedAt: number;
|
||||
/**
|
||||
* Reads as an instruction to the model rather than a fact. Kept in the store
|
||||
* and shown here, but withheld from what sessions are told.
|
||||
*/
|
||||
flagged?: boolean;
|
||||
/** The session this was learned in, when the agent recorded one. */
|
||||
sessionId?: string;
|
||||
}
|
||||
|
||||
interface AgentMemorySnapshot {
|
||||
global: AgentMemoryEntry[];
|
||||
project: AgentMemoryEntry[];
|
||||
/**
|
||||
* A scope that failed to load. Kept separate from an empty list so the panel
|
||||
* can say "could not load" rather than showing an empty tab that reads as
|
||||
* "the agent has forgotten everything".
|
||||
*/
|
||||
globalFailed: boolean;
|
||||
projectFailed: boolean;
|
||||
}
|
||||
|
||||
/** Mirrors the server's clamps, so the editor stops where storage would cut. */
|
||||
export const AGENT_MEMORY_TITLE_MAX_LENGTH = 120;
|
||||
export const AGENT_MEMORY_BODY_MAX_LENGTH = 2000;
|
||||
|
||||
/** Raised when the server reports the whole memory surface as switched off. */
|
||||
export class AgentMemoryDisabledError extends Error {
|
||||
constructor() {
|
||||
super('Agent memory is disabled');
|
||||
this.name = 'AgentMemoryDisabledError';
|
||||
}
|
||||
}
|
||||
|
||||
const BASE_PATH = '/api/agent-memory';
|
||||
|
||||
/**
|
||||
* Mirrors the server: the storage id comes from the project path, not from
|
||||
* `project.id`, because the path-derived id is what names the file on disk.
|
||||
*/
|
||||
const resolveMemoryProjectId = (projectPath: string | null | undefined): string => {
|
||||
const trimmed = typeof projectPath === 'string' ? projectPath.trim() : '';
|
||||
return trimmed ? createProjectIdFromPath(trimmed) : '';
|
||||
};
|
||||
|
||||
const scopeQuery = (scope: AgentMemoryScope, projectId: string): string => {
|
||||
if (scope === 'global') {
|
||||
return 'scope=global';
|
||||
}
|
||||
if (!projectId) {
|
||||
throw new Error('Project memory needs a resolvable project path');
|
||||
}
|
||||
return `scope=project&projectId=${encodeURIComponent(projectId)}`;
|
||||
};
|
||||
|
||||
interface ErrorPayload {
|
||||
error?: unknown;
|
||||
disabled?: unknown;
|
||||
}
|
||||
|
||||
/**
|
||||
* A 404 alone does not mean the feature is off — a deleted entry answers 404
|
||||
* too. Only the server's explicit `disabled` flag distinguishes them.
|
||||
*/
|
||||
const failed = async (response: Response, fallback: string): Promise<never> => {
|
||||
let payload: ErrorPayload | null = null;
|
||||
try {
|
||||
payload = await response.json() as ErrorPayload | null;
|
||||
} catch {
|
||||
// Fall through to the generic message.
|
||||
}
|
||||
if (response.status === 404 && payload?.disabled === true) {
|
||||
throw new AgentMemoryDisabledError();
|
||||
}
|
||||
const message = typeof payload?.error === 'string' && payload.error.trim()
|
||||
? payload.error
|
||||
: `${fallback} (${response.status})`;
|
||||
throw new Error(message);
|
||||
};
|
||||
|
||||
const parseEntry = (value: unknown): AgentMemoryEntry | null => {
|
||||
const record = value as Partial<AgentMemoryEntry> | null;
|
||||
if (!record || typeof record !== 'object') {
|
||||
return null;
|
||||
}
|
||||
if (typeof record.id !== 'string' || typeof record.title !== 'string' || typeof record.body !== 'string') {
|
||||
return null;
|
||||
}
|
||||
return {
|
||||
id: record.id,
|
||||
title: record.title,
|
||||
body: record.body,
|
||||
type: record.type === 'preference' || record.type === 'reference' ? record.type : 'fact',
|
||||
createdAt: typeof record.createdAt === 'number' ? record.createdAt : 0,
|
||||
updatedAt: typeof record.updatedAt === 'number' ? record.updatedAt : 0,
|
||||
...(record.flagged === true ? { flagged: true } : {}),
|
||||
...(typeof record.sessionId === 'string' ? { sessionId: record.sessionId } : {}),
|
||||
};
|
||||
};
|
||||
|
||||
const parseEntries = (value: unknown): AgentMemoryEntry[] => (
|
||||
Array.isArray(value) ? value.map(parseEntry).filter((entry): entry is AgentMemoryEntry => entry !== null) : []
|
||||
);
|
||||
|
||||
/**
|
||||
* Both scopes in one request. Two requests would let one scope render while the
|
||||
* other is still in flight, which reads as memory that has gone missing.
|
||||
*/
|
||||
export const fetchAgentMemory = async (
|
||||
projectPath: string | null,
|
||||
options: { signal?: AbortSignal } = {},
|
||||
): Promise<AgentMemorySnapshot> => {
|
||||
const projectId = resolveMemoryProjectId(projectPath);
|
||||
const query = projectId ? `?projectId=${encodeURIComponent(projectId)}` : '';
|
||||
const response = await runtimeFetch(`${BASE_PATH}/all${query}`, {
|
||||
cache: 'no-store',
|
||||
signal: options.signal,
|
||||
});
|
||||
if (!response.ok) {
|
||||
return failed(response, 'Failed to load agent memory');
|
||||
}
|
||||
|
||||
const payload = await response.json() as Record<string, unknown> | null;
|
||||
if (!payload || typeof payload !== 'object') {
|
||||
throw new Error('Malformed agent memory response');
|
||||
}
|
||||
return {
|
||||
global: parseEntries(payload.global),
|
||||
project: parseEntries(payload.project),
|
||||
globalFailed: payload.globalFailed === true,
|
||||
projectFailed: payload.projectFailed === true,
|
||||
};
|
||||
};
|
||||
|
||||
/** A user correction from the panel; the agent rewrites by saving again. */
|
||||
export const updateAgentMemory = async (
|
||||
scope: AgentMemoryScope,
|
||||
projectPath: string | null,
|
||||
memoryId: string,
|
||||
patch: { title?: string; body?: string; type?: AgentMemoryType },
|
||||
): Promise<AgentMemoryEntry> => {
|
||||
const query = scopeQuery(scope, resolveMemoryProjectId(projectPath));
|
||||
const response = await runtimeFetch(`${BASE_PATH}/${encodeURIComponent(memoryId)}?${query}`, {
|
||||
method: 'PATCH',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify(patch),
|
||||
});
|
||||
if (!response.ok) {
|
||||
return failed(response, 'Failed to save memory');
|
||||
}
|
||||
|
||||
const payload = await response.json() as { entry?: unknown } | null;
|
||||
const entry = parseEntry(payload?.entry);
|
||||
if (!entry) {
|
||||
throw new Error('Malformed agent memory response');
|
||||
}
|
||||
return entry;
|
||||
};
|
||||
|
||||
export const deleteAgentMemory = async (
|
||||
scope: AgentMemoryScope,
|
||||
projectPath: string | null,
|
||||
memoryId: string,
|
||||
): Promise<void> => {
|
||||
const query = scopeQuery(scope, resolveMemoryProjectId(projectPath));
|
||||
const response = await runtimeFetch(`${BASE_PATH}/${encodeURIComponent(memoryId)}?${query}`, {
|
||||
method: 'DELETE',
|
||||
});
|
||||
if (!response.ok) {
|
||||
await failed(response, 'Failed to delete memory');
|
||||
}
|
||||
};
|
||||
@@ -0,0 +1,74 @@
|
||||
import { describe, expect, test } from 'bun:test';
|
||||
|
||||
import { classifyMemory, countHighlightedMemories, memoryViewKey } from './agentMemoryBadges';
|
||||
import type { AgentMemoryEntry } from './agentMemoryApi';
|
||||
|
||||
const entry = (overrides: Partial<AgentMemoryEntry> = {}): AgentMemoryEntry => ({
|
||||
id: 'mem-1',
|
||||
title: 'Uses bun',
|
||||
body: 'Tests run with bun test.',
|
||||
type: 'fact',
|
||||
createdAt: 100,
|
||||
updatedAt: 100,
|
||||
...overrides,
|
||||
});
|
||||
|
||||
describe('classifying an entry against the last look', () => {
|
||||
test('an entry stored since the last look is new', () => {
|
||||
expect(classifyMemory(entry({ createdAt: 200, updatedAt: 200 }), 100)).toBe('new');
|
||||
});
|
||||
|
||||
test('an entry rewritten since the last look is changed, not new', () => {
|
||||
// The distinction matters: a memory the agent invented and one it quietly
|
||||
// rewrote need different attention.
|
||||
expect(classifyMemory(entry({ createdAt: 50, updatedAt: 200 }), 100)).toBe('changed');
|
||||
});
|
||||
|
||||
test('an untouched entry carries no badge', () => {
|
||||
expect(classifyMemory(entry({ createdAt: 50, updatedAt: 50 }), 100)).toBeNull();
|
||||
});
|
||||
|
||||
test('a rewrite the user already saw carries no badge', () => {
|
||||
expect(classifyMemory(entry({ createdAt: 10, updatedAt: 50 }), 100)).toBeNull();
|
||||
});
|
||||
|
||||
test('everything is new before the user has ever looked', () => {
|
||||
expect(classifyMemory(entry({ createdAt: 1, updatedAt: 1 }), 0)).toBe('new');
|
||||
});
|
||||
|
||||
test('an entry stored exactly at the last look is not re-announced', () => {
|
||||
expect(classifyMemory(entry({ createdAt: 100, updatedAt: 100 }), 100)).toBeNull();
|
||||
});
|
||||
});
|
||||
|
||||
describe('counting what deserves a glance', () => {
|
||||
test('counts new and changed together', () => {
|
||||
const count = countHighlightedMemories([
|
||||
entry({ id: 'a', createdAt: 200, updatedAt: 200 }),
|
||||
entry({ id: 'b', createdAt: 50, updatedAt: 200 }),
|
||||
entry({ id: 'c', createdAt: 50, updatedAt: 50 }),
|
||||
], 100);
|
||||
|
||||
expect(count).toBe(2);
|
||||
});
|
||||
|
||||
test('an untouched store counts nothing', () => {
|
||||
expect(countHighlightedMemories([entry({ createdAt: 1, updatedAt: 1 })], 100)).toBe(0);
|
||||
});
|
||||
});
|
||||
|
||||
describe('where each scope keeps its mark', () => {
|
||||
test('global has one mark', () => {
|
||||
expect(memoryViewKey('global', '/tmp/anything')).toBe('global');
|
||||
});
|
||||
|
||||
test('each project keeps its own', () => {
|
||||
// One shared project mark would let opening one project silently clear
|
||||
// another project's badges.
|
||||
expect(memoryViewKey('project', '/tmp/a')).not.toBe(memoryViewKey('project', '/tmp/b'));
|
||||
});
|
||||
|
||||
test('a project scope with no path never collides with global', () => {
|
||||
expect(memoryViewKey('project', null)).not.toBe('global');
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,44 @@
|
||||
/**
|
||||
* What is new or changed in agent memory since the user last looked.
|
||||
*
|
||||
* Derived from the entry's own timestamps against a per-scope "last viewed"
|
||||
* mark, so the store carries no review state and the user is never asked to
|
||||
* confirm anything. Looking at the tab is the acknowledgement.
|
||||
*
|
||||
* The two badges are worth separating: a memory the agent has just invented
|
||||
* and one it has quietly rewritten need different attention, and lumping them
|
||||
* together as "new" would hide every correction.
|
||||
*/
|
||||
|
||||
import type { AgentMemoryEntry, AgentMemoryScope } from './agentMemoryApi';
|
||||
|
||||
export type MemoryBadge = 'new' | 'changed' | null;
|
||||
|
||||
/**
|
||||
* The key a scope's mark is stored under. Project marks are keyed by path
|
||||
* because each project has its own store — one shared mark would let opening
|
||||
* one project silently clear another's badges.
|
||||
*/
|
||||
export const memoryViewKey = (scope: AgentMemoryScope, projectPath: string | null): string => (
|
||||
scope === 'global' ? 'global' : `project:${projectPath ?? ''}`
|
||||
);
|
||||
|
||||
/**
|
||||
* `viewedAt` of 0 means the user has never opened this scope. Everything stored
|
||||
* is then genuinely new to them, which is what a first look should show.
|
||||
*/
|
||||
export const classifyMemory = (entry: AgentMemoryEntry, viewedAt: number): MemoryBadge => {
|
||||
if (entry.createdAt > viewedAt) {
|
||||
return 'new';
|
||||
}
|
||||
// Only a change the user has not seen counts. An entry rewritten before their
|
||||
// last look was already accounted for by that look.
|
||||
if (entry.updatedAt > viewedAt) {
|
||||
return 'changed';
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
export const countHighlightedMemories = (entries: AgentMemoryEntry[], viewedAt: number): number => (
|
||||
entries.reduce((total, entry) => (classifyMemory(entry, viewedAt) ? total + 1 : total), 0)
|
||||
);
|
||||
@@ -155,6 +155,8 @@ export type DesktopSettings = {
|
||||
showOpenCodeUpdateNotifications?: boolean;
|
||||
agentControlToolEnabled?: boolean;
|
||||
agentWebToolEnabled?: boolean;
|
||||
agentMemoryToolEnabled?: boolean;
|
||||
agentMemoryFeatureAvailable?: boolean;
|
||||
optimizeSystemPrompt?: boolean;
|
||||
openCodeUpdateToastDismissedVersion?: string;
|
||||
showToolFileIcons?: boolean;
|
||||
|
||||
@@ -951,6 +951,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'OpenChamber-Web-Werkzeug',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': 'Das OpenChamber-Web-Werkzeug aktivieren',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': 'Lässt Agenten die Seite im Browser-Panel von OpenChamber ansehen und bedienen: eine URL öffnen, den Inhalt lesen, klicken, tippen, scrollen und zwischen mobiler und Desktop-Ansicht wechseln. Fügt jeder Sitzung eine kleine Werkzeugbeschreibung hinzu. Gilt nach einem Neustart von OpenCode.',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': 'Agenten-Gedächtniswerkzeug',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': 'Agenten-Gedächtniswerkzeug',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': 'Lässt Agenten Gelerntes über Sitzungen hinweg behalten, in zwei Speichern: was über Sie zutrifft und was über das jeweilige Projekt zutrifft. Sitzungen erhalten die gespeicherten Titel, damit der Agent bei Bedarf einen Eintrag lesen kann. Beim Ausschalten entfallen Werkzeug, Gedächtnis-Tab und Sitzungsindex. Gilt nach einem Neustart von OpenCode.',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': 'Optionaler absoluter Pfad zur',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': 'Binary.',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'OpenCode Binary-Pfad',
|
||||
|
||||
@@ -1306,6 +1306,7 @@ export const dict = {
|
||||
'planView.file.defaultName': 'plan',
|
||||
'planView.title.default': 'Plan',
|
||||
'planView.error.saveFailed': 'Speichern fehlgeschlagen',
|
||||
'planView.error.loadFailed': 'Plan konnte nicht geladen werden',
|
||||
'planView.error.previewUnavailable': 'Vorschau nicht verfügbar',
|
||||
'planView.error.switchToEditMode': 'Wechseln Sie zum Bearbeitungsmodus, um das Problem zu beheben.',
|
||||
'planView.error.writeFailed': 'Schreiben fehlgeschlagen',
|
||||
@@ -1388,11 +1389,46 @@ export const dict = {
|
||||
'diffView.hunk.unsupported': 'Das Staging einzelner Stücke wird in dieser Laufzeitumgebung nicht unterstützt.',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': 'Plan',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': 'Wähle ein Projekt aus, um Notizen und Aufgaben hinzuzufügen.',
|
||||
'rightSidebar.contextNotesTodo.notes.title': 'Schnelle Notizen - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': 'Kontext, Erinnerungen oder Links festhalten',
|
||||
'rightSidebar.contextNotesTodo.todo.title': 'Aufgaben',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count} Element',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count} Elemente',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': 'Notiz hinzufügen',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': 'Noch keine Notizen. Halte Kontext, Erinnerungen oder Links fest.',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': 'Notiz aufklappen',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': 'Notiz zuklappen',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': 'Notiz löschen',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': 'An Agent-Kontext anheften',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': 'Vom Agent-Kontext lösen',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': 'Aus dem Chat',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': 'Vom Agenten',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': 'Suchen',
|
||||
'rightSidebar.contextNotesTodo.search.clear': 'Suche zurücksetzen',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': 'Nichts passt zu "{query}".',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': 'Notiz konnte nicht gelöscht werden',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': 'Notiz konnte nicht erstellt werden',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': 'Notizen',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': 'Todo',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': 'Pläne',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': 'Zurück zu den Plänen',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': 'Gedächtnis',
|
||||
'rightSidebar.contextNotesTodo.sections.label': 'Bereiche des Projektkontexts',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': 'Breite der Bereichsleiste ändern',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': 'Projekt',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': 'Gedächtnisbereich',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': 'Über Sie',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': 'Fakt',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': 'neu',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': 'Vom Agenten zurückgehalten — liest sich wie eine Anweisung',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': 'geändert',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': 'Präferenz',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': 'Verweis',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': 'Diesen Eintrag vergessen',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': 'Titel des Eintrags',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': 'Text des Eintrags',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': 'Eintrag konnte nicht gespeichert werden',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': 'Eintrag konnte nicht vergessen werden',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': 'Der Agent hat hier noch nichts gespeichert.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': 'Kein gespeicherter Eintrag passt zur Suche.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': 'Öffnen Sie ein Projekt, um zu sehen, woran sich der Agent erinnert.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': 'Gespeichertes Gedächtnis konnte nicht geladen werden. Es ging nichts verloren — bitte erneut versuchen.',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': 'Abgeschlossene löschen',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': 'Eine Aufgabe hinzufügen',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': 'Aufgabe hinzufügen',
|
||||
@@ -1403,13 +1439,9 @@ export const dict = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': 'Lösche "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': 'Sende "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': 'Ordne "{text}" neu',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': 'Größe der Aufgabenliste ändern',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': 'An aktuelle Sitzung senden',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': 'An neue Sitzung senden',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': 'An neue Worktree-Sitzung senden',
|
||||
'rightSidebar.contextNotesTodo.plans.title': 'Pläne',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count} Datei',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count} Dateien',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': 'Plan aus Datei importieren',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': 'Noch keine gespeicherten Pläne.',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': 'Plan löschen',
|
||||
@@ -1429,6 +1461,7 @@ export const dict = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': 'Todo an neue Sitzung gesendet',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': 'Todo an neue Worktree-Sitzung gesendet',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': 'Fehler beim Senden des Todos',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': 'Plan konnte nicht aktualisiert werden',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': 'Fehler beim Löschen des Plans',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': 'Plan-Datei ist leer',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': 'Fehler beim Importieren des Plans',
|
||||
@@ -2963,12 +2996,12 @@ export const dict = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': 'Das kleine Modell unterstützt die strukturierten Antworten nicht, die ein Walkthrough benötigt.',
|
||||
'contextRail.surface.plan.description': 'Plankontext',
|
||||
'contextRail.surface.pr.description': 'PR-Kontext',
|
||||
'contextRail.surface.notes.description': 'Notizkontext',
|
||||
'contextRail.surface.notes.description': 'Notizen, To-dos, Pläne und Agenten-Gedächtnis für das Projekt',
|
||||
'contextRail.surface.context.description': 'Allgemeiner Kontext',
|
||||
'contextRail.surface.browser.description': 'Browserkontext',
|
||||
'contextRail.surface.preview.description': 'Vorschaukontext',
|
||||
'contextRail.surface.chat.description': 'Chatkontext',
|
||||
'contextRail.surface.notes': 'Notizen',
|
||||
'contextRail.surface.notes': 'Projektwissen',
|
||||
'contextRail.editorTree.toggle': 'Editorbaum umschalten',
|
||||
'sidebarFilesTree.actions.collapseAllTitle': 'Alle einklappen',
|
||||
'filesView.editor.cannotPreviewBinary': 'Binärdatei kann nicht in der Vorschau angezeigt werden',
|
||||
@@ -3030,6 +3063,12 @@ export const dict = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'hat gefragt',
|
||||
'chat.workStatus.section.contextBreakdown': 'Kontextquellen',
|
||||
'chat.workStatus.breakdown.skills': 'Skills',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'Notiz',
|
||||
'chat.workStatus.breakdown.unpin': 'Vom Kontext lösen',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'Plan',
|
||||
'chat.workStatus.breakdown.memory': 'Agenten-Gedächtnis',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} angeheftet',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} angeheftet',
|
||||
'chat.workStatus.breakdown.mcp': 'MCP-Server',
|
||||
'chat.workStatus.action.openChanges': 'Änderungen öffnen',
|
||||
'chat.workStatus.action.openGit': 'Git-Panel öffnen',
|
||||
|
||||
@@ -1013,6 +1013,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'OpenChamber Web tool',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': 'Enable the OpenChamber Web tool',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': 'Let agents look at and interact with the page in OpenChamber\'s browser panel: open a URL, read the page, click, type, scroll, and switch between mobile and desktop layouts. Adds a small tool description to each session. Applies after OpenCode restarts.',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': 'Agent memory tool',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': 'Agent memory tool',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': 'Let agents keep what they learn across sessions, in two stores: what is true about you, and what is true about each project. Sessions are given the stored titles so the agent can read an entry when it is relevant. Turning this off removes the tool, the Memory tab, and the session index. Applies after OpenCode restarts.',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': 'Optional absolute path to the',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': 'binary.',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'OpenCode Binary Path',
|
||||
|
||||
@@ -1188,12 +1188,12 @@ export const dict = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': 'The small model does not support the structured responses a walkthrough needs.',
|
||||
'contextRail.surface.plan.description': 'View the current plan',
|
||||
'contextRail.surface.pr.description': 'Create, review, and merge the pull request for the current branch',
|
||||
'contextRail.surface.notes.description': 'Notes, todos, and plans for the project',
|
||||
'contextRail.surface.notes.description': 'Notes, todos, plans, and agent memory for the project',
|
||||
'contextRail.surface.context.description': 'Session context and token usage',
|
||||
'contextRail.surface.browser.description': 'Built-in web browser',
|
||||
'contextRail.surface.preview.description': 'Dev server preview',
|
||||
'contextRail.surface.chat.description': 'Session opened side by side',
|
||||
'contextRail.surface.notes': 'Project notes',
|
||||
'contextRail.surface.notes': 'Project knowledge',
|
||||
'contextRail.editorTree.toggle': 'Toggle file tree',
|
||||
'contextPanel.browser.open': 'Open browser panel',
|
||||
'contextPanel.browser.addressAria': 'Browser address',
|
||||
@@ -1459,6 +1459,7 @@ export const dict = {
|
||||
'planView.file.defaultName': 'plan',
|
||||
'planView.title.default': 'Plan',
|
||||
'planView.error.saveFailed': 'Save failed',
|
||||
'planView.error.loadFailed': 'Could not load this plan',
|
||||
'planView.error.previewUnavailable': 'Preview unavailable',
|
||||
'planView.error.switchToEditMode': 'Switch to edit mode to fix the issue.',
|
||||
'planView.error.writeFailed': 'Write failed',
|
||||
@@ -1541,11 +1542,46 @@ export const dict = {
|
||||
'diffView.hunk.unsupported': 'Staging individual hunks is not supported in this runtime.',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': 'Plan',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': 'Select a project to add notes and todos.',
|
||||
'rightSidebar.contextNotesTodo.notes.title': 'Quick notes - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': 'Capture context, reminders, or links',
|
||||
'rightSidebar.contextNotesTodo.todo.title': 'Todo',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count} item',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count} items',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': 'Add note',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': 'No notes yet. Capture context, reminders, or links.',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': 'Expand note',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': 'Collapse note',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': 'Delete note',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': 'Pin to agent context',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': 'Unpin from agent context',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': 'From chat',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': 'From agent',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': 'Search',
|
||||
'rightSidebar.contextNotesTodo.search.clear': 'Clear search',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': 'Nothing matches "{query}".',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': 'Failed to delete note',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': 'Failed to create note',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': 'Notes',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': 'Todo',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': 'Plans',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': 'Back to plans',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': 'Memory',
|
||||
'rightSidebar.contextNotesTodo.sections.label': 'Project context sections',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': 'Resize sections sidebar',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': 'Project',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': 'Memory scope',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': 'About you',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': 'fact',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': 'new',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': 'Withheld from the agent — reads as an instruction',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': 'changed',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': 'preference',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': 'reference',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': 'Forget this memory',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': 'Memory title',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': 'Memory text',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': 'Failed to save memory',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': 'Failed to forget memory',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': 'The agent has stored nothing here yet.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': 'No stored memory matches your search.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': 'Open a project to see what the agent remembers about it.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': 'Stored memory could not be loaded. Nothing has been lost — try again.',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': 'Clear completed',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': 'Add a todo',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': 'Add todo',
|
||||
@@ -1556,13 +1592,9 @@ export const dict = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': 'Delete "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': 'Send "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': 'Reorder "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': 'Resize todo list',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': 'Send to current session',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': 'Send to new session',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': 'Send to new worktree session',
|
||||
'rightSidebar.contextNotesTodo.plans.title': 'Plans',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count} file',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count} files',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': 'Import plan from file',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': 'No saved plans yet.',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': 'Delete plan',
|
||||
@@ -1582,6 +1614,7 @@ export const dict = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': 'Todo sent to new session',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': 'Todo sent to new worktree session',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': 'Failed to send todo',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': 'Failed to update plan',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': 'Failed to delete plan',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': 'Plan file is empty',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': 'Failed to import plan',
|
||||
@@ -3032,6 +3065,12 @@ export const dict = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'asked a question',
|
||||
'chat.workStatus.section.contextBreakdown': 'Context sources',
|
||||
'chat.workStatus.breakdown.skills': 'Skills',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'note',
|
||||
'chat.workStatus.breakdown.unpin': 'Unpin from context',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'plan',
|
||||
'chat.workStatus.breakdown.memory': 'Agent memory',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} pinned',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} pinned',
|
||||
'chat.workStatus.breakdown.mcp': 'MCP servers',
|
||||
'chat.workStatus.action.openChanges': 'Open changes',
|
||||
'chat.workStatus.action.openGit': 'Open Git panel',
|
||||
|
||||
@@ -981,6 +981,9 @@ export const settingsDict = {
|
||||
"settings.openchamber.tools.field.agentWebTool": "Herramienta OpenChamber Web",
|
||||
"settings.openchamber.tools.field.agentWebToolAria": "Activar la herramienta OpenChamber Web",
|
||||
"settings.openchamber.tools.field.agentWebToolInfo": "Permite que los agentes vean la página en el panel de navegador de OpenChamber e interactúen con ella: abrir una URL, leer el contenido, hacer clic, escribir, desplazarse y alternar entre diseño móvil y de escritorio. Añade una pequeña descripción de herramienta a cada sesión. Se aplica tras reiniciar OpenCode.",
|
||||
"settings.openchamber.tools.field.agentMemoryTool": "Herramienta de memoria del agente",
|
||||
"settings.openchamber.tools.field.agentMemoryToolAria": "Herramienta de memoria del agente",
|
||||
"settings.openchamber.tools.field.agentMemoryToolInfo": "Permite que los agentes conserven lo aprendido entre sesiones, en dos almacenes: lo que es cierto sobre ti y lo que es cierto sobre cada proyecto. Las sesiones reciben los títulos guardados para que el agente pueda leer una entrada cuando resulte relevante. Al desactivarla se retiran la herramienta, la pestaña Memoria y el índice de sesión. Se aplica tras reiniciar OpenCode.",
|
||||
"settings.openchamber.opencodeCli.tooltipPrefix": "Ruta absoluta opcional al",
|
||||
"settings.openchamber.opencodeCli.tooltipSuffix": "ejecutable.",
|
||||
"settings.openchamber.opencodeCli.field.binaryPath": "Ruta del ejecutable de OpenCode",
|
||||
|
||||
@@ -1189,12 +1189,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
"walkthrough.blocked.structuredOutput.descriptionUnknownModel": "El modelo pequeño no admite las respuestas estructuradas que necesita un recorrido.",
|
||||
"contextRail.surface.plan.description": "Ver el plan actual",
|
||||
"contextRail.surface.pr.description": "Crea, revisa y fusiona el pull request de la rama actual",
|
||||
"contextRail.surface.notes.description": "Notas, tareas y planes del proyecto",
|
||||
"contextRail.surface.notes.description": "Notas, tareas, planes y memoria del agente del proyecto",
|
||||
"contextRail.surface.context.description": "Contexto de la sesión y uso de tokens",
|
||||
"contextRail.surface.browser.description": "Navegador web integrado",
|
||||
"contextRail.surface.preview.description": "Vista previa del servidor de desarrollo",
|
||||
"contextRail.surface.chat.description": "Sesión abierta en paralelo",
|
||||
"contextRail.surface.notes": "Notas del proyecto",
|
||||
"contextRail.surface.notes": "Conocimiento del proyecto",
|
||||
"contextRail.editorTree.toggle": "Alternar árbol de archivos",
|
||||
"contextPanel.browser.open": "Abrir panel del navegador",
|
||||
"contextPanel.browser.addressAria": "Dirección del navegador",
|
||||
@@ -1425,6 +1425,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
"planView.file.defaultName": "plan",
|
||||
"planView.title.default": "Plan",
|
||||
"planView.error.saveFailed": "No se pudo guardar",
|
||||
"planView.error.loadFailed": "No se pudo cargar este plan",
|
||||
"planView.error.previewUnavailable": "Vista previa no disponible",
|
||||
"planView.error.switchToEditMode": "Cambia al modo de edición para resolver el problema.",
|
||||
"planView.error.writeFailed": "No se pudo escribir",
|
||||
@@ -1519,11 +1520,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
"diffView.hunk.unsupported": "Preparar fragmentos individuales no es compatible en este entorno.",
|
||||
"rightSidebar.contextNotesTodo.plan.defaultTitle": "Plan",
|
||||
"rightSidebar.contextNotesTodo.empty.selectProject": "Selecciona un proyecto para añadir notas y tareas pendientes.",
|
||||
"rightSidebar.contextNotesTodo.notes.title": "Notas rápidas — {project}",
|
||||
"rightSidebar.contextNotesTodo.notes.placeholder": "Captura contexto, recordatorios o enlaces",
|
||||
"rightSidebar.contextNotesTodo.todo.title": "Tareas pendientes",
|
||||
"rightSidebar.contextNotesTodo.todo.itemsSingle": "{count} elemento",
|
||||
"rightSidebar.contextNotesTodo.todo.itemsPlural": "{count} elementos",
|
||||
"rightSidebar.contextNotesTodo.notes.addAria": "Añadir nota",
|
||||
"rightSidebar.contextNotesTodo.notes.empty": "Aún no hay notas. Guarda contexto, recordatorios o enlaces.",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.expand": "Expandir nota",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.collapse": "Contraer nota",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.delete": "Eliminar nota",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.pin": "Fijar al contexto del agente",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.unpin": "Quitar del contexto del agente",
|
||||
"rightSidebar.contextNotesTodo.notes.source.selection": "Del chat",
|
||||
"rightSidebar.contextNotesTodo.notes.source.agent": "Del agente",
|
||||
"rightSidebar.contextNotesTodo.search.placeholder": "Buscar",
|
||||
"rightSidebar.contextNotesTodo.search.clear": "Borrar búsqueda",
|
||||
"rightSidebar.contextNotesTodo.search.noResults": "Nada coincide con \"{query}\".",
|
||||
"rightSidebar.contextNotesTodo.toast.deleteNoteFailed": "No se pudo eliminar la nota",
|
||||
"rightSidebar.contextNotesTodo.toast.createNoteFailed": "No se pudo crear la nota",
|
||||
"rightSidebar.contextNotesTodo.tabs.notes": "Notas",
|
||||
"rightSidebar.contextNotesTodo.tabs.todos": "Tareas",
|
||||
"rightSidebar.contextNotesTodo.tabs.plans": "Planes",
|
||||
"rightSidebar.contextNotesTodo.plans.actions.back": "Volver a los planes",
|
||||
"rightSidebar.contextNotesTodo.tabs.memory": "Memoria",
|
||||
"rightSidebar.contextNotesTodo.sections.label": "Secciones del contexto del proyecto",
|
||||
"rightSidebar.contextNotesTodo.sections.resize": "Redimensionar la barra de secciones",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.project": "Proyecto",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.label": "Ámbito de la memoria",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.global": "Sobre ti",
|
||||
"rightSidebar.contextNotesTodo.memory.type.fact": "hecho",
|
||||
"rightSidebar.contextNotesTodo.memory.badge.new": "nuevo",
|
||||
"rightSidebar.contextNotesTodo.memory.flagged": "Retenido del agente: parece una instrucción",
|
||||
"rightSidebar.contextNotesTodo.memory.badge.changed": "cambiado",
|
||||
"rightSidebar.contextNotesTodo.memory.type.preference": "preferencia",
|
||||
"rightSidebar.contextNotesTodo.memory.type.reference": "referencia",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.delete": "Olvidar esta memoria",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.editTitle": "Título de la memoria",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.editBody": "Texto de la memoria",
|
||||
"rightSidebar.contextNotesTodo.memory.toast.saveFailed": "No se pudo guardar la memoria",
|
||||
"rightSidebar.contextNotesTodo.memory.toast.deleteFailed": "No se pudo olvidar la memoria",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.nothing": "El agente aún no ha guardado nada aquí.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.noMatches": "Ninguna memoria guardada coincide con tu búsqueda.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.noProject": "Abre un proyecto para ver qué recuerda el agente sobre él.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.unavailable": "No se pudo cargar la memoria guardada. No se ha perdido nada: inténtalo de nuevo.",
|
||||
"rightSidebar.contextNotesTodo.todo.clearCompleted": "Limpiar completadas",
|
||||
"rightSidebar.contextNotesTodo.todo.inputPlaceholder": "Añade una tarea pendiente",
|
||||
"rightSidebar.contextNotesTodo.todo.addAria": "Añadir tarea pendiente",
|
||||
@@ -1534,13 +1570,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
"rightSidebar.contextNotesTodo.todo.actions.delete": "Eliminar \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.actions.send": "Enviar \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.actions.reorder": "Reordenar \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.resizeAria": "Redimensionar lista de tareas",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.currentSession": "Enviar a la sesión actual",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.newSession": "Enviar a una nueva sesión",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession": "Enviar a una nueva sesión de worktree",
|
||||
"rightSidebar.contextNotesTodo.plans.title": "Planes",
|
||||
"rightSidebar.contextNotesTodo.plans.filesSingle": "{count} archivo",
|
||||
"rightSidebar.contextNotesTodo.plans.filesPlural": "{count} archivos",
|
||||
"rightSidebar.contextNotesTodo.plans.importFromFile": "Importar plan desde archivo",
|
||||
"rightSidebar.contextNotesTodo.plans.empty": "Aún no hay plans guardados.",
|
||||
"rightSidebar.contextNotesTodo.plans.deletePlan": "Eliminar plan",
|
||||
@@ -1560,6 +1592,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
"rightSidebar.contextNotesTodo.toast.sentToNewSession": "Tarea enviada a una nueva sesión",
|
||||
"rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession": "Tarea enviada a una nueva sesión de worktree",
|
||||
"rightSidebar.contextNotesTodo.toast.sendTodoFailed": "No se pudo enviar la tarea",
|
||||
"rightSidebar.contextNotesTodo.toast.updatePlanFailed": "No se pudo actualizar el plan",
|
||||
"rightSidebar.contextNotesTodo.toast.deletePlanFailed": "No se pudo eliminar el plan",
|
||||
"rightSidebar.contextNotesTodo.toast.planFileEmpty": "El archivo del plan está vacío",
|
||||
"rightSidebar.contextNotesTodo.toast.importPlanFailed": "No se pudo importar el plan",
|
||||
@@ -3033,6 +3066,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'hizo una pregunta',
|
||||
'chat.workStatus.section.contextBreakdown': 'Fuentes de contexto',
|
||||
'chat.workStatus.breakdown.skills': 'Habilidades',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'nota',
|
||||
'chat.workStatus.breakdown.unpin': 'Dejar de fijar al contexto',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'plan',
|
||||
'chat.workStatus.breakdown.memory': 'Memoria del agente',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} fijado',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} fijados',
|
||||
'chat.workStatus.breakdown.mcp': 'Servidores MCP',
|
||||
'chat.workStatus.action.openChanges': 'Abrir cambios',
|
||||
'chat.workStatus.action.openGit': 'Abrir panel de Git',
|
||||
|
||||
@@ -899,6 +899,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'Outil OpenChamber Web',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': 'Activer l’outil OpenChamber Web',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': 'Laissez les agents consulter la page dans le panneau navigateur d’OpenChamber et interagir avec elle : ouvrir une URL, lire le contenu, cliquer, saisir du texte, faire défiler et basculer entre les mises en page mobile et bureau. Ajoute une courte description d’outil à chaque session. Appliqué après le redémarrage d’OpenCode.',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': 'Outil de mémoire de l’agent',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': 'Outil de mémoire de l’agent',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': 'Permet aux agents de conserver ce qu’ils apprennent d’une session à l’autre, dans deux stockages : ce qui est vrai à votre sujet et ce qui est vrai pour chaque projet. Les sessions reçoivent les titres enregistrés afin que l’agent puisse lire une entrée pertinente. La désactivation retire l’outil, l’onglet Mémoire et l’index de session. Appliqué après le redémarrage d’OpenCode.',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': 'Chemin absolu facultatif vers le',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': 'binaire.',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'Chemin binaire OpenCode',
|
||||
|
||||
@@ -1008,12 +1008,12 @@ export const dict = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': 'Le petit modèle ne prend pas en charge les réponses structurées nécessaires à un parcours.',
|
||||
'contextRail.surface.plan.description': 'Voir le plan actuel',
|
||||
'contextRail.surface.pr.description': 'Créer, relire et fusionner la pull request de la branche actuelle',
|
||||
'contextRail.surface.notes.description': 'Notes, tâches et plans du projet',
|
||||
'contextRail.surface.notes.description': 'Notes, tâches, plans et mémoire de l’agent pour le projet',
|
||||
'contextRail.surface.context.description': 'Contexte de session et utilisation des tokens',
|
||||
'contextRail.surface.browser.description': 'Navigateur web intégré',
|
||||
'contextRail.surface.preview.description': 'Aperçu du serveur de développement',
|
||||
'contextRail.surface.chat.description': 'Session ouverte côte à côte',
|
||||
'contextRail.surface.notes': 'Notes du projet',
|
||||
'contextRail.surface.notes': 'Connaissances du projet',
|
||||
'contextRail.editorTree.toggle': 'Afficher/masquer l’arborescence de fichiers',
|
||||
'contextPanel.browser.open': 'Ouvrir le panneau du navigateur',
|
||||
'contextPanel.browser.addressAria': 'Adresse du navigateur',
|
||||
@@ -1224,6 +1224,7 @@ export const dict = {
|
||||
'planView.file.defaultName': 'plan',
|
||||
'planView.title.default': 'Plan',
|
||||
'planView.error.saveFailed': 'Échec de l\'enregistrement',
|
||||
'planView.error.loadFailed': 'Impossible de charger ce plan',
|
||||
'planView.error.previewUnavailable': 'Aperçu indisponible',
|
||||
'planView.error.switchToEditMode': 'Passez en mode édition pour résoudre le problème.',
|
||||
'planView.error.writeFailed': 'Échec de l\'écriture',
|
||||
@@ -1306,11 +1307,46 @@ export const dict = {
|
||||
'diffView.hunk.unsupported': "La préparation de sections individuelles n'est pas prise en charge dans cet environnement.",
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': 'Plan',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': 'Sélectionnez un projet pour ajouter des notes et des tâches.',
|
||||
'rightSidebar.contextNotesTodo.notes.title': 'Notes rapides - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': 'Capturez le contexte, les rappels ou les liens',
|
||||
'rightSidebar.contextNotesTodo.todo.title': 'Faire',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': 'Article {count}',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': 'Articles {count}',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': 'Ajouter une note',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': 'Aucune note pour le moment. Notez du contexte, des rappels ou des liens.',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': 'Développer la note',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': 'Réduire la note',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': 'Supprimer la note',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': 'Épingler au contexte de l\'agent',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': 'Détacher du contexte de l\'agent',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': 'Depuis le chat',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': 'Depuis l\'agent',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': 'Rechercher',
|
||||
'rightSidebar.contextNotesTodo.search.clear': 'Effacer la recherche',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': 'Aucun résultat pour "{query}".',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': 'Échec de la suppression de la note',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': 'Échec de la création de la note',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': 'Notes',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': 'Tâches',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': 'Plans',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': 'Retour aux plans',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': 'Mémoire',
|
||||
'rightSidebar.contextNotesTodo.sections.label': 'Sections du contexte du projet',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': 'Redimensionner la barre des sections',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': 'Projet',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': 'Portée de la mémoire',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': 'À votre sujet',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': 'fait',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': 'nouveau',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': 'Retenu — se lit comme une instruction',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': 'modifié',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': 'préférence',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': 'référence',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': 'Oublier cette mémoire',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': 'Titre de la mémoire',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': 'Texte de la mémoire',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': 'Impossible d’enregistrer la mémoire',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': 'Impossible d’oublier la mémoire',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': 'L’agent n’a encore rien enregistré ici.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': 'Aucune mémoire enregistrée ne correspond à votre recherche.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': 'Ouvrez un projet pour voir ce que l’agent en retient.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': 'Impossible de charger la mémoire enregistrée. Rien n’est perdu — réessayez.',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': 'Effacer terminé',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': 'Ajouter une tâche',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': 'Ajouter une tâche',
|
||||
@@ -1321,13 +1357,9 @@ export const dict = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': 'Supprimer "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': 'Envoyer "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': 'Récommander "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': 'Redimensionner la liste de tâches',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': 'Envoyer à la session en cours',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': 'Envoyer à une nouvelle session',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': 'Envoyer à une nouvelle session Worktree',
|
||||
'rightSidebar.contextNotesTodo.plans.title': 'Forfaits',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': 'Fichier {count}',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': 'Fichiers {count}',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': 'Importer un plan à partir d\'un fichier',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': 'Aucun plan enregistré pour l\'instant.',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': 'Supprimer le forfait',
|
||||
@@ -1347,6 +1379,7 @@ export const dict = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': 'Todo envoyé à une nouvelle session',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': 'Todo envoyé à une nouvelle session Worktree',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': 'Échec de l\'envoi de la tâche',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': 'Échec de la mise à jour du plan',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': 'Échec de la suppression du plan',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': 'Le fichier de plan est vide',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': 'Échec de l\'importation du plan',
|
||||
@@ -3030,6 +3063,12 @@ export const dict = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'a posé une question',
|
||||
'chat.workStatus.section.contextBreakdown': 'Sources de contexte',
|
||||
'chat.workStatus.breakdown.skills': 'Compétences',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'note',
|
||||
'chat.workStatus.breakdown.unpin': 'Détacher du contexte',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'plan',
|
||||
'chat.workStatus.breakdown.memory': 'Mémoire de l’agent',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} épinglé',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} épinglés',
|
||||
'chat.workStatus.breakdown.mcp': 'Serveurs MCP',
|
||||
'chat.workStatus.action.openChanges': 'Ouvrir les modifications',
|
||||
'chat.workStatus.action.openGit': 'Ouvrir le panneau Git',
|
||||
|
||||
@@ -1014,6 +1014,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'OpenChamber Web ツール',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': 'OpenChamber Web ツールを有効にする',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': 'エージェントが OpenChamber のブラウザーパネルでページを確認し操作できるようにします。URL を開く、内容を読む、クリック、入力、スクロール、モバイルとデスクトップのレイアウト切り替えが可能です。各セッションに小さなツール説明が追加されます。OpenCode の再起動後に適用されます。',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': 'エージェントメモリツール',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': 'エージェントメモリツール',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': 'エージェントが学んだことをセッションをまたいで保持できるようにします。保存先は 2 つで、ユーザーについての事実と、各プロジェクトについての事実です。セッションには保存済みのタイトルが渡され、関連する項目をエージェントが読み出せます。オフにするとツール、メモリタブ、セッションインデックスがすべてなくなります。OpenCode の再起動後に反映されます。',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': '以下への絶対パス(任意):',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': 'バイナリ。',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'OpenCode バイナリパス',
|
||||
|
||||
@@ -1185,12 +1185,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': 'スモールモデルはウォークスルーに必要な構造化応答をサポートしていません。',
|
||||
'contextRail.surface.plan.description': '現在のプランを表示',
|
||||
'contextRail.surface.pr.description': '現在のブランチのプルリクエストを作成・確認・マージ',
|
||||
'contextRail.surface.notes.description': 'プロジェクトのノート・ToDo・プラン',
|
||||
'contextRail.surface.notes.description': 'プロジェクトのメモ、ToDo、プラン、エージェントのメモリ',
|
||||
'contextRail.surface.context.description': 'セッションのコンテキストとトークン使用量',
|
||||
'contextRail.surface.browser.description': '内蔵ウェブブラウザ',
|
||||
'contextRail.surface.preview.description': '開発サーバーのプレビュー',
|
||||
'contextRail.surface.chat.description': '並べて開いたセッション',
|
||||
'contextRail.surface.notes': 'プロジェクトノート',
|
||||
'contextRail.surface.notes': 'プロジェクトナレッジ',
|
||||
'contextRail.editorTree.toggle': 'ファイルツリーの表示切替',
|
||||
'contextPanel.browser.open': 'ブラウザパネルを開く',
|
||||
'contextPanel.browser.addressAria': 'ブラウザアドレス',
|
||||
@@ -1455,6 +1455,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'planView.file.defaultName': '計画',
|
||||
'planView.title.default': '計画',
|
||||
'planView.error.saveFailed': '保存に失敗しました',
|
||||
'planView.error.loadFailed': 'この計画を読み込めませんでした',
|
||||
'planView.error.previewUnavailable': 'プレビューは利用できません',
|
||||
'planView.error.switchToEditMode': '編集モードに切り替えて問題を修正してください。',
|
||||
'planView.error.writeFailed': '書き込みに失敗しました',
|
||||
@@ -1537,11 +1538,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.autoReview.actions.stop': '停止',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': '計画',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': 'プロジェクトを選択してメモとTODOを追加します。',
|
||||
'rightSidebar.contextNotesTodo.notes.title': 'クイックメモ - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': 'コンテキスト、リマインダー、リンクを記録',
|
||||
'rightSidebar.contextNotesTodo.todo.title': 'TODO',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count}項目',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count}項目',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': 'ノートを追加',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': 'ノートはまだありません。文脈やメモ、リンクを残せます。',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': 'ノートを展開',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': 'ノートを折りたたむ',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': 'ノートを削除',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': 'エージェントのコンテキストにピン留め',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': 'エージェントのコンテキストからピン留めを解除',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': 'チャットから',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': 'エージェントから',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': '検索',
|
||||
'rightSidebar.contextNotesTodo.search.clear': '検索をクリア',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': '「{query}」に一致するものはありません。',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': 'ノートを削除できませんでした',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': 'ノートを作成できませんでした',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': 'ノート',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': 'Todo',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': '計画',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': 'プラン一覧に戻る',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': 'メモリ',
|
||||
'rightSidebar.contextNotesTodo.sections.label': 'プロジェクトコンテキストのセクション',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': 'セクションサイドバーの幅を変更',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': 'プロジェクト',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': 'メモリの範囲',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': 'あなたについて',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': '事実',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': '新規',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': 'エージェントには渡されません — 指示のように読めます',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': '変更',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': '設定',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': '参照',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': 'この項目を削除',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': 'メモリのタイトル',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': 'メモリの本文',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': 'メモリを保存できませんでした',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': '項目を削除できませんでした',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': 'エージェントはまだ何も保存していません。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': '検索条件に一致する項目はありません。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': 'プロジェクトを開くと、エージェントが記憶している内容を確認できます。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': '保存された記憶を読み込めませんでした。失われてはいません。もう一度お試しください。',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': '完了をクリア',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': 'TODOを追加',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': 'TODOを追加',
|
||||
@@ -1552,13 +1588,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': '「{text}」を削除',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': '「{text}」を送信',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': '「{text}」を並び替え',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': 'TODOリストのサイズを変更',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': '現在のセッションに送信',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': '新しいセッションに送信',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': '新しいワークツリーセッションに送信',
|
||||
'rightSidebar.contextNotesTodo.plans.title': '計画',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count}ファイル',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count}ファイル',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': 'ファイルから計画をインポート',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': 'まだ保存された計画はありません。',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': '計画を削除',
|
||||
@@ -1578,6 +1610,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': 'TODOを新しいセッションに送信しました',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': 'TODOを新しいワークツリーセッションに送信しました',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': 'TODOの送信に失敗しました',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': '計画を更新できませんでした',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': '計画の削除に失敗しました',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': '計画ファイルが空です',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': '計画のインポートに失敗しました',
|
||||
@@ -3032,6 +3065,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': '質問があります',
|
||||
'chat.workStatus.section.contextBreakdown': 'コンテキストソース',
|
||||
'chat.workStatus.breakdown.skills': 'スキル',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'メモ',
|
||||
'chat.workStatus.breakdown.unpin': 'コンテキストからピンを外す',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'プラン',
|
||||
'chat.workStatus.breakdown.memory': 'エージェントメモリ',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} 件ピン留め',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} 件ピン留め',
|
||||
'chat.workStatus.breakdown.mcp': 'MCP サーバー',
|
||||
'chat.workStatus.action.openChanges': '変更を開く',
|
||||
'chat.workStatus.action.openGit': 'Git パネルを開く',
|
||||
|
||||
@@ -981,6 +981,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'OpenChamber Web 도구',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': 'OpenChamber Web 도구 활성화',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': '에이전트가 OpenChamber 브라우저 패널에서 페이지를 확인하고 조작할 수 있습니다. URL 열기, 내용 읽기, 클릭, 입력, 스크롤, 모바일과 데스크톱 레이아웃 전환이 가능합니다. 각 세션에 작은 도구 설명이 추가됩니다. OpenCode를 다시 시작하면 적용됩니다.',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': '에이전트 메모리 도구',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': '에이전트 메모리 도구',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': '에이전트가 배운 내용을 세션 간에 유지하도록 합니다. 저장소는 두 개로, 사용자에 대한 사실과 각 프로젝트에 대한 사실입니다. 세션에는 저장된 제목이 전달되어 관련 항목을 에이전트가 읽을 수 있습니다. 끄면 도구와 메모리 탭, 세션 색인이 모두 사라집니다. OpenCode를 다시 시작한 뒤 적용됩니다.',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': '선택적 절대 경로:',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': 'binary.',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'OpenCode binary 경로',
|
||||
|
||||
@@ -1189,12 +1189,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': '스몰 모델은 워크스루에 필요한 구조화된 응답을 지원하지 않습니다.',
|
||||
'contextRail.surface.plan.description': '현재 계획 보기',
|
||||
'contextRail.surface.pr.description': '현재 브랜치의 풀 리퀘스트를 생성, 검토, 병합',
|
||||
'contextRail.surface.notes.description': '프로젝트의 노트, 할 일, 계획',
|
||||
'contextRail.surface.notes.description': '프로젝트의 노트, 할 일, 계획, 에이전트 메모리',
|
||||
'contextRail.surface.context.description': '세션 컨텍스트 및 토큰 사용량',
|
||||
'contextRail.surface.browser.description': '내장 웹 브라우저',
|
||||
'contextRail.surface.preview.description': '개발 서버 미리보기',
|
||||
'contextRail.surface.chat.description': '나란히 연 세션',
|
||||
'contextRail.surface.notes': '프로젝트 노트',
|
||||
'contextRail.surface.notes': '프로젝트 지식',
|
||||
'contextRail.editorTree.toggle': '파일 트리 표시 전환',
|
||||
'contextPanel.browser.open': '브라우저 패널 열기',
|
||||
'contextPanel.browser.addressAria': '브라우저 주소',
|
||||
@@ -1461,6 +1461,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'planView.file.defaultName': 'plan',
|
||||
'planView.title.default': '플랜',
|
||||
'planView.error.saveFailed': '저장 실패',
|
||||
'planView.error.loadFailed': '이 계획을 불러오지 못했습니다',
|
||||
'planView.error.previewUnavailable': '미리보기를 사용할 수 없음',
|
||||
'planView.error.switchToEditMode': '문제를 수정하려면 편집 모드로 전환하세요.',
|
||||
'planView.error.writeFailed': '쓰기 실패',
|
||||
@@ -1543,11 +1544,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
'diffView.hunk.unsupported': '개별 허크 스테이징은 이 환경에서 지원되지 않습니다.',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': '플랜',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': '메모와 Todo를 추가할 프로젝트를 선택하세요.',
|
||||
'rightSidebar.contextNotesTodo.notes.title': '빠른 메모 - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': '컨텍스트, 리마인더, 링크를 기록하세요',
|
||||
'rightSidebar.contextNotesTodo.todo.title': 'Todo',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count}개 항목',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count}개 항목',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': '노트 추가',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': '아직 노트가 없습니다. 맥락이나 메모, 링크를 남겨 보세요.',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': '노트 펼치기',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': '노트 접기',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': '노트 삭제',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': '에이전트 컨텍스트에 고정',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': '에이전트 컨텍스트에서 고정 해제',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': '채팅에서',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': '에이전트에서',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': '검색',
|
||||
'rightSidebar.contextNotesTodo.search.clear': '검색 지우기',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': '"{query}"과(와) 일치하는 항목이 없습니다.',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': '노트를 삭제하지 못했습니다',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': '노트를 만들지 못했습니다',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': '노트',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': '할 일',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': '계획',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': '계획 목록으로',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': '메모리',
|
||||
'rightSidebar.contextNotesTodo.sections.label': '프로젝트 컨텍스트 섹션',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': '섹션 사이드바 너비 조절',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': '프로젝트',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': '메모리 범위',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': '사용자 정보',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': '사실',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': '신규',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': '에이전트에 전달되지 않음 — 지시문처럼 읽힘',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': '변경',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': '선호',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': '참조',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': '이 항목 삭제',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': '메모리 제목',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': '메모리 내용',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': '메모리를 저장하지 못했습니다',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': '항목을 삭제하지 못했습니다',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': '에이전트가 아직 저장한 항목이 없습니다.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': '검색과 일치하는 저장 항목이 없습니다.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': '프로젝트를 열면 에이전트가 기억하는 내용을 볼 수 있습니다.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': '저장된 메모리를 불러오지 못했습니다. 사라진 것은 없습니다. 다시 시도하세요.',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': '완료 항목 지우기',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': 'Todo 추가',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': 'Todo 추가',
|
||||
@@ -1558,13 +1594,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': '"{text}" 삭제',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': '보내기 "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': '재정렬 "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': '할 일 목록 크기 조정',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': '현재 세션으로 보내기',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': '새 세션으로 보내기',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': '새 워크트리 세션으로 보내기',
|
||||
'rightSidebar.contextNotesTodo.plans.title': '플랜',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count} 파일',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count} 파일',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': '파일에서 플랜 가져오기',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': '아직 저장된 플랜 없음',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': '플랜 삭제',
|
||||
@@ -1584,6 +1616,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': '할 일을 새 세션으로 보냈습니다',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': '할 일을 새 워크트리 세션으로 보냈습니다',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': 'Todo 전송 실패',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': '계획을 업데이트하지 못했습니다',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': '플랜 삭제 실패',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': '플랜 파일이 비어 있음',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': '플랜 가져오기 실패',
|
||||
@@ -3032,6 +3065,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': '질문함',
|
||||
'chat.workStatus.section.contextBreakdown': '컨텍스트 소스',
|
||||
'chat.workStatus.breakdown.skills': '스킬',
|
||||
'chat.workStatus.breakdown.pinnedNote': '노트',
|
||||
'chat.workStatus.breakdown.unpin': '컨텍스트에서 고정 해제',
|
||||
'chat.workStatus.breakdown.pinnedPlan': '계획',
|
||||
'chat.workStatus.breakdown.memory': '에이전트 메모리',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count}개 고정',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count}개 고정',
|
||||
'chat.workStatus.breakdown.mcp': 'MCP 서버',
|
||||
'chat.workStatus.action.openChanges': '변경 사항 열기',
|
||||
'chat.workStatus.action.openGit': 'Git 패널 열기',
|
||||
|
||||
@@ -865,6 +865,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'Narzędzie OpenChamber Web',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': 'Włącz narzędzie OpenChamber Web',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': 'Pozwól agentom oglądać stronę w panelu przeglądarki OpenChamber i wchodzić z nią w interakcję: otwierać adres URL, czytać treść, klikać, pisać, przewijać i przełączać między układem mobilnym a desktopowym. Dodaje krótki opis narzędzia do każdej sesji. Zastosowane po ponownym uruchomieniu OpenCode.',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': 'Narzędzie pamięci agenta',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': 'Narzędzie pamięci agenta',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': 'Pozwala agentom zachowywać to, czego się nauczyły, pomiędzy sesjami, w dwóch magazynach: co jest prawdą o Tobie i co jest prawdą o danym projekcie. Sesje otrzymują zapisane tytuły, aby agent mógł odczytać wpis, gdy jest istotny. Wyłączenie usuwa narzędzie, kartę Pamięć i indeks sesji. Działa po ponownym uruchomieniu OpenCode.',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': 'Opcjonalna ścieżka absolutna do',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': 'pliku binarnego.',
|
||||
'settings.openchamber.passkeys.actions.add': 'Dodaj klucz dostępu (passkey)',
|
||||
|
||||
@@ -1501,12 +1501,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': 'Mały model nie obsługuje ustrukturyzowanych odpowiedzi wymaganych przez przewodnik.',
|
||||
'contextRail.surface.plan.description': 'Zobacz bieżący plan',
|
||||
'contextRail.surface.pr.description': 'Twórz, przeglądaj i scalaj pull request bieżącej gałęzi',
|
||||
'contextRail.surface.notes.description': 'Notatki, zadania i plany projektu',
|
||||
'contextRail.surface.notes.description': 'Notatki, zadania, plany i pamięć agenta dla projektu',
|
||||
'contextRail.surface.context.description': 'Kontekst sesji i zużycie tokenów',
|
||||
'contextRail.surface.browser.description': 'Wbudowana przeglądarka',
|
||||
'contextRail.surface.preview.description': 'Podgląd serwera deweloperskiego',
|
||||
'contextRail.surface.chat.description': 'Sesja otwarta obok',
|
||||
'contextRail.surface.notes': 'Notatki projektu',
|
||||
'contextRail.surface.notes': 'Wiedza o projekcie',
|
||||
'contextRail.editorTree.toggle': 'Przełącz drzewo plików',
|
||||
'contextPanel.browser.open': 'Otwórz panel przeglądarki',
|
||||
'contextPanel.browser.addressAria': 'Adres przeglądarki',
|
||||
@@ -2531,6 +2531,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'planView.actions.sendToNewWorktreeSession': 'Wyślij do nowej sesji drzewa pracy',
|
||||
'planView.error.previewUnavailable': 'Podgląd jest niedostępny',
|
||||
'planView.error.saveFailed': 'Nie udało się zapisać',
|
||||
'planView.error.loadFailed': 'Nie udało się wczytać tego planu',
|
||||
'planView.error.switchToEditMode': 'Przełącz do trybu edycji, aby naprawić problem.',
|
||||
'planView.error.writeFailed': 'Nie udało się zapisać',
|
||||
'planView.error.writePlanFileFailed': 'Nie udało się zapisać pliku planu ({status})',
|
||||
@@ -2584,15 +2585,11 @@ export const dict: Record<I18nKey, string> = {
|
||||
'projectEditDialog.toast.iconUpdated': 'Zaktualizowano ikonę projektu',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': 'Wybierz projekt, aby dodać notatki i zadania.',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': 'Zapisz kontekst, przypomnienia lub linki',
|
||||
'rightSidebar.contextNotesTodo.notes.title': 'Szybkie notatki — {project}',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': 'Plan',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': 'Usuń plan',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlanWithTitle': 'Usuń plan „{title}”',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': 'Brak zapisanych planów.',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count} plików',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count} plik',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': 'Importuj plan z pliku',
|
||||
'rightSidebar.contextNotesTodo.plans.title': 'Plany',
|
||||
'rightSidebar.contextNotesTodo.sendDialog.actions.cancel': 'Anuluj',
|
||||
'rightSidebar.contextNotesTodo.sendDialog.actions.send': 'Wyślij',
|
||||
'rightSidebar.contextNotesTodo.sendDialog.actions.sending': 'Wysyłanie',
|
||||
@@ -2600,6 +2597,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.sendDialog.title.newWorktree': 'Wyślij do nowego drzewa pracy',
|
||||
'rightSidebar.contextNotesTodo.sendDialog.variant.default': 'Domyślny',
|
||||
'rightSidebar.contextNotesTodo.toast.createSessionFailed': 'Nie udało się utworzyć sesji',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': 'Nie udało się zaktualizować planu',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': 'Nie udało się usunąć planu',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': 'Nie udało się zaimportować planu',
|
||||
'rightSidebar.contextNotesTodo.toast.loadNotesFailed': 'Nie udało się załadować notatek projektu',
|
||||
@@ -2619,17 +2617,52 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.markComplete': 'Oznacz „{text}” jako ukończone',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': 'Wyślij „{text}”',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': 'Zmień kolejność "{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': 'Zmień rozmiar listy zadań',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': 'Dodaj zadanie',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': 'Wyczyść ukończone',
|
||||
'rightSidebar.contextNotesTodo.todo.empty': 'Brak zadań. Dodaj krótką checklistę dla tego projektu.',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': 'Dodaj zadanie',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count} elementów',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count} element',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': 'Wyślij do bieżącej sesji',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': 'Wyślij do nowej sesji',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': 'Wyślij do nowej sesji drzewa pracy',
|
||||
'rightSidebar.contextNotesTodo.todo.title': 'Zadania',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': 'Dodaj notatkę',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': 'Brak notatek. Zapisz kontekst, przypomnienia lub linki.',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': 'Rozwiń notatkę',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': 'Zwiń notatkę',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': 'Usuń notatkę',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': 'Przypnij do kontekstu agenta',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': 'Odepnij od kontekstu agenta',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': 'Z czatu',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': 'Od agenta',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': 'Szukaj',
|
||||
'rightSidebar.contextNotesTodo.search.clear': 'Wyczyść wyszukiwanie',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': 'Nic nie pasuje do "{query}".',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': 'Nie udało się usunąć notatki',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': 'Nie udało się utworzyć notatki',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': 'Notatki',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': 'Zadania',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': 'Plany',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': 'Wróć do planów',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': 'Pamięć',
|
||||
'rightSidebar.contextNotesTodo.sections.label': 'Sekcje kontekstu projektu',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': 'Zmień szerokość paska sekcji',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': 'Projekt',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': 'Zakres pamięci',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': 'O Tobie',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': 'fakt',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': 'nowe',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': 'Wstrzymane — czyta się jak instrukcja',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': 'zmienione',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': 'preferencja',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': 'odnośnik',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': 'Zapomnij ten wpis',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': 'Tytuł wpisu',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': 'Treść wpisu',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': 'Nie udało się zapisać wpisu',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': 'Nie udało się zapomnieć wpisu',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': 'Agent nic tu jeszcze nie zapisał.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': 'Żaden zapisany wpis nie pasuje do wyszukiwania.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': 'Otwórz projekt, aby zobaczyć, co agent o nim pamięta.',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': 'Nie udało się wczytać zapisanej pamięci. Nic nie przepadło — spróbuj ponownie.',
|
||||
'saveProjectPlanDialog.actions.cancel': 'Anuluj',
|
||||
'saveProjectPlanDialog.actions.save': 'Zapisz',
|
||||
'saveProjectPlanDialog.actions.saving': 'Saving...',
|
||||
@@ -3049,6 +3082,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'zadał pytanie',
|
||||
'chat.workStatus.section.contextBreakdown': 'Źródła kontekstu',
|
||||
'chat.workStatus.breakdown.skills': 'Umiejętności',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'notatka',
|
||||
'chat.workStatus.breakdown.unpin': 'Odepnij od kontekstu',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'plan',
|
||||
'chat.workStatus.breakdown.memory': 'Pamięć agenta',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} przypięte',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} przypiętych',
|
||||
'chat.workStatus.breakdown.mcp': 'Serwery MCP',
|
||||
'chat.workStatus.action.openChanges': 'Otwórz zmiany',
|
||||
'chat.workStatus.action.openGit': 'Otwórz panel Git',
|
||||
|
||||
@@ -981,6 +981,9 @@ export const settingsDict = {
|
||||
"settings.openchamber.tools.field.agentWebTool": "Ferramenta OpenChamber Web",
|
||||
"settings.openchamber.tools.field.agentWebToolAria": "Ativar a ferramenta OpenChamber Web",
|
||||
"settings.openchamber.tools.field.agentWebToolInfo": "Permita que agentes vejam a página no painel de navegador do OpenChamber e interajam com ela: abrir uma URL, ler o conteúdo, clicar, digitar, rolar e alternar entre layout móvel e desktop. Adiciona uma pequena descrição de ferramenta a cada sessão. Aplicado após reiniciar o OpenCode.",
|
||||
"settings.openchamber.tools.field.agentMemoryTool": "Ferramenta de memória do agente",
|
||||
"settings.openchamber.tools.field.agentMemoryToolAria": "Ferramenta de memória do agente",
|
||||
"settings.openchamber.tools.field.agentMemoryToolInfo": "Permite que os agentes guardem o que aprendem entre sessões, em dois armazenamentos: o que é verdade sobre você e o que é verdade sobre cada projeto. As sessões recebem os títulos armazenados para que o agente possa ler uma entrada quando for relevante. Desativar remove a ferramenta, a aba Memória e o índice da sessão. Vale após reiniciar o OpenCode.",
|
||||
"settings.openchamber.opencodeCli.tooltipPrefix": "Caminho absoluto opcional para o",
|
||||
"settings.openchamber.opencodeCli.tooltipSuffix": "executável.",
|
||||
"settings.openchamber.opencodeCli.field.binaryPath": "Caminho do executável do OpenCode",
|
||||
|
||||
@@ -1189,12 +1189,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
"walkthrough.blocked.structuredOutput.descriptionUnknownModel": "O modelo pequeno não suporta as respostas estruturadas que um percurso exige.",
|
||||
"contextRail.surface.plan.description": "Ver o plano atual",
|
||||
"contextRail.surface.pr.description": "Crie, revise e faça merge do pull request do branch atual",
|
||||
"contextRail.surface.notes.description": "Notas, tarefas e planos do projeto",
|
||||
"contextRail.surface.notes.description": "Notas, tarefas, planos e memória do agente do projeto",
|
||||
"contextRail.surface.context.description": "Contexto da sessão e uso de tokens",
|
||||
"contextRail.surface.browser.description": "Navegador web integrado",
|
||||
"contextRail.surface.preview.description": "Pré-visualização do servidor de desenvolvimento",
|
||||
"contextRail.surface.chat.description": "Sessão aberta lado a lado",
|
||||
"contextRail.surface.notes": "Notas do projeto",
|
||||
"contextRail.surface.notes": "Conhecimento do projeto",
|
||||
"contextRail.editorTree.toggle": "Alternar árvore de arquivos",
|
||||
"contextPanel.browser.open": "Abrir painel do navegador",
|
||||
"contextPanel.browser.addressAria": "Endereço do navegador",
|
||||
@@ -1425,6 +1425,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
"planView.file.defaultName": "plano",
|
||||
"planView.title.default": "Plano",
|
||||
"planView.error.saveFailed": "Não foi possível salvar",
|
||||
"planView.error.loadFailed": "Não foi possível carregar este plano",
|
||||
"planView.error.previewUnavailable": "Pré-visualização indisponível",
|
||||
"planView.error.switchToEditMode": "Alterne para o modo de edição para resolver o problema.",
|
||||
"planView.error.writeFailed": "Não foi possível gravar",
|
||||
@@ -1519,11 +1520,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
"diffView.hunk.unsupported": "A preparação de trechos individuais não é suportada neste ambiente.",
|
||||
"rightSidebar.contextNotesTodo.plan.defaultTitle": "Plano",
|
||||
"rightSidebar.contextNotesTodo.empty.selectProject": "Selecione um projeto para adicionar notas e tarefas pendentes.",
|
||||
"rightSidebar.contextNotesTodo.notes.title": "Notas rápidas — {project}",
|
||||
"rightSidebar.contextNotesTodo.notes.placeholder": "Capture contexto, lembretes ou links",
|
||||
"rightSidebar.contextNotesTodo.todo.title": "Tarefas pendentes",
|
||||
"rightSidebar.contextNotesTodo.todo.itemsSingle": "{count} elemento",
|
||||
"rightSidebar.contextNotesTodo.todo.itemsPlural": "{count} elementos",
|
||||
"rightSidebar.contextNotesTodo.notes.addAria": "Adicionar nota",
|
||||
"rightSidebar.contextNotesTodo.notes.empty": "Ainda não há notas. Registre contexto, lembretes ou links.",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.expand": "Expandir nota",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.collapse": "Recolher nota",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.delete": "Excluir nota",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.pin": "Fixar no contexto do agente",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.unpin": "Desafixar do contexto do agente",
|
||||
"rightSidebar.contextNotesTodo.notes.source.selection": "Do chat",
|
||||
"rightSidebar.contextNotesTodo.notes.source.agent": "Do agente",
|
||||
"rightSidebar.contextNotesTodo.search.placeholder": "Buscar",
|
||||
"rightSidebar.contextNotesTodo.search.clear": "Limpar busca",
|
||||
"rightSidebar.contextNotesTodo.search.noResults": "Nada corresponde a \"{query}\".",
|
||||
"rightSidebar.contextNotesTodo.toast.deleteNoteFailed": "Falha ao excluir a nota",
|
||||
"rightSidebar.contextNotesTodo.toast.createNoteFailed": "Falha ao criar a nota",
|
||||
"rightSidebar.contextNotesTodo.tabs.notes": "Notas",
|
||||
"rightSidebar.contextNotesTodo.tabs.todos": "Tarefas",
|
||||
"rightSidebar.contextNotesTodo.tabs.plans": "Planos",
|
||||
"rightSidebar.contextNotesTodo.plans.actions.back": "Voltar aos planos",
|
||||
"rightSidebar.contextNotesTodo.tabs.memory": "Memória",
|
||||
"rightSidebar.contextNotesTodo.sections.label": "Seções do contexto do projeto",
|
||||
"rightSidebar.contextNotesTodo.sections.resize": "Redimensionar a barra de seções",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.project": "Projeto",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.label": "Escopo da memória",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.global": "Sobre você",
|
||||
"rightSidebar.contextNotesTodo.memory.type.fact": "fato",
|
||||
"rightSidebar.contextNotesTodo.memory.badge.new": "novo",
|
||||
"rightSidebar.contextNotesTodo.memory.flagged": "Retido do agente — parece uma instrução",
|
||||
"rightSidebar.contextNotesTodo.memory.badge.changed": "alterado",
|
||||
"rightSidebar.contextNotesTodo.memory.type.preference": "preferência",
|
||||
"rightSidebar.contextNotesTodo.memory.type.reference": "referência",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.delete": "Esquecer esta memória",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.editTitle": "Título da memória",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.editBody": "Texto da memória",
|
||||
"rightSidebar.contextNotesTodo.memory.toast.saveFailed": "Não foi possível salvar a memória",
|
||||
"rightSidebar.contextNotesTodo.memory.toast.deleteFailed": "Não foi possível esquecer a memória",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.nothing": "O agente ainda não guardou nada aqui.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.noMatches": "Nenhuma memória guardada corresponde à sua busca.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.noProject": "Abra um projeto para ver o que o agente lembra sobre ele.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.unavailable": "Não foi possível carregar a memória guardada. Nada foi perdido — tente novamente.",
|
||||
"rightSidebar.contextNotesTodo.todo.clearCompleted": "Limpar completadas",
|
||||
"rightSidebar.contextNotesTodo.todo.inputPlaceholder": "Adicione uma tarefa pendente",
|
||||
"rightSidebar.contextNotesTodo.todo.addAria": "Adicionar tarefa pendente",
|
||||
@@ -1534,13 +1570,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
"rightSidebar.contextNotesTodo.todo.actions.delete": "Excluir \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.actions.send": "Enviar \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.actions.reorder": "Reordenar \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.resizeAria": "Redimensionar lista de tarefas",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.currentSession": "Enviar à sessão atual",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.newSession": "Enviar a uma nova sessão",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession": "Enviar a uma nova sessão de worktree",
|
||||
"rightSidebar.contextNotesTodo.plans.title": "Planos",
|
||||
"rightSidebar.contextNotesTodo.plans.filesSingle": "{count} arquivo",
|
||||
"rightSidebar.contextNotesTodo.plans.filesPlural": "{count} arquivos",
|
||||
"rightSidebar.contextNotesTodo.plans.importFromFile": "Importar plano de arquivo",
|
||||
"rightSidebar.contextNotesTodo.plans.empty": "Ainda não há planos salvos.",
|
||||
"rightSidebar.contextNotesTodo.plans.deletePlan": "Excluir plano",
|
||||
@@ -1560,6 +1592,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
"rightSidebar.contextNotesTodo.toast.sentToNewSession": "Tarefa enviada para uma nova sessão",
|
||||
"rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession": "Tarefa enviada para uma nova sessão de worktree",
|
||||
"rightSidebar.contextNotesTodo.toast.sendTodoFailed": "Não foi possível enviar a tarefa",
|
||||
"rightSidebar.contextNotesTodo.toast.updatePlanFailed": "Falha ao atualizar o plano",
|
||||
"rightSidebar.contextNotesTodo.toast.deletePlanFailed": "Não foi possível excluir o plano",
|
||||
"rightSidebar.contextNotesTodo.toast.planFileEmpty": "O arquivo do plano está vazio",
|
||||
"rightSidebar.contextNotesTodo.toast.importPlanFailed": "Não foi possível importar o plano",
|
||||
@@ -3033,6 +3066,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'fez uma pergunta',
|
||||
'chat.workStatus.section.contextBreakdown': 'Fontes de contexto',
|
||||
'chat.workStatus.breakdown.skills': 'Habilidades',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'nota',
|
||||
'chat.workStatus.breakdown.unpin': 'Desafixar do contexto',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'plano',
|
||||
'chat.workStatus.breakdown.memory': 'Memória do agente',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} fixado',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} fixados',
|
||||
'chat.workStatus.breakdown.mcp': 'Servidores MCP',
|
||||
'chat.workStatus.action.openChanges': 'Abrir alterações',
|
||||
'chat.workStatus.action.openGit': 'Abrir painel do Git',
|
||||
|
||||
@@ -981,6 +981,9 @@ export const settingsDict = {
|
||||
"settings.openchamber.tools.field.agentWebTool": "Інструмент OpenChamber Web",
|
||||
"settings.openchamber.tools.field.agentWebToolAria": "Увімкнути інструмент OpenChamber Web",
|
||||
"settings.openchamber.tools.field.agentWebToolInfo": "Дозвольте агентам переглядати сторінку в панелі браузера OpenChamber і взаємодіяти з нею: відкривати URL, читати вміст, клікати, вводити текст, гортати та перемикатися між мобільним і десктопним виглядом. Додає невеликий опис інструмента до кожної сесії. Застосовується після перезапуску OpenCode.",
|
||||
"settings.openchamber.tools.field.agentMemoryTool": "Інструмент памʼяті агента",
|
||||
"settings.openchamber.tools.field.agentMemoryToolAria": "Інструмент памʼяті агента",
|
||||
"settings.openchamber.tools.field.agentMemoryToolInfo": "Дозволяє агентам зберігати вивчене між сесіями у двох сховищах: що правдиве про вас і що правдиве про кожен проєкт. Сесії отримують перелік заголовків, щоб агент міг прочитати потрібний запис. Вимкнення прибирає інструмент, вкладку «Памʼять» і індекс у сесії. Діє після перезапуску OpenCode.",
|
||||
"settings.openchamber.opencodeCli.tooltipPrefix": "Додатковий абсолютний шлях до",
|
||||
"settings.openchamber.opencodeCli.tooltipSuffix": "бінарного файлу.",
|
||||
"settings.openchamber.opencodeCli.field.binaryPath": "Шлях до бінарного файлу OpenCode",
|
||||
|
||||
@@ -1189,12 +1189,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
"walkthrough.blocked.structuredOutput.descriptionUnknownModel": "Small model не підтримує структуровані відповіді, потрібні для розбору.",
|
||||
"contextRail.surface.plan.description": "Перегляд поточного плану",
|
||||
"contextRail.surface.pr.description": "Створюйте, переглядайте та зливайте pull request поточної гілки",
|
||||
"contextRail.surface.notes.description": "Нотатки, задачі та плани проєкту",
|
||||
"contextRail.surface.notes.description": "Нотатки, завдання, плани та памʼять агента для проєкту",
|
||||
"contextRail.surface.context.description": "Контекст сесії та використання токенів",
|
||||
"contextRail.surface.browser.description": "Вбудований браузер",
|
||||
"contextRail.surface.preview.description": "Перегляд дев-сервера",
|
||||
"contextRail.surface.chat.description": "Сесія, відкрита поруч",
|
||||
"contextRail.surface.notes": "Нотатки проєкту",
|
||||
"contextRail.surface.notes": "Знання проєкту",
|
||||
"contextRail.editorTree.toggle": "Перемкнути дерево файлів",
|
||||
"contextPanel.browser.open": "Відкрити панель браузера",
|
||||
"contextPanel.browser.addressAria": "Адреса браузера",
|
||||
@@ -1425,6 +1425,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
"planView.file.defaultName": "план",
|
||||
"planView.title.default": "План",
|
||||
"planView.error.saveFailed": "Не вдалося зберегти",
|
||||
"planView.error.loadFailed": "Не вдалося завантажити цей план",
|
||||
"planView.error.previewUnavailable": "Попередній перегляд недоступний",
|
||||
"planView.error.switchToEditMode": "Перейдіть у режим редагування, щоб усунути проблему.",
|
||||
"planView.error.writeFailed": "Помилка запису",
|
||||
@@ -1519,11 +1520,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
"diffView.hunk.unsupported": "Додавання окремих шматків до індексу не підтримується в цьому середовищі.",
|
||||
"rightSidebar.contextNotesTodo.plan.defaultTitle": "План",
|
||||
"rightSidebar.contextNotesTodo.empty.selectProject": "Виберіть проєкт, щоб додати нотатки та завдання.",
|
||||
"rightSidebar.contextNotesTodo.notes.title": "Швидкі нотатки - {project}",
|
||||
"rightSidebar.contextNotesTodo.notes.placeholder": "Зберігайте контекст, нагадування або посилання",
|
||||
"rightSidebar.contextNotesTodo.todo.title": "Todo",
|
||||
"rightSidebar.contextNotesTodo.todo.itemsSingle": "{count} пункт",
|
||||
"rightSidebar.contextNotesTodo.todo.itemsPlural": "пунктів: {count}",
|
||||
"rightSidebar.contextNotesTodo.notes.addAria": "Додати нотатку",
|
||||
"rightSidebar.contextNotesTodo.notes.empty": "Нотаток ще немає. Занотуйте контекст, нагадування або посилання.",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.expand": "Розгорнути нотатку",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.collapse": "Згорнути нотатку",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.delete": "Видалити нотатку",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.pin": "Закріпити в контексті агента",
|
||||
"rightSidebar.contextNotesTodo.notes.actions.unpin": "Відкріпити з контексту агента",
|
||||
"rightSidebar.contextNotesTodo.notes.source.selection": "З чату",
|
||||
"rightSidebar.contextNotesTodo.notes.source.agent": "Від агента",
|
||||
"rightSidebar.contextNotesTodo.search.placeholder": "Пошук",
|
||||
"rightSidebar.contextNotesTodo.search.clear": "Очистити пошук",
|
||||
"rightSidebar.contextNotesTodo.search.noResults": "Нічого не знайдено за запитом «{query}».",
|
||||
"rightSidebar.contextNotesTodo.toast.deleteNoteFailed": "Не вдалося видалити нотатку",
|
||||
"rightSidebar.contextNotesTodo.toast.createNoteFailed": "Не вдалося створити нотатку",
|
||||
"rightSidebar.contextNotesTodo.tabs.notes": "Нотатки",
|
||||
"rightSidebar.contextNotesTodo.tabs.todos": "Todo",
|
||||
"rightSidebar.contextNotesTodo.tabs.plans": "Плани",
|
||||
"rightSidebar.contextNotesTodo.plans.actions.back": "Назад до планів",
|
||||
"rightSidebar.contextNotesTodo.tabs.memory": "Памʼять",
|
||||
"rightSidebar.contextNotesTodo.sections.label": "Розділи контексту проєкту",
|
||||
"rightSidebar.contextNotesTodo.sections.resize": "Змінити ширину бічної панелі розділів",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.project": "Проєкт",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.label": "Область памʼяті",
|
||||
"rightSidebar.contextNotesTodo.memory.scope.global": "Про вас",
|
||||
"rightSidebar.contextNotesTodo.memory.type.fact": "факт",
|
||||
"rightSidebar.contextNotesTodo.memory.badge.new": "нове",
|
||||
"rightSidebar.contextNotesTodo.memory.flagged": "Не надсилається агенту — виглядає як інструкція",
|
||||
"rightSidebar.contextNotesTodo.memory.badge.changed": "змінено",
|
||||
"rightSidebar.contextNotesTodo.memory.type.preference": "вподобання",
|
||||
"rightSidebar.contextNotesTodo.memory.type.reference": "посилання",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.delete": "Забути цей запис",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.editTitle": "Заголовок запису",
|
||||
"rightSidebar.contextNotesTodo.memory.actions.editBody": "Текст запису",
|
||||
"rightSidebar.contextNotesTodo.memory.toast.saveFailed": "Не вдалося зберегти запис",
|
||||
"rightSidebar.contextNotesTodo.memory.toast.deleteFailed": "Не вдалося забути запис",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.nothing": "Агент ще нічого сюди не записав.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.noMatches": "Жоден збережений запис не відповідає пошуку.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.noProject": "Відкрийте проєкт, щоб побачити, що агент про нього памʼятає.",
|
||||
"rightSidebar.contextNotesTodo.memory.empty.unavailable": "Не вдалося завантажити памʼять. Нічого не втрачено — спробуйте ще раз.",
|
||||
"rightSidebar.contextNotesTodo.todo.clearCompleted": "Очистити завершені",
|
||||
"rightSidebar.contextNotesTodo.todo.inputPlaceholder": "Додати завдання",
|
||||
"rightSidebar.contextNotesTodo.todo.addAria": "Додати завдання",
|
||||
@@ -1534,13 +1570,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
"rightSidebar.contextNotesTodo.todo.actions.delete": "Видалити \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.actions.send": "Надіслати \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.actions.reorder": "Змінити порядок \"{text}\"",
|
||||
"rightSidebar.contextNotesTodo.todo.resizeAria": "Змінити розмір списку завдань",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.currentSession": "Надіслати до поточної сесії",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.newSession": "Надіслати до нової сесії",
|
||||
"rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession": "Надіслати до нової сесії в worktree",
|
||||
"rightSidebar.contextNotesTodo.plans.title": "Плани",
|
||||
"rightSidebar.contextNotesTodo.plans.filesSingle": "Файл: {count}",
|
||||
"rightSidebar.contextNotesTodo.plans.filesPlural": "Файлів: {count}",
|
||||
"rightSidebar.contextNotesTodo.plans.importFromFile": "Імпортувати план із файлу",
|
||||
"rightSidebar.contextNotesTodo.plans.empty": "Ще немає збережених планів.",
|
||||
"rightSidebar.contextNotesTodo.plans.deletePlan": "Видалити план",
|
||||
@@ -1560,6 +1592,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
"rightSidebar.contextNotesTodo.toast.sentToNewSession": "Завдання надіслано до нової сесії",
|
||||
"rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession": "Завдання надіслано до нової сесії в worktree",
|
||||
"rightSidebar.contextNotesTodo.toast.sendTodoFailed": "Не вдалося надіслати завдання",
|
||||
"rightSidebar.contextNotesTodo.toast.updatePlanFailed": "Не вдалося оновити план",
|
||||
"rightSidebar.contextNotesTodo.toast.deletePlanFailed": "Не вдалося видалити план",
|
||||
"rightSidebar.contextNotesTodo.toast.planFileEmpty": "Файл плану порожній",
|
||||
"rightSidebar.contextNotesTodo.toast.importPlanFailed": "Не вдалося імпортувати план",
|
||||
@@ -3033,6 +3066,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': 'поставив питання',
|
||||
'chat.workStatus.section.contextBreakdown': 'Джерела контексту',
|
||||
'chat.workStatus.breakdown.skills': 'Скіли',
|
||||
'chat.workStatus.breakdown.pinnedNote': 'нотатка',
|
||||
'chat.workStatus.breakdown.unpin': 'Відкріпити від контексту',
|
||||
'chat.workStatus.breakdown.pinnedPlan': 'план',
|
||||
'chat.workStatus.breakdown.memory': 'Памʼять агента',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '{count} закріплено',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '{count} закріплено',
|
||||
'chat.workStatus.breakdown.mcp': 'Сервери MCP',
|
||||
'chat.workStatus.action.openChanges': 'Відкрити зміни',
|
||||
'chat.workStatus.action.openGit': 'Відкрити панель Git',
|
||||
|
||||
@@ -981,6 +981,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'OpenChamber Web 工具',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': '启用 OpenChamber Web 工具',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': '让智能体在 OpenChamber 浏览器面板中查看并操作页面:打开网址、读取内容、点击、输入、滚动,以及在移动端与桌面端布局之间切换。会为每个会话添加少量工具说明。在 OpenCode 重启后生效。',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': '智能体记忆工具',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': '智能体记忆工具',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': '让智能体把学到的内容跨会话保留下来,分为两个存储:关于你的事实,以及关于每个项目的事实。会话会收到已存条目的标题,智能体可在相关时读取具体内容。关闭后将同时移除该工具、记忆标签页和会话索引。重启 OpenCode 后生效。',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': '可选的',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': '二进制绝对路径。',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'OpenCode 可执行文件路径',
|
||||
|
||||
@@ -1189,12 +1189,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': '小模型不支持导读所需的结构化响应。',
|
||||
'contextRail.surface.plan.description': '查看当前计划',
|
||||
'contextRail.surface.pr.description': '创建、审查并合并当前分支的拉取请求',
|
||||
'contextRail.surface.notes.description': '项目的笔记、待办和计划',
|
||||
'contextRail.surface.notes.description': '项目的笔记、待办、计划和智能体记忆',
|
||||
'contextRail.surface.context.description': '会话上下文与令牌用量',
|
||||
'contextRail.surface.browser.description': '内置网页浏览器',
|
||||
'contextRail.surface.preview.description': '开发服务器预览',
|
||||
'contextRail.surface.chat.description': '并排打开的会话',
|
||||
'contextRail.surface.notes': '项目笔记',
|
||||
'contextRail.surface.notes': '项目知识',
|
||||
'contextRail.editorTree.toggle': '切换文件树',
|
||||
'contextPanel.browser.open': '打开浏览器面板',
|
||||
'contextPanel.browser.addressAria': '浏览器地址',
|
||||
@@ -1425,6 +1425,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'planView.file.defaultName': 'plan',
|
||||
'planView.title.default': '计划',
|
||||
'planView.error.saveFailed': '保存失败',
|
||||
'planView.error.loadFailed': '无法加载此计划',
|
||||
'planView.error.previewUnavailable': '预览不可用',
|
||||
'planView.error.switchToEditMode': '请切换到编辑模式修复问题。',
|
||||
'planView.error.writeFailed': '写入失败',
|
||||
@@ -1507,11 +1508,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
'diffView.hunk.unsupported': '此运行环境不支持暂存单个代码块。',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': '计划',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': '请选择一个项目以添加笔记和待办事项。',
|
||||
'rightSidebar.contextNotesTodo.notes.title': '快速笔记 - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': '记录上下文、提醒或链接',
|
||||
'rightSidebar.contextNotesTodo.todo.title': '待办',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count} 项',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count} 项',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': '添加笔记',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': '还没有笔记。可以记录上下文、提醒或链接。',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': '展开笔记',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': '折叠笔记',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': '删除笔记',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': '固定到智能体上下文',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': '从智能体上下文取消固定',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': '来自对话',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': '来自智能体',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': '搜索',
|
||||
'rightSidebar.contextNotesTodo.search.clear': '清除搜索',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': '没有匹配 "{query}" 的内容。',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': '删除笔记失败',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': '创建笔记失败',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': '笔记',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': '待办',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': '计划',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': '返回计划列表',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': '记忆',
|
||||
'rightSidebar.contextNotesTodo.sections.label': '项目上下文分区',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': '调整分区侧栏宽度',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': '项目',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': '记忆范围',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': '关于你',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': '事实',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': '新增',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': '不会发送给智能体 — 读起来像指令',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': '已更改',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': '偏好',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': '参考',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': '删除这条记忆',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': '记忆标题',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': '记忆内容',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': '保存记忆失败',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': '删除记忆失败',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': '智能体还没有在这里存过内容。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': '没有匹配搜索的已存记忆。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': '打开一个项目,查看智能体记住了什么。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': '无法加载已存记忆。内容并未丢失,请重试。',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': '清除已完成',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': '添加待办',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': '添加待办',
|
||||
@@ -1522,13 +1558,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': '删除“{text}”',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': '发送“{text}”',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': '重新排序"{text}"',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': '调整待办列表大小',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': '发送到当前会话',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': '发送到新会话',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': '发送到新工作树会话',
|
||||
'rightSidebar.contextNotesTodo.plans.title': '计划',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count} 个文件',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count} 个文件',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': '从文件导入计划',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': '还没有已保存的计划。',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': '删除计划',
|
||||
@@ -1548,6 +1580,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': '待办已发送到新会话',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': '待办已发送到新的工作树会话',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': '发送待办失败',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': '更新计划失败',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': '删除计划失败',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': '计划文件为空',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': '导入计划失败',
|
||||
@@ -3033,6 +3066,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': '提出了问题',
|
||||
'chat.workStatus.section.contextBreakdown': '上下文来源',
|
||||
'chat.workStatus.breakdown.skills': '技能',
|
||||
'chat.workStatus.breakdown.pinnedNote': '笔记',
|
||||
'chat.workStatus.breakdown.unpin': '从上下文取消固定',
|
||||
'chat.workStatus.breakdown.pinnedPlan': '计划',
|
||||
'chat.workStatus.breakdown.memory': '智能体记忆',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '已固定 {count}',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '已固定 {count}',
|
||||
'chat.workStatus.breakdown.mcp': 'MCP 服务器',
|
||||
'chat.workStatus.action.openChanges': '打开更改',
|
||||
'chat.workStatus.action.openGit': '打开 Git 面板',
|
||||
|
||||
@@ -955,6 +955,9 @@ export const settingsDict = {
|
||||
'settings.openchamber.tools.field.agentWebTool': 'OpenChamber Web 工具',
|
||||
'settings.openchamber.tools.field.agentWebToolAria': '啟用 OpenChamber Web 工具',
|
||||
'settings.openchamber.tools.field.agentWebToolInfo': '讓代理在 OpenChamber 瀏覽器面板中檢視並操作頁面:開啟網址、讀取內容、點擊、輸入、捲動,以及在行動版與桌面版版面之間切換。會為每個工作階段加入少量工具說明。在 OpenCode 重新啟動後生效。',
|
||||
'settings.openchamber.tools.field.agentMemoryTool': '智慧代理記憶工具',
|
||||
'settings.openchamber.tools.field.agentMemoryToolAria': '智慧代理記憶工具',
|
||||
'settings.openchamber.tools.field.agentMemoryToolInfo': '讓代理把學到的內容跨工作階段保留下來,分為兩個儲存區:關於你的事實,以及關於每個專案的事實。工作階段會收到已儲存項目的標題,代理可在相關時讀取內容。關閉後會一併移除該工具、記憶分頁與工作階段索引。重新啟動 OpenCode 後生效。',
|
||||
'settings.openchamber.opencodeCli.tooltipPrefix': '可選的',
|
||||
'settings.openchamber.opencodeCli.tooltipSuffix': '二進位檔絕對路徑。',
|
||||
'settings.openchamber.opencodeCli.field.binaryPath': 'OpenCode 可執行檔路徑',
|
||||
|
||||
@@ -1201,12 +1201,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'walkthrough.blocked.structuredOutput.descriptionUnknownModel': '小模型不支援導讀所需的結構化回應。',
|
||||
'contextRail.surface.plan.description': '檢視目前計畫',
|
||||
'contextRail.surface.pr.description': '建立、審查並合併目前分支的提取請求',
|
||||
'contextRail.surface.notes.description': '專案的筆記、待辦與計畫',
|
||||
'contextRail.surface.notes.description': '專案的筆記、待辦、計畫與代理記憶',
|
||||
'contextRail.surface.context.description': '工作階段情境與權杖用量',
|
||||
'contextRail.surface.browser.description': '內建網頁瀏覽器',
|
||||
'contextRail.surface.preview.description': '開發伺服器預覽',
|
||||
'contextRail.surface.chat.description': '並排開啟的工作階段',
|
||||
'contextRail.surface.notes': '專案筆記',
|
||||
'contextRail.surface.notes': '專案知識',
|
||||
'contextRail.editorTree.toggle': '切換檔案樹',
|
||||
'contextPanel.browser.open': '開啟瀏覽器面板',
|
||||
'contextPanel.browser.addressAria': '瀏覽器網址',
|
||||
@@ -1435,6 +1435,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'planView.file.defaultName': 'plan',
|
||||
'planView.title.default': '計畫',
|
||||
'planView.error.saveFailed': '儲存失敗',
|
||||
'planView.error.loadFailed': '無法載入此計畫',
|
||||
'planView.error.previewUnavailable': '預覽無法使用',
|
||||
'planView.error.switchToEditMode': '請切換到編輯模式修復問題。',
|
||||
'planView.error.writeFailed': '寫入失敗',
|
||||
@@ -1517,11 +1518,46 @@ export const dict: Record<I18nKey, string> = {
|
||||
'diffView.hunk.unsupported': '此執行環境不支援暫存個別程式碼區塊。',
|
||||
'rightSidebar.contextNotesTodo.plan.defaultTitle': '計畫',
|
||||
'rightSidebar.contextNotesTodo.empty.selectProject': '請選擇一個專案以新增筆記和待辦事項。',
|
||||
'rightSidebar.contextNotesTodo.notes.title': '快速筆記 - {project}',
|
||||
'rightSidebar.contextNotesTodo.notes.placeholder': '記錄上下文、提醒或連結',
|
||||
'rightSidebar.contextNotesTodo.todo.title': '待辦',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsSingle': '{count} 項',
|
||||
'rightSidebar.contextNotesTodo.todo.itemsPlural': '{count} 項',
|
||||
'rightSidebar.contextNotesTodo.notes.addAria': '新增筆記',
|
||||
'rightSidebar.contextNotesTodo.notes.empty': '尚無筆記。可以記錄脈絡、提醒或連結。',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.expand': '展開筆記',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.collapse': '收合筆記',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.delete': '刪除筆記',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.pin': '釘選到代理上下文',
|
||||
'rightSidebar.contextNotesTodo.notes.actions.unpin': '從代理上下文取消釘選',
|
||||
'rightSidebar.contextNotesTodo.notes.source.selection': '來自對話',
|
||||
'rightSidebar.contextNotesTodo.notes.source.agent': '來自代理',
|
||||
'rightSidebar.contextNotesTodo.search.placeholder': '搜尋',
|
||||
'rightSidebar.contextNotesTodo.search.clear': '清除搜尋',
|
||||
'rightSidebar.contextNotesTodo.search.noResults': '沒有符合「{query}」的內容。',
|
||||
'rightSidebar.contextNotesTodo.toast.deleteNoteFailed': '刪除筆記失敗',
|
||||
'rightSidebar.contextNotesTodo.toast.createNoteFailed': '建立筆記失敗',
|
||||
'rightSidebar.contextNotesTodo.tabs.notes': '筆記',
|
||||
'rightSidebar.contextNotesTodo.tabs.todos': '待辦',
|
||||
'rightSidebar.contextNotesTodo.tabs.plans': '計畫',
|
||||
'rightSidebar.contextNotesTodo.plans.actions.back': '返回計畫列表',
|
||||
'rightSidebar.contextNotesTodo.tabs.memory': '記憶',
|
||||
'rightSidebar.contextNotesTodo.sections.label': '專案脈絡分區',
|
||||
'rightSidebar.contextNotesTodo.sections.resize': '調整分區側欄寬度',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.project': '專案',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.label': '記憶範圍',
|
||||
'rightSidebar.contextNotesTodo.memory.scope.global': '關於你',
|
||||
'rightSidebar.contextNotesTodo.memory.type.fact': '事實',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.new': '新增',
|
||||
'rightSidebar.contextNotesTodo.memory.flagged': '不會傳給代理 — 讀起來像指令',
|
||||
'rightSidebar.contextNotesTodo.memory.badge.changed': '已變更',
|
||||
'rightSidebar.contextNotesTodo.memory.type.preference': '偏好',
|
||||
'rightSidebar.contextNotesTodo.memory.type.reference': '參考',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.delete': '刪除這則記憶',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editTitle': '記憶標題',
|
||||
'rightSidebar.contextNotesTodo.memory.actions.editBody': '記憶內容',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.saveFailed': '儲存記憶失敗',
|
||||
'rightSidebar.contextNotesTodo.memory.toast.deleteFailed': '刪除記憶失敗',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.nothing': '代理還沒有在這裡儲存內容。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noMatches': '沒有符合搜尋的已儲存記憶。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.noProject': '開啟專案即可查看代理記住了什麼。',
|
||||
'rightSidebar.contextNotesTodo.memory.empty.unavailable': '無法載入已儲存的記憶。內容並未遺失,請再試一次。',
|
||||
'rightSidebar.contextNotesTodo.todo.clearCompleted': '清除已完成',
|
||||
'rightSidebar.contextNotesTodo.todo.inputPlaceholder': '新增待辦',
|
||||
'rightSidebar.contextNotesTodo.todo.addAria': '新增待辦',
|
||||
@@ -1532,13 +1568,9 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.todo.actions.delete': '刪除「{text}」',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.send': '傳送「{text}」',
|
||||
'rightSidebar.contextNotesTodo.todo.actions.reorder': '重新排序「{text}」',
|
||||
'rightSidebar.contextNotesTodo.todo.resizeAria': '調整待辦清單大小',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.currentSession': '傳送到目前會話',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newSession': '傳送到新會話',
|
||||
'rightSidebar.contextNotesTodo.todo.sendMenu.newWorktreeSession': '傳送到新 worktree 會話',
|
||||
'rightSidebar.contextNotesTodo.plans.title': '計畫',
|
||||
'rightSidebar.contextNotesTodo.plans.filesSingle': '{count} 個檔案',
|
||||
'rightSidebar.contextNotesTodo.plans.filesPlural': '{count} 個檔案',
|
||||
'rightSidebar.contextNotesTodo.plans.importFromFile': '從檔案匯入計畫',
|
||||
'rightSidebar.contextNotesTodo.plans.empty': '還沒有已儲存的計畫。',
|
||||
'rightSidebar.contextNotesTodo.plans.deletePlan': '刪除計畫',
|
||||
@@ -1558,6 +1590,7 @@ export const dict: Record<I18nKey, string> = {
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewSession': '待辦已傳送到新會話',
|
||||
'rightSidebar.contextNotesTodo.toast.sentToNewWorktreeSession': '待辦已傳送到新的 worktree 會話',
|
||||
'rightSidebar.contextNotesTodo.toast.sendTodoFailed': '傳送待辦失敗',
|
||||
'rightSidebar.contextNotesTodo.toast.updatePlanFailed': '更新計畫失敗',
|
||||
'rightSidebar.contextNotesTodo.toast.deletePlanFailed': '刪除計畫失敗',
|
||||
'rightSidebar.contextNotesTodo.toast.planFileEmpty': '計畫檔案為空',
|
||||
'rightSidebar.contextNotesTodo.toast.importPlanFailed': '匯入計畫失敗',
|
||||
@@ -3032,6 +3065,12 @@ export const dict: Record<I18nKey, string> = {
|
||||
'chat.workStatus.subagent.askedQuestion': '提出了問題',
|
||||
'chat.workStatus.section.contextBreakdown': '上下文來源',
|
||||
'chat.workStatus.breakdown.skills': '技能',
|
||||
'chat.workStatus.breakdown.pinnedNote': '筆記',
|
||||
'chat.workStatus.breakdown.unpin': '從脈絡取消釘選',
|
||||
'chat.workStatus.breakdown.pinnedPlan': '計畫',
|
||||
'chat.workStatus.breakdown.memory': '代理記憶',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgeSingle': '已釘選 {count}',
|
||||
'chat.workStatus.breakdown.pinnedKnowledgePlural': '已釘選 {count}',
|
||||
'chat.workStatus.breakdown.mcp': 'MCP 伺服器',
|
||||
'chat.workStatus.action.openChanges': '開啟變更',
|
||||
'chat.workStatus.action.openGit': '開啟 Git 面板',
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
/**
|
||||
* OpenChamber project-level configuration service.
|
||||
* Stores per-project settings in ~/.config/openchamber/<projectId>.json.
|
||||
* Stores per-project settings in ~/.config/openchamber/projects/<projectId>.json.
|
||||
* Migrates from legacy <project>/.openchamber/openchamber.json.
|
||||
*
|
||||
* Notes, todos, and plan files used to live here too. They are now server-owned
|
||||
* (`packages/web/server/lib/project-context`) and reached through
|
||||
* `@/lib/projectContextApi`; what remains here is the client-owned rest.
|
||||
*/
|
||||
|
||||
import type { FilesAPI } from './api/types';
|
||||
@@ -34,9 +38,6 @@ interface OpenChamberConfig {
|
||||
projectPath?: string;
|
||||
'setup-worktree'?: string[];
|
||||
'setup-worktree-wait'?: boolean;
|
||||
projectNotes?: string;
|
||||
projectTodos?: OpenChamberProjectTodoItem[];
|
||||
projectPlanFiles?: OpenChamberProjectPlanFileLink[];
|
||||
projectActions?: OpenChamberProjectAction[];
|
||||
projectActionsPrimaryId?: string;
|
||||
draftStarters?: DraftStarterRef[];
|
||||
@@ -60,42 +61,10 @@ export interface OpenChamberProjectActionsState {
|
||||
primaryActionId: string | null;
|
||||
}
|
||||
|
||||
export interface OpenChamberProjectTodoItem {
|
||||
id: string;
|
||||
text: string;
|
||||
completed: boolean;
|
||||
createdAt: number;
|
||||
}
|
||||
|
||||
export interface OpenChamberProjectPlanFileLink {
|
||||
id: string;
|
||||
path: string;
|
||||
createdAt: number;
|
||||
}
|
||||
|
||||
export interface OpenChamberProjectPlanFile {
|
||||
title: string;
|
||||
body: string;
|
||||
raw: string;
|
||||
path: string;
|
||||
}
|
||||
|
||||
export interface OpenChamberProjectNotesTodos {
|
||||
notes: string;
|
||||
todos: OpenChamberProjectTodoItem[];
|
||||
}
|
||||
|
||||
export interface OpenChamberProjectContextData extends OpenChamberProjectNotesTodos {
|
||||
plans: OpenChamberProjectPlanFileLink[];
|
||||
}
|
||||
|
||||
export const OPENCHAMBER_PROJECT_NOTES_MAX_LENGTH = 3000;
|
||||
export const OPENCHAMBER_PROJECT_TODO_TEXT_MAX_LENGTH = 120;
|
||||
const OPENCHAMBER_PROJECT_ACTION_NAME_MAX_LENGTH = 80;
|
||||
const OPENCHAMBER_PROJECT_ACTION_COMMAND_MAX_LENGTH = 4000;
|
||||
const OPENCHAMBER_PROJECT_ACTION_OPEN_URL_MAX_LENGTH = 2000;
|
||||
const OPENCHAMBER_PROJECT_ACTION_DESKTOP_FORWARD_MAX_LENGTH = 300;
|
||||
const OPENCHAMBER_PROJECT_PLAN_TITLE_MAX_LENGTH = 160;
|
||||
|
||||
const OPENCHAMBER_ACTION_PLATFORM_SET = new Set<OpenChamberProjectActionPlatform>(['macos', 'linux', 'windows']);
|
||||
|
||||
@@ -271,93 +240,6 @@ const trimToMaxLength = (value: string, maxLength: number): string => {
|
||||
return value.slice(0, maxLength);
|
||||
};
|
||||
|
||||
const sanitizeProjectNotes = (value: unknown): string => {
|
||||
if (typeof value !== 'string') {
|
||||
return '';
|
||||
}
|
||||
return trimToMaxLength(value, OPENCHAMBER_PROJECT_NOTES_MAX_LENGTH);
|
||||
};
|
||||
|
||||
const sanitizeProjectTodoItems = (value: unknown): OpenChamberProjectTodoItem[] => {
|
||||
if (!Array.isArray(value)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const sanitized: OpenChamberProjectTodoItem[] = [];
|
||||
for (const entry of value) {
|
||||
if (!entry || typeof entry !== 'object') {
|
||||
continue;
|
||||
}
|
||||
|
||||
const record = entry as {
|
||||
id?: unknown;
|
||||
text?: unknown;
|
||||
completed?: unknown;
|
||||
createdAt?: unknown;
|
||||
};
|
||||
|
||||
const id = typeof record.id === 'string' ? record.id.trim() : '';
|
||||
const textRaw = typeof record.text === 'string' ? record.text : '';
|
||||
const text = trimToMaxLength(textRaw.trim(), OPENCHAMBER_PROJECT_TODO_TEXT_MAX_LENGTH);
|
||||
if (!id || !text) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const completed = Boolean(record.completed);
|
||||
const createdAt =
|
||||
typeof record.createdAt === 'number' && Number.isFinite(record.createdAt) && record.createdAt >= 0
|
||||
? record.createdAt
|
||||
: Date.now();
|
||||
|
||||
sanitized.push({
|
||||
id,
|
||||
text,
|
||||
completed,
|
||||
createdAt,
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
return sanitized;
|
||||
};
|
||||
|
||||
const sanitizeProjectPlanFileLinks = (value: unknown): OpenChamberProjectPlanFileLink[] => {
|
||||
if (!Array.isArray(value)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const sanitized: OpenChamberProjectPlanFileLink[] = [];
|
||||
const seenIds = new Set<string>();
|
||||
|
||||
for (const entry of value) {
|
||||
if (!entry || typeof entry !== 'object') {
|
||||
continue;
|
||||
}
|
||||
|
||||
const record = entry as {
|
||||
id?: unknown;
|
||||
path?: unknown;
|
||||
createdAt?: unknown;
|
||||
};
|
||||
|
||||
const id = typeof record.id === 'string' ? record.id.trim() : '';
|
||||
const path = typeof record.path === 'string' ? record.path.trim() : '';
|
||||
const createdAt =
|
||||
typeof record.createdAt === 'number' && Number.isFinite(record.createdAt) && record.createdAt >= 0
|
||||
? record.createdAt
|
||||
: Date.now();
|
||||
|
||||
if (!id || !path || seenIds.has(id)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
seenIds.add(id);
|
||||
sanitized.push({ id, path, createdAt });
|
||||
}
|
||||
|
||||
return sanitized.sort((a, b) => b.createdAt - a.createdAt);
|
||||
};
|
||||
|
||||
const sanitizeProjectActionPlatforms = (value: unknown): OpenChamberProjectActionPlatform[] => {
|
||||
if (!Array.isArray(value)) {
|
||||
return [];
|
||||
@@ -457,97 +339,6 @@ const sanitizeProjectActionsState = (value: {
|
||||
};
|
||||
};
|
||||
|
||||
const sanitizeProjectNotesAndTodos = (value: {
|
||||
notes?: unknown;
|
||||
todos?: unknown;
|
||||
} | null | undefined): OpenChamberProjectNotesTodos => {
|
||||
return {
|
||||
notes: sanitizeProjectNotes(value?.notes),
|
||||
todos: sanitizeProjectTodoItems(value?.todos),
|
||||
};
|
||||
};
|
||||
|
||||
const sanitizeProjectContextData = (value: {
|
||||
notes?: unknown;
|
||||
todos?: unknown;
|
||||
plans?: unknown;
|
||||
} | null | undefined): OpenChamberProjectContextData => {
|
||||
const notesAndTodos = sanitizeProjectNotesAndTodos(value);
|
||||
return {
|
||||
...notesAndTodos,
|
||||
plans: sanitizeProjectPlanFileLinks(value?.plans),
|
||||
};
|
||||
};
|
||||
|
||||
const slugifyPlanTitle = (value: string): string => {
|
||||
const normalized = value
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
.replace(/[`*_#>[\](){}.!?,:;"']/g, '')
|
||||
.replace(/\s+/g, '-')
|
||||
.replace(/[^a-z0-9-]/g, '-')
|
||||
.replace(/-+/g, '-')
|
||||
.replace(/^-+|-+$/g, '');
|
||||
|
||||
return normalized || 'plan';
|
||||
};
|
||||
|
||||
const sanitizePlanTitle = (value: string): string => {
|
||||
return trimToMaxLength(value.trim(), OPENCHAMBER_PROJECT_PLAN_TITLE_MAX_LENGTH);
|
||||
};
|
||||
|
||||
const createProjectPlanId = (): string => {
|
||||
if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') {
|
||||
return crypto.randomUUID();
|
||||
}
|
||||
return `plan_${Date.now()}_${Math.random().toString(36).slice(2, 8)}`;
|
||||
};
|
||||
|
||||
const getProjectStorageDirectory = async (project: ProjectRef): Promise<string | null> => {
|
||||
const base = await getUserProjectsDirectory();
|
||||
const safeId = resolveConfigProjectId(project);
|
||||
if (!base || !safeId) {
|
||||
return null;
|
||||
}
|
||||
return joinPath(base, safeId);
|
||||
};
|
||||
|
||||
const getProjectPlansDirectory = async (project: ProjectRef): Promise<string | null> => {
|
||||
const projectDirectory = await getProjectStorageDirectory(project);
|
||||
if (!projectDirectory) {
|
||||
return null;
|
||||
}
|
||||
return joinPath(projectDirectory, 'plans');
|
||||
};
|
||||
|
||||
const formatProjectPlanMarkdown = (title: string, body: string): string => {
|
||||
const normalizedTitle = sanitizePlanTitle(title) || 'Plan';
|
||||
const normalizedBody = body.trim();
|
||||
return normalizedBody
|
||||
? `# ${normalizedTitle}\n\n${normalizedBody}`
|
||||
: `# ${normalizedTitle}\n`;
|
||||
};
|
||||
|
||||
export const parseProjectPlanMarkdown = (raw: string): { title: string; body: string } => {
|
||||
const text = typeof raw === 'string' ? raw : '';
|
||||
const normalized = text.replace(/\r\n?/g, '\n');
|
||||
const match = normalized.match(/^\s*#\s+(.+?)\s*(?:\n+|$)/);
|
||||
if (match) {
|
||||
const title = sanitizePlanTitle(match[1]);
|
||||
const body = normalized.slice(match[0].length).replace(/^\n+/, '');
|
||||
return {
|
||||
title: title || 'Plan',
|
||||
body,
|
||||
};
|
||||
}
|
||||
|
||||
const firstNonEmptyLine = normalized.split('\n').map((line) => line.trim()).find(Boolean) || 'Plan';
|
||||
return {
|
||||
title: sanitizePlanTitle(firstNonEmptyLine.replace(/^#+\s*/, '')) || 'Plan',
|
||||
body: normalized.trim(),
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Read the config for a project.
|
||||
* Returns null if file doesn't exist or is invalid.
|
||||
@@ -721,171 +512,6 @@ export async function saveProjectDraftStarters(project: ProjectRef, starters: Dr
|
||||
return updateOpenChamberConfig(project, { draftStarters: sanitizeStarterRefs(starters) });
|
||||
}
|
||||
|
||||
export async function getProjectNotesAndTodos(project: ProjectRef): Promise<OpenChamberProjectNotesTodos> {
|
||||
const config = await readOpenChamberConfig(project);
|
||||
return sanitizeProjectNotesAndTodos({
|
||||
notes: config?.projectNotes,
|
||||
todos: config?.projectTodos,
|
||||
});
|
||||
}
|
||||
|
||||
export async function saveProjectNotesAndTodos(
|
||||
project: ProjectRef,
|
||||
value: OpenChamberProjectNotesTodos
|
||||
): Promise<boolean> {
|
||||
const sanitized = sanitizeProjectNotesAndTodos({
|
||||
notes: value.notes,
|
||||
todos: value.todos,
|
||||
});
|
||||
|
||||
return updateOpenChamberConfig(project, {
|
||||
projectNotes: sanitized.notes,
|
||||
projectTodos: sanitized.todos,
|
||||
});
|
||||
}
|
||||
|
||||
export async function getProjectContextData(project: ProjectRef): Promise<OpenChamberProjectContextData> {
|
||||
const config = await readOpenChamberConfig(project);
|
||||
return sanitizeProjectContextData({
|
||||
notes: config?.projectNotes,
|
||||
todos: config?.projectTodos,
|
||||
plans: config?.projectPlanFiles,
|
||||
});
|
||||
}
|
||||
|
||||
async function getProjectPlanFiles(project: ProjectRef): Promise<OpenChamberProjectPlanFileLink[]> {
|
||||
const config = await readOpenChamberConfig(project);
|
||||
return sanitizeProjectPlanFileLinks(config?.projectPlanFiles);
|
||||
}
|
||||
|
||||
async function saveProjectPlanFiles(
|
||||
project: ProjectRef,
|
||||
value: OpenChamberProjectPlanFileLink[]
|
||||
): Promise<boolean> {
|
||||
const sanitized = sanitizeProjectPlanFileLinks(value);
|
||||
return updateOpenChamberConfig(project, {
|
||||
projectPlanFiles: sanitized,
|
||||
});
|
||||
}
|
||||
|
||||
export async function readProjectPlanFile(path: string): Promise<OpenChamberProjectPlanFile | null> {
|
||||
const trimmedPath = typeof path === 'string' ? path.trim() : '';
|
||||
if (!trimmedPath) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const raw = await readTextFile(trimmedPath);
|
||||
if (raw === null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const parsed = parseProjectPlanMarkdown(raw);
|
||||
return {
|
||||
title: parsed.title,
|
||||
body: parsed.body,
|
||||
raw,
|
||||
path: trimmedPath,
|
||||
};
|
||||
}
|
||||
|
||||
const deleteFile = async (path: string): Promise<boolean> => {
|
||||
const runtimeFiles = getRuntimeFilesAPI();
|
||||
if (runtimeFiles?.delete) {
|
||||
try {
|
||||
const result = await runtimeFiles.delete(path);
|
||||
if (result?.success !== false) {
|
||||
return true;
|
||||
}
|
||||
} catch {
|
||||
// fall through
|
||||
}
|
||||
}
|
||||
|
||||
const res = await postJson<{ success?: boolean }>(`${getBaseUrl()}/fs/delete`, { path });
|
||||
return Boolean(res.ok);
|
||||
};
|
||||
|
||||
export async function deleteProjectPlanFile(
|
||||
project: ProjectRef,
|
||||
planId: string
|
||||
): Promise<boolean> {
|
||||
const trimmedId = typeof planId === 'string' ? planId.trim() : '';
|
||||
if (!trimmedId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const existing = await getProjectPlanFiles(project);
|
||||
const target = existing.find((entry) => entry.id === trimmedId);
|
||||
if (!target) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const next = existing.filter((entry) => entry.id !== trimmedId);
|
||||
const saved = await saveProjectPlanFiles(project, next);
|
||||
if (!saved) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Best-effort: remove underlying markdown file, ignore failure.
|
||||
await deleteFile(target.path).catch(() => false);
|
||||
return true;
|
||||
}
|
||||
|
||||
export async function importProjectPlanFileFromContent(
|
||||
project: ProjectRef,
|
||||
content: string,
|
||||
fallbackTitle?: string
|
||||
): Promise<OpenChamberProjectPlanFileLink | null> {
|
||||
const raw = typeof content === 'string' ? content : '';
|
||||
if (!raw.trim()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const parsed = parseProjectPlanMarkdown(raw);
|
||||
const title = parsed.title || sanitizePlanTitle(fallbackTitle ?? '') || 'Plan';
|
||||
return createProjectPlanFile(project, { title, body: parsed.body });
|
||||
}
|
||||
|
||||
export async function createProjectPlanFile(
|
||||
project: ProjectRef,
|
||||
value: { title: string; body: string }
|
||||
): Promise<OpenChamberProjectPlanFileLink | null> {
|
||||
const plansDirectory = await getProjectPlansDirectory(project);
|
||||
if (!plansDirectory) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const title = sanitizePlanTitle(value.title) || 'Plan';
|
||||
const createdAt = Date.now();
|
||||
const id = createProjectPlanId();
|
||||
const filePath = joinPath(plansDirectory, `${createdAt}-${slugifyPlanTitle(title)}.md`);
|
||||
|
||||
const projectDirectory = await getProjectStorageDirectory(project);
|
||||
if (!projectDirectory) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const createdProjectDir = await mkdirp(projectDirectory);
|
||||
const createdPlansDir = createdProjectDir ? await mkdirp(plansDirectory) : false;
|
||||
if (!createdProjectDir || !createdPlansDir) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const wrote = await writeTextFile(filePath, formatProjectPlanMarkdown(title, value.body));
|
||||
if (!wrote) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const existing = await getProjectPlanFiles(project);
|
||||
const nextEntry = { id, path: filePath, createdAt };
|
||||
const saved = await saveProjectPlanFiles(project, [nextEntry, ...existing]);
|
||||
if (!saved) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return nextEntry;
|
||||
}
|
||||
|
||||
export async function getProjectActionsState(project: ProjectRef): Promise<OpenChamberProjectActionsState> {
|
||||
const config = await readOpenChamberConfig(project);
|
||||
return sanitizeProjectActionsState({
|
||||
|
||||
@@ -31,7 +31,22 @@ type BrowserControlRequestEvent = {
|
||||
parameters: Record<string, unknown>;
|
||||
};
|
||||
|
||||
type OpenChamberEvent = ScheduledTaskRanEvent | SessionCreatedEvent | BrowserControlRequestEvent;
|
||||
/**
|
||||
* The agent changed what it remembers. Carries only which store moved, not the
|
||||
* entries: listeners re-read from the server, so the event cannot go stale
|
||||
* between being sent and being handled.
|
||||
*/
|
||||
type AgentMemoryChangedEvent = {
|
||||
type: 'agent-memory-changed';
|
||||
scope: 'global' | 'project';
|
||||
projectId?: string;
|
||||
};
|
||||
|
||||
type OpenChamberEvent =
|
||||
| ScheduledTaskRanEvent
|
||||
| SessionCreatedEvent
|
||||
| BrowserControlRequestEvent
|
||||
| AgentMemoryChangedEvent;
|
||||
type Listener = (event: OpenChamberEvent) => void;
|
||||
|
||||
let eventSource: EventSource | null = null;
|
||||
@@ -118,6 +133,22 @@ const dispatchFromEnvelope = (envelope: { type: string; properties: unknown }) =
|
||||
return;
|
||||
}
|
||||
|
||||
if (envelope.type === 'openchamber:agent-memory-changed') {
|
||||
const properties = getEventProperties(envelope.properties);
|
||||
const scope = properties?.scope === 'project' ? 'project' : 'global';
|
||||
const nextEvent: AgentMemoryChangedEvent = {
|
||||
type: 'agent-memory-changed',
|
||||
scope,
|
||||
...(typeof properties?.projectId === 'string' && properties.projectId.length > 0
|
||||
? { projectId: properties.projectId }
|
||||
: {}),
|
||||
};
|
||||
for (const listener of listeners) {
|
||||
listener(nextEvent);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (envelope.type === 'openchamber:session-created') {
|
||||
const properties = getEventProperties(envelope.properties);
|
||||
const sessionId = typeof properties?.sessionId === 'string' ? properties.sessionId : '';
|
||||
|
||||
@@ -555,6 +555,7 @@ const materializeAuthoritativeUiSettings = (settings: DesktopSettings): DesktopS
|
||||
showOpenCodeUpdateNotifications: defaults.showOpenCodeUpdateNotifications,
|
||||
agentControlToolEnabled: defaults.agentControlToolEnabled,
|
||||
agentWebToolEnabled: defaults.agentWebToolEnabled,
|
||||
agentMemoryToolEnabled: defaults.agentMemoryToolEnabled,
|
||||
showToolFileIcons: defaults.showToolFileIcons,
|
||||
codeBlockLineWrap: defaults.codeBlockLineWrap,
|
||||
showTurnChangedFiles: defaults.showTurnChangedFiles,
|
||||
@@ -737,6 +738,19 @@ const applyDesktopUiPreferences = (settings: DesktopSettings) => {
|
||||
) {
|
||||
store.setAgentWebToolEnabled(settings.agentWebToolEnabled);
|
||||
}
|
||||
if (
|
||||
typeof settings.agentMemoryToolEnabled === 'boolean'
|
||||
&& settings.agentMemoryToolEnabled !== store.agentMemoryToolEnabled
|
||||
) {
|
||||
store.setAgentMemoryToolEnabled(settings.agentMemoryToolEnabled);
|
||||
}
|
||||
// Server-owned: it says whether this build has the feature at all.
|
||||
if (
|
||||
typeof settings.agentMemoryFeatureAvailable === 'boolean'
|
||||
&& settings.agentMemoryFeatureAvailable !== store.agentMemoryFeatureAvailable
|
||||
) {
|
||||
store.setAgentMemoryFeatureAvailable(settings.agentMemoryFeatureAvailable);
|
||||
}
|
||||
if (typeof settings.showToolFileIcons === 'boolean' && settings.showToolFileIcons !== store.showToolFileIcons) {
|
||||
store.setShowToolFileIcons(settings.showToolFileIcons);
|
||||
}
|
||||
@@ -1382,6 +1396,9 @@ const sanitizeWebSettings = (payload: unknown): DesktopSettings | null => {
|
||||
if (typeof candidate.agentWebToolEnabled === 'boolean') {
|
||||
result.agentWebToolEnabled = candidate.agentWebToolEnabled;
|
||||
}
|
||||
if (typeof candidate.agentMemoryToolEnabled === 'boolean') {
|
||||
result.agentMemoryToolEnabled = candidate.agentMemoryToolEnabled;
|
||||
}
|
||||
if (typeof candidate.openCodeUpdateToastDismissedVersion === 'string') {
|
||||
result.openCodeUpdateToastDismissedVersion = candidate.openCodeUpdateToastDismissedVersion.trim().slice(0, 128);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,339 @@
|
||||
/**
|
||||
* Client for the OpenChamber project context routes.
|
||||
*
|
||||
* Notes, todos, and plan markdown are owned by the server
|
||||
* (`packages/web/server/lib/project-context`). This module only speaks HTTP:
|
||||
* it resolves no storage paths and never reads plan files directly, so the
|
||||
* shared UI has no knowledge of where any of it lives on disk.
|
||||
*
|
||||
* Every function throws on failure. An authoritative read must never resolve
|
||||
* to an empty value that a caller could mistake for "the project has nothing".
|
||||
*/
|
||||
|
||||
import { createProjectIdFromPath } from './projectId';
|
||||
import { runtimeFetch } from './runtime-fetch';
|
||||
|
||||
export interface ProjectTodoItem {
|
||||
id: string;
|
||||
text: string;
|
||||
completed: boolean;
|
||||
createdAt: number;
|
||||
}
|
||||
|
||||
export interface ProjectPlanLink {
|
||||
id: string;
|
||||
file: string;
|
||||
title: string;
|
||||
createdAt: number;
|
||||
pinned: boolean;
|
||||
}
|
||||
|
||||
export type ProjectNoteSource = 'manual' | 'selection' | 'agent';
|
||||
|
||||
export interface ProjectNote {
|
||||
id: string;
|
||||
body: string;
|
||||
createdAt: number;
|
||||
updatedAt: number;
|
||||
source: ProjectNoteSource;
|
||||
pinned: boolean;
|
||||
/** The message this note was distilled from, when it came from a chat. */
|
||||
origin?: { sessionId: string; messageId?: string };
|
||||
}
|
||||
|
||||
interface ProjectContextData {
|
||||
notes: ProjectNote[];
|
||||
todos: ProjectTodoItem[];
|
||||
plans: ProjectPlanLink[];
|
||||
}
|
||||
|
||||
interface ProjectPlanContent extends ProjectPlanLink {
|
||||
body: string;
|
||||
raw: string;
|
||||
}
|
||||
|
||||
export interface ProjectRef {
|
||||
id: string;
|
||||
path: string;
|
||||
}
|
||||
|
||||
export const PROJECT_NOTE_BODY_MAX_LENGTH = 3000;
|
||||
export const PROJECT_TODO_TEXT_MAX_LENGTH = 120;
|
||||
|
||||
/**
|
||||
* Split a plan document into title and body, mirroring the server's own rule so
|
||||
* an unsaved editor buffer and an imported file title exactly the way the
|
||||
* stored file will.
|
||||
*/
|
||||
export const parsePlanMarkdown = (raw: string, fallback: string): { title: string; body: string } => {
|
||||
const normalized = (typeof raw === 'string' ? raw : '').replace(/\r\n?/g, '\n');
|
||||
const heading = normalized.match(/^\s*#\s+(.+?)\s*(?:\n+|$)/);
|
||||
if (heading) {
|
||||
return {
|
||||
title: heading[1].trim() || fallback,
|
||||
body: normalized.slice(heading[0].length).replace(/^\n+/, ''),
|
||||
};
|
||||
}
|
||||
const firstLine = normalized.split('\n').map((line) => line.trim()).find(Boolean);
|
||||
return {
|
||||
title: firstLine ? firstLine.replace(/^#+\s*/, '').trim() || fallback : fallback,
|
||||
body: normalized.trim(),
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* The storage id is derived from the project path, not from `project.id`.
|
||||
* Project ids in settings have churned across versions; the path-derived id is
|
||||
* what the server uses to name the config file, so both sides must agree on it.
|
||||
*/
|
||||
export const resolveProjectContextId = (project: ProjectRef | null | undefined): string => {
|
||||
const projectPath = typeof project?.path === 'string' ? project.path.trim() : '';
|
||||
if (!projectPath) {
|
||||
return '';
|
||||
}
|
||||
return createProjectIdFromPath(projectPath);
|
||||
};
|
||||
|
||||
const basePath = (projectId: string): string => `/api/project-context/${encodeURIComponent(projectId)}`;
|
||||
|
||||
const requireProjectId = (project: ProjectRef): string => {
|
||||
const projectId = resolveProjectContextId(project);
|
||||
if (!projectId) {
|
||||
throw new Error('Project has no resolvable path');
|
||||
}
|
||||
return projectId;
|
||||
};
|
||||
|
||||
const readErrorMessage = async (response: Response, fallback: string): Promise<string> => {
|
||||
try {
|
||||
const payload = await response.json() as { error?: unknown } | null;
|
||||
if (payload && typeof payload.error === 'string' && payload.error.trim()) {
|
||||
return payload.error;
|
||||
}
|
||||
} catch {
|
||||
// Fall through to the generic message.
|
||||
}
|
||||
return `${fallback} (${response.status})`;
|
||||
};
|
||||
|
||||
const parseContext = (payload: unknown): ProjectContextData => {
|
||||
const record = payload as Partial<ProjectContextData> | null;
|
||||
if (!record || typeof record !== 'object') {
|
||||
throw new Error('Malformed project context response');
|
||||
}
|
||||
return {
|
||||
notes: Array.isArray(record.notes) ? record.notes : [],
|
||||
todos: Array.isArray(record.todos) ? record.todos : [],
|
||||
plans: Array.isArray(record.plans) ? record.plans : [],
|
||||
};
|
||||
};
|
||||
|
||||
export const fetchProjectContext = async (
|
||||
project: ProjectRef,
|
||||
options: { signal?: AbortSignal } = {},
|
||||
): Promise<ProjectContextData> => {
|
||||
const response = await runtimeFetch(basePath(requireProjectId(project)), {
|
||||
cache: 'no-store',
|
||||
signal: options.signal,
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to load project context'));
|
||||
}
|
||||
return parseContext(await response.json());
|
||||
};
|
||||
|
||||
export const saveProjectTodos = async (
|
||||
project: ProjectRef,
|
||||
todos: ProjectTodoItem[],
|
||||
): Promise<ProjectContextData> => {
|
||||
const response = await runtimeFetch(`${basePath(requireProjectId(project))}/todos`, {
|
||||
method: 'PUT',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ todos }),
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to save project todos'));
|
||||
}
|
||||
return parseContext(await response.json());
|
||||
};
|
||||
|
||||
export const createProjectNote = async (
|
||||
project: ProjectRef,
|
||||
value: { body: string; source?: ProjectNoteSource; origin?: { sessionId: string; messageId?: string } },
|
||||
): Promise<{ note: ProjectNote; context: ProjectContextData }> => {
|
||||
const response = await runtimeFetch(`${basePath(requireProjectId(project))}/notes`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({
|
||||
body: value.body,
|
||||
...(value.source ? { source: value.source } : {}),
|
||||
...(value.origin ? { origin: value.origin } : {}),
|
||||
}),
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to create note'));
|
||||
}
|
||||
const payload = await response.json() as { note?: ProjectNote; context?: unknown };
|
||||
if (!payload?.note) {
|
||||
throw new Error('Malformed note create response');
|
||||
}
|
||||
return { note: payload.note, context: parseContext(payload.context) };
|
||||
};
|
||||
|
||||
/**
|
||||
* Patch a note. Only the supplied fields are sent, so pinning cannot roll back
|
||||
* an edit that landed between the two requests.
|
||||
*
|
||||
* Resolves `null` when the note is gone.
|
||||
*/
|
||||
export const updateProjectNote = async (
|
||||
project: ProjectRef,
|
||||
noteId: string,
|
||||
patch: { body?: string; pinned?: boolean },
|
||||
): Promise<ProjectNote | null> => {
|
||||
const response = await runtimeFetch(
|
||||
`${basePath(requireProjectId(project))}/notes/${encodeURIComponent(noteId)}`,
|
||||
{
|
||||
method: 'PATCH',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify(patch),
|
||||
},
|
||||
);
|
||||
if (response.status === 404) {
|
||||
return null;
|
||||
}
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to save note'));
|
||||
}
|
||||
const payload = await response.json() as { note?: ProjectNote };
|
||||
if (!payload?.note) {
|
||||
throw new Error('Malformed note save response');
|
||||
}
|
||||
return payload.note;
|
||||
};
|
||||
|
||||
export const deleteProjectNote = async (
|
||||
project: ProjectRef,
|
||||
noteId: string,
|
||||
): Promise<ProjectContextData> => {
|
||||
const response = await runtimeFetch(
|
||||
`${basePath(requireProjectId(project))}/notes/${encodeURIComponent(noteId)}`,
|
||||
{ method: 'DELETE' },
|
||||
);
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to delete note'));
|
||||
}
|
||||
return parseContext(await response.json());
|
||||
};
|
||||
|
||||
/** Resolves `null` when the plan is gone. */
|
||||
export const setProjectPlanPinned = async (
|
||||
project: ProjectRef,
|
||||
planId: string,
|
||||
pinned: boolean,
|
||||
): Promise<ProjectPlanLink | null> => {
|
||||
const response = await runtimeFetch(
|
||||
`${basePath(requireProjectId(project))}/plans/${encodeURIComponent(planId)}`,
|
||||
{
|
||||
method: 'PATCH',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ pinned }),
|
||||
},
|
||||
);
|
||||
if (response.status === 404) {
|
||||
return null;
|
||||
}
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to update plan'));
|
||||
}
|
||||
const payload = await response.json() as { plan?: ProjectPlanLink };
|
||||
return payload?.plan ?? null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Plans are addressed by id. The caller supplies content, never a path, so a
|
||||
* plan can only ever be created inside the project's own plans directory.
|
||||
*/
|
||||
export const createProjectPlan = async (
|
||||
project: ProjectRef,
|
||||
value: { title: string; body: string },
|
||||
): Promise<{ plan: ProjectPlanLink; context: ProjectContextData }> => {
|
||||
const response = await runtimeFetch(`${basePath(requireProjectId(project))}/plans`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ title: value.title, body: value.body }),
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to create plan'));
|
||||
}
|
||||
const payload = await response.json() as { plan?: ProjectPlanLink; context?: unknown };
|
||||
if (!payload?.plan) {
|
||||
throw new Error('Malformed plan create response');
|
||||
}
|
||||
return { plan: payload.plan, context: parseContext(payload.context) };
|
||||
};
|
||||
|
||||
/** Resolves `null` only when the plan or its markdown is genuinely gone. */
|
||||
export const fetchProjectPlan = async (
|
||||
project: ProjectRef,
|
||||
planId: string,
|
||||
options: { signal?: AbortSignal } = {},
|
||||
): Promise<ProjectPlanContent | null> => {
|
||||
const response = await runtimeFetch(
|
||||
`${basePath(requireProjectId(project))}/plans/${encodeURIComponent(planId)}`,
|
||||
{ cache: 'no-store', signal: options.signal },
|
||||
);
|
||||
if (response.status === 404) {
|
||||
return null;
|
||||
}
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to read plan'));
|
||||
}
|
||||
return await response.json() as ProjectPlanContent;
|
||||
};
|
||||
|
||||
/**
|
||||
* Overwrite a plan's markdown with the editor's exact buffer.
|
||||
*
|
||||
* Resolves `null` when the plan or its file is gone, so an editor open on a
|
||||
* deleted plan reports that instead of silently recreating it.
|
||||
*/
|
||||
export const updateProjectPlan = async (
|
||||
project: ProjectRef,
|
||||
planId: string,
|
||||
raw: string,
|
||||
): Promise<{ plan: ProjectPlanLink; raw: string } | null> => {
|
||||
const response = await runtimeFetch(
|
||||
`${basePath(requireProjectId(project))}/plans/${encodeURIComponent(planId)}`,
|
||||
{
|
||||
method: 'PUT',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ raw }),
|
||||
},
|
||||
);
|
||||
if (response.status === 404) {
|
||||
return null;
|
||||
}
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to save plan'));
|
||||
}
|
||||
const payload = await response.json() as { plan?: ProjectPlanLink; raw?: string };
|
||||
if (!payload?.plan) {
|
||||
throw new Error('Malformed plan save response');
|
||||
}
|
||||
return { plan: payload.plan, raw: typeof payload.raw === 'string' ? payload.raw : raw };
|
||||
};
|
||||
|
||||
export const deleteProjectPlan = async (
|
||||
project: ProjectRef,
|
||||
planId: string,
|
||||
): Promise<ProjectContextData> => {
|
||||
const response = await runtimeFetch(
|
||||
`${basePath(requireProjectId(project))}/plans/${encodeURIComponent(planId)}`,
|
||||
{ method: 'DELETE' },
|
||||
);
|
||||
if (!response.ok) {
|
||||
throw new Error(await readErrorMessage(response, 'Failed to delete plan'));
|
||||
}
|
||||
return parseContext(await response.json());
|
||||
};
|
||||
@@ -0,0 +1,114 @@
|
||||
/**
|
||||
* Project knowledge a session still owes, as decided by the server.
|
||||
*
|
||||
* The client neither assembles this text nor tracks what it has sent. It used
|
||||
* to do both, which meant a session started without a UI got nothing, and a
|
||||
* conversation that was compacted kept a tab-local belief that the agent still
|
||||
* had context the summary had just removed.
|
||||
*
|
||||
* Nothing here throws. A message must go out even when its background cannot
|
||||
* be fetched: sending without the block costs the agent some context, failing
|
||||
* the send costs the user their message.
|
||||
*/
|
||||
|
||||
import { runtimeFetch } from './runtime-fetch';
|
||||
|
||||
interface SessionKnowledge {
|
||||
/** Empty when the session already carries what it needs. */
|
||||
text: string;
|
||||
/** Reported back once the message carrying the text has actually gone out. */
|
||||
signature: string;
|
||||
}
|
||||
|
||||
const EMPTY: SessionKnowledge = { text: '', signature: '' };
|
||||
|
||||
export const fetchSessionKnowledge = async (
|
||||
directory: string | null,
|
||||
sessionId: string | null,
|
||||
): Promise<SessionKnowledge> => {
|
||||
if (!directory) {
|
||||
return EMPTY;
|
||||
}
|
||||
|
||||
try {
|
||||
const params = new URLSearchParams({ directory });
|
||||
if (sessionId) {
|
||||
params.set('sessionId', sessionId);
|
||||
}
|
||||
const response = await runtimeFetch(`/api/session-knowledge?${params.toString()}`, {
|
||||
cache: 'no-store',
|
||||
});
|
||||
if (!response.ok) {
|
||||
return EMPTY;
|
||||
}
|
||||
const payload = await response.json() as Partial<SessionKnowledge> | null;
|
||||
return {
|
||||
text: typeof payload?.text === 'string' ? payload.text : '',
|
||||
signature: typeof payload?.signature === 'string' ? payload.signature : '',
|
||||
};
|
||||
} catch {
|
||||
return EMPTY;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Recorded after the send resolves, never before: a failed send must carry the
|
||||
* block again rather than assume the agent already saw it.
|
||||
*/
|
||||
export const reportSessionKnowledgeDelivered = async (
|
||||
directory: string | null,
|
||||
sessionId: string | null,
|
||||
signature: string,
|
||||
): Promise<void> => {
|
||||
if (!directory || !sessionId || !signature) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
await runtimeFetch('/api/session-knowledge/delivered', {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ directory, sessionId, signature }),
|
||||
});
|
||||
} catch {
|
||||
// Only means the block may be sent once more.
|
||||
}
|
||||
};
|
||||
|
||||
export interface SessionKnowledgeSummary {
|
||||
notes: Array<{ id: string; body: string }>;
|
||||
plans: Array<{ id: string; title: string }>;
|
||||
memory: { global: number; project: number };
|
||||
}
|
||||
|
||||
const EMPTY_SUMMARY: SessionKnowledgeSummary = { notes: [], plans: [], memory: { global: 0, project: 0 } };
|
||||
|
||||
/** What the session is carrying, for display. Never throws; shows nothing instead. */
|
||||
export const fetchSessionKnowledgeSummary = async (
|
||||
directory: string | null,
|
||||
): Promise<SessionKnowledgeSummary> => {
|
||||
if (!directory) {
|
||||
return EMPTY_SUMMARY;
|
||||
}
|
||||
|
||||
try {
|
||||
const response = await runtimeFetch(
|
||||
`/api/session-knowledge/summary?${new URLSearchParams({ directory }).toString()}`,
|
||||
{ cache: 'no-store' },
|
||||
);
|
||||
if (!response.ok) {
|
||||
return EMPTY_SUMMARY;
|
||||
}
|
||||
const payload = await response.json() as Partial<SessionKnowledgeSummary> | null;
|
||||
return {
|
||||
notes: Array.isArray(payload?.notes) ? payload.notes : [],
|
||||
plans: Array.isArray(payload?.plans) ? payload.plans : [],
|
||||
memory: {
|
||||
global: typeof payload?.memory?.global === 'number' ? payload.memory.global : 0,
|
||||
project: typeof payload?.memory?.project === 'number' ? payload.memory.project : 0,
|
||||
},
|
||||
};
|
||||
} catch {
|
||||
return EMPTY_SUMMARY;
|
||||
}
|
||||
};
|
||||
@@ -1,4 +1,5 @@
|
||||
import type { I18nKey } from '@/lib/i18n/store';
|
||||
import { useUIStore } from '@/stores/useUIStore';
|
||||
import type { SettingsPageSlug, SettingsRuntimeContext } from './metadata';
|
||||
import { getSettingsPageMeta } from './metadata';
|
||||
|
||||
@@ -489,6 +490,16 @@ const SETTINGS_SEARCH_ITEMS: readonly SettingsSearchItem[] = [
|
||||
keywords: ['agent', 'tool', 'web', 'browser', 'page', 'preview', 'openchamber'],
|
||||
isAvailable: (ctx) => !ctx.isVSCode,
|
||||
},
|
||||
{
|
||||
id: 'sessions.agent-memory-tool',
|
||||
page: 'general',
|
||||
titleKey: 'settings.openchamber.tools.field.agentMemoryTool',
|
||||
descriptionKey: 'settings.openchamber.tools.field.agentMemoryToolInfo',
|
||||
keywords: ['agent', 'tool', 'memory', 'remember', 'recall', 'preferences', 'openchamber'],
|
||||
// Unreleased: searching for a setting that is not rendered would take the
|
||||
// user to an empty spot on the page.
|
||||
isAvailable: (ctx) => !ctx.isVSCode && useUIStore.getState().agentMemoryFeatureAvailable,
|
||||
},
|
||||
{
|
||||
id: 'git.github-account',
|
||||
page: 'git',
|
||||
|
||||
@@ -104,9 +104,12 @@ export const CONTEXT_SURFACES: readonly ContextSurfaceDescriptor[] = [
|
||||
{
|
||||
id: 'notes',
|
||||
descriptionKey: 'contextRail.surface.notes.description',
|
||||
defaultWidthFraction: 1 / 3,
|
||||
// As wide as the files surface: this panel now carries a sidebar and a
|
||||
// content column, and a third of the window leaves the content column too
|
||||
// narrow to read a note in.
|
||||
defaultWidthFraction: 3 / 5,
|
||||
mode: 'notes',
|
||||
icon: 'sticky-note',
|
||||
icon: 'book-marked',
|
||||
labelKey: 'contextRail.surface.notes',
|
||||
availability: 'always',
|
||||
},
|
||||
|
||||
@@ -201,6 +201,13 @@ const TOOL_METADATA: Record<string, ToolMetadata> = {
|
||||
inputFields: []
|
||||
},
|
||||
|
||||
openchamber_memory: {
|
||||
displayName: 'OpenChamber Memory',
|
||||
category: 'system',
|
||||
outputLanguage: 'json',
|
||||
inputFields: []
|
||||
},
|
||||
|
||||
plan_enter: {
|
||||
displayName: 'Plan Mode',
|
||||
category: 'ai',
|
||||
|
||||
Reference in New Issue
Block a user