Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计未展示

lovstudio%3acc-migrate-sessionlovstudio%3acc 迁移会话

Agent Skill

lovstudio%3acc-migrate-session 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

225

周安装

9

GitHub Stars

45

下载量

73
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:lovstudio%3acc-migrate-session(lovstudio%3acc 迁移会话)
来源仓库:https://github.com/lovstudio/skills
仓库路径:skills/lovstudio%3Acc-migrate-session
安装命令:
npx skills add https://github.com/lovstudio/skills --skill lovstudio:cc-migrate-session
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/lovstudio/skills --skill lovstudio:cc-migrate-session

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合在需要围绕代码变更或协作事项进行整理时使用。
  • 可结合来源仓库与原始 README 继续核验具体用法。
  • 安装前建议确认权限范围与维护状态。lovstudio%3acc-migrate-session 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

lovstudio:cc-migrate-session

Moves the session store ~/.claude/projects/<slug>/ from the old path-slug to the new one and rewrites every "cwd" field inside the jsonl files. After this, claude --resume from the new directory will see all prior sessions.

When to Trigger

YES — invoke this skill when:

  • User says the project folder moved / was renamed at the filesystem level
  • User mentions both FROM and TO paths, OR mentions one and the current cwd implies the other
  • User complains that claude --resume no longer shows history after moving a folder
  • User wants to "recover" sessions from a path they used to work in

NO — don't invoke when:

  • User is renaming a file, function, variable, or branch (not the project root)
  • User is asking a general question about CC's storage model (just explain, don't migrate)
  • Paths are ambiguous — ask first

Workflow

Step 1 — Gather FROM and TO

Infer from the conversation first. Typical patterns:

User saidFROMTO
"我把项目从 /a 搬到了 /b"/a/b
"this project used to be at /old" (in new cwd)/oldprocess.cwd() (current)
"本项目已迁移到 /new" (in old cwd)process.cwd() (current)/new
"I renamed ~/foo to ~/bar"~/foo~/bar

If either side is ambiguous, ask once with AskUserQuestion. Don't guess.

Always expand ~ and resolve to absolute paths before running the CLI.

Step 2 — Run dry-run + json to preview

npx -y @lovstudio/cc-migrate-session <FROM> <TO> --dry-run --json

Parse the JSON. Tell the user:

  • How many sessions were found
  • Total size
  • Warn if toDirExists is true (destination slug dir already exists — merge risk)
  • Show the FROM and TO slugs so the user can sanity-check the path mapping

If sessionCount === 0, stop. Tell the user either (a) the FROM path is wrong, or (b) CC never ran there. Do NOT proceed.

Step 3 — Confirm with user

Use AskUserQuestion (or inline yes/no) asking: "Migrate N sessions from to?"

Only proceed on explicit yes.

Step 4 — Execute

npx -y @lovstudio/cc-migrate-session <FROM> <TO> --yes --json

Parse phase: "done" output. Extract:

  • rewrites (total cwd lines changed)
  • restartHint.cd and restartHint.command

Step 5 — Tell user to restart CC

Output something like:

✓ Migrated N session(s), rewrote M cwd lines.

To load them, restart Claude Code in the new location:

  cd <TO>
  claude --resume

(The original session dir at ~/.claude/projects/<old-slug>/ is untouched —
you can delete it after verifying the new location works.)

IMPORTANT: The CURRENT Claude Code session (the one running this skill) cannot "switch" its own cwd mid-session. The user must exit and re-invoke claude from the new directory. State this clearly.

CLI Reference

npx -y @lovstudio/cc-migrate-session <FROM> <TO> [options]

OptionPurpose
-y, --yesSkip confirmation prompt
--dry-runShow plan, don't write
--jsonMachine-readable output (use this from the skill)
--projects-dir <dir>Override CC projects dir (default ~/.claude/projects)

Slug Rule (FYI)

CC computes the slug by replacing every non-alphanumeric character with -. So:

  • /Users/mark/my-project-Users-mark-my-project
  • /Users/mark/.claude-Users-mark--claude (double - because . is non-alnum)
  • /Users/mark/@手工川-Users-mark----- (one per @ and each CJK char)

The CLI handles this automatically — don't try to hand-compute it.

Safety

  • The old dir is NEVER deleted by this skill. It's a copy-then-rewrite, not a move.
  • Tell the user to verify claude --resume works in the new location before rm'ing the old slug dir.
  • If destination slug dir already exists, the CLI merges (overwriting conflicting jsonls). Warn the user.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.98%
按下载量换算24

Claude

30.64%
按下载量换算22

Cursor

20.38%
按下载量换算15

Gemini CLI

9.52%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills