@@ -63,7 +63,7 @@ export function createSyncService(ctx: SyncServiceContext): SyncService {
6363 startupSync : async ( ) => {
6464 const config = await loadSyncConfig ( locations ) ;
6565 if ( ! config ) {
66- await showToast ( ctx , 'Configure opencode-sync with /sync-init.' , 'info' ) ;
66+ await showToast ( ctx , 'Configure opencode-synced with /sync-init.' , 'info' ) ;
6767 return ;
6868 }
6969 try {
@@ -75,7 +75,7 @@ export function createSyncService(ctx: SyncServiceContext): SyncService {
7575 status : async ( ) => {
7676 const config = await loadSyncConfig ( locations ) ;
7777 if ( ! config ) {
78- return 'opencode-sync is not configured. Run /sync-init to set it up.' ;
78+ return 'opencode-synced is not configured. Run /sync-init to set it up.' ;
7979 }
8080
8181 const repoRoot = resolveRepoRoot ( config , locations ) ;
@@ -145,7 +145,7 @@ export function createSyncService(ctx: SyncServiceContext): SyncService {
145145 await ensureSecretsPolicy ( ctx , config ) ;
146146
147147 const lines = [
148- 'opencode-sync configured.' ,
148+ 'opencode-synced configured.' ,
149149 `Repo: ${ repoIdentifier } ${ created ? ' (created)' : '' } ` ,
150150 `Branch: ${ resolveRepoBranch ( config ) } ` ,
151151 `Local repo: ${ repoRoot } ` ,
@@ -320,7 +320,9 @@ async function getConfigOrThrow(
320320) : Promise < ReturnType < typeof normalizeSyncConfig > > {
321321 const config = await loadSyncConfig ( locations ) ;
322322 if ( ! config ) {
323- throw new SyncConfigMissingError ( 'Missing opencode-sync config. Run /sync-init to set it up.' ) ;
323+ throw new SyncConfigMissingError (
324+ 'Missing opencode-synced config. Run /sync-init to set it up.'
325+ ) ;
324326 }
325327 return config ;
326328}
@@ -414,7 +416,7 @@ async function showToast(
414416 message : string ,
415417 variant : ToastVariant
416418) : Promise < void > {
417- await ctx . client . tui . showToast ( { body : { message : `opencode-sync : ${ message } ` , variant } } ) ;
419+ await ctx . client . tui . showToast ( { body : { message : `opencode-synced : ${ message } ` , variant } } ) ;
418420}
419421
420422function formatError ( error : unknown ) : string {
@@ -438,7 +440,7 @@ async function analyzeAndDecideResolution(
438440 const statusOutput = changes . join ( '\n' ) ;
439441
440442 const prompt = [
441- 'You are analyzing uncommitted changes in an opencode-sync repository.' ,
443+ 'You are analyzing uncommitted changes in an opencode-synced repository.' ,
442444 'Decide whether to commit these changes or discard them.' ,
443445 '' ,
444446 'IMPORTANT: Only choose "commit" if the changes appear to be legitimate config updates.' ,
0 commit comments