refactor: remove legacy symlink migration code
CI / check (pull_request) Failing after 7m43s

Remove migrateStorageIfNeeded() which created symlinks from
~/.uncaged/workflow → ~/.uwf and ~/.uncaged/json-cas → ~/.ocas.

This was temporary migration support. Users who still have old paths
can run a one-time copy manually.

Zero 'uncaged' references remain in active codebase.
This commit is contained in:
2026-06-03 00:22:13 +08:00
parent ad3a292314
commit 4306935dbc
3 changed files with 3 additions and 80 deletions
+1 -3
View File
@@ -30,9 +30,7 @@ import {
import { parseTimeInput } from "./commands/thread-time-parser.js";
import { cmdWorkflowAdd, cmdWorkflowList, cmdWorkflowShow } from "./commands/workflow.js";
import { formatOutput, type OutputFormat } from "./format.js";
import { migrateStorageIfNeeded, resolveStorageRoot } from "./store.js";
migrateStorageIfNeeded();
import { resolveStorageRoot } from "./store.js";
function writeOutput(data: unknown): void {
const fmt = program.opts().format as OutputFormat;