stigmergy 1.3.23-beta.0 → 1.3.24-beta.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stigmergy",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.24-beta.0",
|
|
4
4
|
"description": "Stigmergy CLI - Multi-Agents Cross-AI CLI Tools Collaboration System",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
"src/**/*.js",
|
|
86
86
|
"config/**/*.json",
|
|
87
87
|
"templates/**/*.md",
|
|
88
|
+
"skills/**/*",
|
|
88
89
|
"bin/**/*",
|
|
89
90
|
"test/**/*.js",
|
|
90
91
|
"scripts/**/*.js",
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: resumesession
|
|
3
|
+
description: Cross-CLI session recovery and history management skill
|
|
4
|
+
author: stigmergy
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# ResumeSession Skill
|
|
9
|
+
|
|
10
|
+
Cross-CLI session recovery and history management skill for Claude CLI.
|
|
11
|
+
|
|
12
|
+
## Description
|
|
13
|
+
|
|
14
|
+
This skill enables Claude CLI to:
|
|
15
|
+
- Scan and display sessions from all supported CLI tools (Claude, Gemini, Qwen, iFlow, CodeBuddy, Codex, QoderCLI)
|
|
16
|
+
- Filter sessions by CLI tool, time range, or search terms
|
|
17
|
+
- Recover context from previous sessions
|
|
18
|
+
- Provide multiple view formats (summary, timeline, detailed, context)
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
### Basic Commands
|
|
23
|
+
|
|
24
|
+
Use the Bash tool to invoke ResumeSession functionality:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Show all project sessions (default: 10 sessions)
|
|
28
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js")
|
|
29
|
+
|
|
30
|
+
# Show sessions from specific CLI
|
|
31
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --cli claude")
|
|
32
|
+
|
|
33
|
+
# Search sessions by content
|
|
34
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --search react")
|
|
35
|
+
|
|
36
|
+
# Show today's sessions only
|
|
37
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --today")
|
|
38
|
+
|
|
39
|
+
# Show sessions from last 7 days
|
|
40
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --week")
|
|
41
|
+
|
|
42
|
+
# Show sessions from last 30 days
|
|
43
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --month")
|
|
44
|
+
|
|
45
|
+
# Limit number of sessions shown
|
|
46
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --limit 5")
|
|
47
|
+
|
|
48
|
+
# Use different view formats
|
|
49
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --format timeline")
|
|
50
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --format detailed")
|
|
51
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --format context")
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Examples
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# Show all React-related sessions
|
|
58
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --search react")
|
|
59
|
+
|
|
60
|
+
# Show recent Claude sessions
|
|
61
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --cli claude --today")
|
|
62
|
+
|
|
63
|
+
# Show timeline of all sessions
|
|
64
|
+
Bash("node D:\\stigmergy-CLI-Multi-Agents\\src\\cli\\commands\\resume.js --format timeline")
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Features
|
|
68
|
+
|
|
69
|
+
- ✅ Cross-CLI session discovery
|
|
70
|
+
- ✅ Project-aware filtering
|
|
71
|
+
- ✅ Time-based sorting (most recent first)
|
|
72
|
+
- ✅ Content search
|
|
73
|
+
- ✅ Context recovery
|
|
74
|
+
- ✅ Multiple view formats
|
|
75
|
+
|
|
76
|
+
## Configuration
|
|
77
|
+
|
|
78
|
+
The skill automatically detects the current project path and scans session directories for all supported CLI tools.
|
|
79
|
+
|
|
80
|
+
Session paths are automatically detected from:
|
|
81
|
+
- `~/.claude/projects` (Claude)
|
|
82
|
+
- `~/.config/gemini/tmp` (Gemini)
|
|
83
|
+
- `~/.qwen/projects` (Qwen)
|
|
84
|
+
- `~/.iflow/projects` (iFlow)
|
|
85
|
+
- `~/.codebuddy` (CodeBuddy)
|
|
86
|
+
- `~/.config/codex` (Codex)
|
|
87
|
+
- `~/.qoder/projects` (QoderCLI)
|
|
88
|
+
|
|
89
|
+
## Notes
|
|
90
|
+
|
|
91
|
+
This skill requires the Stigmergy CLI to be installed and configured. The `stigmergy resume` command handles all session scanning and formatting logic.
|