@@ -35,7 +35,7 @@ import {
3535} from '../cache/index.ts'
3636import { getInstalledGenerators , introLine , isInteractive , promptForAgent , resolveAgent , sharedArgs , suggestPrepareHook } from '../cli-helpers.ts'
3737import { defaultFeatures , hasCompletedWizard , readConfig , registerProject } from '../core/config.ts'
38- import { timedSpinner } from '../core/formatting.ts'
38+ import { timedSpinner , todayIsoDate } from '../core/formatting.ts'
3939import { parsePackageNames , parsePackages , readLock , removeLockEntry , writeLock } from '../core/lockfile.ts'
4040import { parseFrontmatter } from '../core/markdown.ts'
4141import { parseSkillInput , resolveSkillName , toStoragePackageName } from '../core/prefix.ts'
@@ -467,7 +467,7 @@ async function syncSinglePackage(packageSpec: string, config: SyncConfig): Promi
467467 version,
468468 repo : repoSlug ,
469469 source : existingLock . source ,
470- syncedAt : new Date ( ) . toISOString ( ) . split ( 'T' ) [ 0 ] ,
470+ syncedAt : todayIsoDate ( ) ,
471471 generator : 'skilld' ,
472472 } )
473473
@@ -579,7 +579,7 @@ async function syncSinglePackage(packageSpec: string, config: SyncConfig): Promi
579579 version,
580580 repo : repoSlug ,
581581 source : resources . docSource ,
582- syncedAt : new Date ( ) . toISOString ( ) . split ( 'T' ) [ 0 ] ,
582+ syncedAt : todayIsoDate ( ) ,
583583 generator : 'skilld' ,
584584 } )
585585
@@ -1255,7 +1255,7 @@ export async function exportPortablePrompts(packageSpec: string, opts: {
12551255 version,
12561256 repo : repoSlug ,
12571257 source : resources . docSource ,
1258- syncedAt : new Date ( ) . toISOString ( ) . split ( 'T' ) [ 0 ] ,
1258+ syncedAt : todayIsoDate ( ) ,
12591259 generator : 'skilld' ,
12601260 } )
12611261
0 commit comments