[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-1752":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":14,"subscribersCount":14,"size":14,"stars1d":15,"stars7d":16,"stars30d":17,"stars90d":14,"forks30d":14,"starsTrendScore":18,"compositeScore":19,"rankGlobal":9,"rankLanguage":9,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":23,"hasPages":21,"topics":24,"createdAt":9,"pushedAt":9,"updatedAt":25,"readmeContent":26,"aiSummary":27,"trendingCount":14,"starSnapshotCount":14,"syncStatus":28,"lastSyncTime":29,"discoverSource":30},1752,"agent-session-resume","hacktivist123\u002Fagent-session-resume","hacktivist123","Cross-agent session resume skill for Claude Code, Codex, Antigravity, and OpenCode.",null,"Python",220,12,1,0,5,40,47,15,3.34,"MIT License",false,"main",true,[],"2026-06-12 02:00:32","# agent-session-resume\n\n`agent-session-resume` is a reusable skill for continuing work from a prior AI coding-agent session without losing context, duplicating completed work, or overwriting unrelated changes.\n\nIt is designed for handoffs between tools such as Claude Code, Codex, Antigravity, and OpenCode.\n\nInstead of asking the next agent to guess what happened, the skill makes it produce a handoff checkpoint first: the prior goal, what is already done, what is still open, and the next action to take before editing.\n\n## What It Does\n\nThe skill gives an agent a disciplined resume workflow:\n\n- locate the most relevant prior transcript, export, artifact, or session summary\n- read the full available context before taking action\n- reconstruct the original goal, completed work, decisions, and stopping point\n- extract explicit and implicit tasks\n- classify each task as `DONE`, `PARTIALLY DONE`, or `NOT DONE`\n- continue from the first unfinished step without repeating completed work\n\n## Repository Layout\n\n```text\n.claude-plugin\u002F\n  marketplace.json\n  plugin.json\nskills\u002F\n  agent-session-resume\u002F\n    SKILL.md\n    agents\u002F\n      openai.yaml\n    references\u002F\n      antigravity.md\n      claude-code.md\n      codex.md\n      opencode.md\n```\n\n## Install\n\nThis repo is distributed primarily as a skill. The canonical installable package is:\n\n```text\nskills\u002Fagent-session-resume\n```\n\n### Codex\n\nAsk Codex to install it:\n\n```text\nInstall the skill from hacktivist123\u002Fagent-session-resume at skills\u002Fagent-session-resume\n```\n\nManual install:\n\n```bash\ntmp_dir=\"$(mktemp -d)\"\ngit clone --depth 1 https:\u002F\u002Fgithub.com\u002Fhacktivist123\u002Fagent-session-resume \"$tmp_dir\u002Fagent-session-resume\"\nmkdir -p \"${CODEX_HOME:-$HOME\u002F.codex}\u002Fskills\"\ncp -R \"$tmp_dir\u002Fagent-session-resume\u002Fskills\u002Fagent-session-resume\" \"${CODEX_HOME:-$HOME\u002F.codex}\u002Fskills\u002F\"\n```\n\nRestart Codex after installing.\n\n### Claude Code\n\nRecommended plugin install:\n\n```text\n\u002Fplugin marketplace add hacktivist123\u002Fagent-session-resume\n\u002Fplugin install agent-session-resume@hacktivist123\n\u002Freload-plugins\n```\n\nCLI equivalent:\n\n```bash\nclaude plugin marketplace add hacktivist123\u002Fagent-session-resume\nclaude plugin install agent-session-resume@hacktivist123\n```\n\nAfter CLI install, restart Claude Code or run `\u002Freload-plugins` in Claude Code.\n\nThis installs the skill as a Claude Code plugin command:\n\n```text\n\u002Fagent-session-resume:agent-session-resume\n```\n\nThe plugin points at the same canonical `skills\u002Fagent-session-resume` folder used by the standalone skill package.\n\nAlternative standalone skill install:\n\n```text\nInstall the standalone Claude Code skill from https:\u002F\u002Fgithub.com\u002Fhacktivist123\u002Fagent-session-resume.\nCopy the repository folder skills\u002Fagent-session-resume into ~\u002F.claude\u002Fskills\u002Fagent-session-resume.\nDo not use the Claude Code plugin marketplace for this standalone flow.\n```\n\nManual standalone install:\n\n```bash\ntmp_dir=\"$(mktemp -d)\"\ngit clone --depth 1 https:\u002F\u002Fgithub.com\u002Fhacktivist123\u002Fagent-session-resume \"$tmp_dir\u002Fagent-session-resume\"\nmkdir -p \"$HOME\u002F.claude\u002Fskills\"\ncp -R \"$tmp_dir\u002Fagent-session-resume\u002Fskills\u002Fagent-session-resume\" \"$HOME\u002F.claude\u002Fskills\u002F\"\n```\n\nRestart Claude Code after installing.\n\nUse the standalone install if you prefer the shorter `\u002Fagent-session-resume` command or do not want to use Claude Code plugins.\n\nChoose one Claude Code install path. Installing both the plugin and standalone skill can show duplicate short command suggestions; the namespaced plugin command avoids ambiguity.\n\n### Other Agents\n\nFor agents that do not support skill folders directly, load `skills\u002Fagent-session-resume\u002FSKILL.md` as the main instruction document and use the relevant platform file from `skills\u002Fagent-session-resume\u002Freferences\u002F`.\n\n## Usage\n\nShort prompts should be enough; the skill carries the platform-specific discovery rules.\n\nFor more examples, see the [cookbook](docs\u002FCookbook.md).\n\nContinue the most recent Codex session for the current repository:\n\n```text\n\u002Fagent-session-resume:agent-session-resume\n\nContinue the most recent Codex session for this repository.\n```\n\nContinue from a specific handoff file:\n\n```text\n\u002Fagent-session-resume:agent-session-resume\n\nContinue from .\u002Fhandoff.md.\n```\n\nExpected first response shape:\n\n```text\nBrief context summary\nTask status breakdown\nClear next action\n```\n\nAfter that checkpoint, the agent should continue from the first unfinished step without redoing completed work.\n\n## Claude Code Notes\n\nRecommended plugin install gives the namespaced command:\n\n```text\n\u002Fagent-session-resume:agent-session-resume\n```\n\nAlternative standalone install gives the shorter skill command:\n\n```text\n\u002Fagent-session-resume\n```\n\nIf the plugin command does not appear after installation, run `\u002Freload-plugins` and check the marketplace\u002Fplugin manifests with:\n\n```bash\nclaude plugin validate .\nclaude plugin validate .claude-plugin\u002Fplugin.json\nclaude plugin validate .claude-plugin\u002Fmarketplace.json\n```\n\n## Checks\n\nRun the package and fixture validators:\n\n```bash\npython3 scripts\u002Fvalidate-skill-package.py\npython3 scripts\u002Fvalidate-fixtures.py\npython3 scripts\u002Fvalidate-trigger-matrix.py\nclaude plugin validate .\nclaude plugin validate .claude-plugin\u002Fplugin.json\nclaude plugin validate .claude-plugin\u002Fmarketplace.json\n```\n\nThe standalone skill under `skills\u002Fagent-session-resume` is the source of truth. The optional Claude plugin wrapper uses the repo root as its source, so it shares that canonical skill folder instead of maintaining a second copy. The fixtures in `tests\u002Ffixtures\u002F` cover Claude Code, Codex, Antigravity, and OpenCode handoff shapes. Each scenario pairs sample session material with the expected context summary, task status breakdown, and next action. `tests\u002Ftrigger-matrix.json` tracks prompt coverage for manual or automated trigger testing.\n\n## License\n\nMIT\n","`agent-session-resume` 是一个用于在不同AI编码助手如Claude Code、Codex、Antigravity和OpenCode之间无缝切换会话的工具，确保不会丢失上下文或重复已完成的工作。其核心功能包括自动定位相关的历史记录或工件、重建原始目标与完成情况、分类任务状态，并从第一个未完成步骤继续工作。该技能采用Python编写，具有良好的可复用性和跨平台支持特性。适用于需要在多个AI辅助开发工具间频繁切换且希望保持连续性的工作场景，比如协作编程项目或者多阶段软件开发过程。",2,"2026-06-11 02:45:48","CREATED_QUERY"]