claude-code-recap 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -5
- package/package.json +20 -10
- package/skills/recap/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -4,10 +4,16 @@
|
|
|
4
4
|
|
|
5
5
|
Claude Code's built-in `/resume` only lists sessions for the directory you are standing in. After a reboot, a crash, or a week of jumping between five repos, there is no way to answer "what was I working on, and where did I leave off". `recap` answers that in one command, and can re-open a whole working set in terminal tabs.
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/claude-code-recap)
|
|
8
|
+
[](https://www.npmjs.com/package/claude-code-recap)
|
|
9
|
+
[](https://github.com/noluyorAbi/claude-code-recap/actions/workflows/ci.yml)
|
|
10
|
+
[](LICENSE)
|
|
11
|
+
|
|
12
|
+
[](https://code.claude.com/docs/en/skills)
|
|
13
|
+
[](https://www.python.org/)
|
|
14
|
+
[](package.json)
|
|
15
|
+
[](#requirements)
|
|
16
|
+
[](#contributing)
|
|
11
17
|
|
|
12
18
|
<a href="assets/demo.mp4"><img src="assets/demo.gif" alt="recap listing recent Claude Code sessions across several projects, then re-opening them in terminal tabs" width="100%"></a>
|
|
13
19
|
|
|
@@ -27,7 +33,7 @@ The GIF above is a downsampled loop. The full-quality recording is [`assets/demo
|
|
|
27
33
|
|
|
28
34
|
## <img src="assets/icons/download.svg" width="16" align="center"> Install
|
|
29
35
|
|
|
30
|
-
|
|
36
|
+
Three ways in, all live. The plugin marketplace is the native path; `npx` and `curl | sh` install the same skill into `~/.claude/skills/recap`.
|
|
31
37
|
|
|
32
38
|
### 1. Plugin marketplace (recommended)
|
|
33
39
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-recap",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Claude Code session manager: list and resume recent Claude Code sessions across every project. Paste-ready resume command, --pick to jump in, --open to reopen tabs. Skill, CLI, and plugin. Offline.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"claude-code-recap": "bin/cli.mjs"
|
|
@@ -21,19 +21,29 @@
|
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"claude-code",
|
|
24
|
-
"claude
|
|
24
|
+
"claude",
|
|
25
|
+
"anthropic",
|
|
25
26
|
"claude-code-skill",
|
|
27
|
+
"claude-code-skills",
|
|
28
|
+
"claude-skills",
|
|
26
29
|
"claude-skill",
|
|
27
30
|
"agent-skills",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"session-recap",
|
|
31
|
+
"claude-code-plugin",
|
|
32
|
+
"session",
|
|
33
|
+
"sessions",
|
|
34
|
+
"session-manager",
|
|
35
|
+
"session-history",
|
|
34
36
|
"resume",
|
|
37
|
+
"session-resume",
|
|
38
|
+
"recap",
|
|
39
|
+
"cli",
|
|
40
|
+
"terminal",
|
|
41
|
+
"iterm2",
|
|
35
42
|
"developer-tools",
|
|
36
|
-
"
|
|
43
|
+
"developer-productivity",
|
|
44
|
+
"agentic-coding",
|
|
45
|
+
"coding-agent",
|
|
46
|
+
"local-first"
|
|
37
47
|
],
|
|
38
48
|
"repository": {
|
|
39
49
|
"type": "git",
|
package/skills/recap/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: recap
|
|
|
3
3
|
description: Show recent Claude Code sessions across all projects, so the user can re-enter work after a reboot or context switch. Lists per session the absolute project path, a short summary, last activity, turn count, git branch, model, and a ready-to-paste resume command, and can re-open all of them at once in new terminal tabs. Use when the user asks "what was I working on", "which projects did I touch recently", "where did I leave off", "list my recent sessions", "how do I get back into that session", "open all my sessions again", or invokes /recap. Reads only local files; the default run is instant and offline.
|
|
4
4
|
license: MIT
|
|
5
5
|
metadata:
|
|
6
|
-
version: "1.2.
|
|
6
|
+
version: "1.2.1"
|
|
7
7
|
author: noluyorAbi
|
|
8
8
|
source: https://github.com/noluyorAbi/claude-code-recap
|
|
9
9
|
---
|