claude-session-skill 1.1.2 → 1.1.3
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/bin/claude-session +2 -0
- package/bin/claude-session-mcp +2 -0
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-session-skill",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Search, browse, and resume past Claude Code sessions with AI-generated summaries — plus an MCP server for any MCP-compatible client",
|
|
5
5
|
"author": "ITeachYouAI <engineering@iteachyouai.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/ITeachYouAI/claude-session-skill.git"
|
|
9
|
+
"url": "git+https://github.com/ITeachYouAI/claude-session-skill.git"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://github.com/ITeachYouAI/claude-session-skill",
|
|
12
12
|
"bugs": {
|
|
@@ -30,10 +30,11 @@
|
|
|
30
30
|
"type": "module",
|
|
31
31
|
"main": "session.ts",
|
|
32
32
|
"bin": {
|
|
33
|
-
"claude-session": "./
|
|
34
|
-
"claude-session-mcp": "./
|
|
33
|
+
"claude-session": "./bin/claude-session",
|
|
34
|
+
"claude-session-mcp": "./bin/claude-session-mcp"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
|
+
"bin/",
|
|
37
38
|
"dist/",
|
|
38
39
|
"lib/",
|
|
39
40
|
"session.ts",
|