@amrhas82/agentic-kit 1.11.2 → 1.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amrhas82/agentic-kit",
3
- "version": "1.11.2",
3
+ "version": "1.11.3",
4
4
  "description": "AI development toolkit with 14 specialized agents and 21 commands. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.amp/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .amp/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .amp/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.amp/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.claude/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .claude/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .claude/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.claude/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.factory/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .factory/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .factory/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.factory/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage
@@ -0,0 +1,45 @@
1
+ ---
2
+ name: stash
3
+ description: Stash session context [name]
4
+ usage: /stash ["optional-name"]
5
+ argument-hint: [optional stash name]
6
+ ---
7
+
8
+ Save session context for compaction recovery or handoffs.
9
+
10
+ **Guardrails**
11
+ - Favor straightforward, minimal implementations first and add complexity only when requested or clearly required.
12
+ - Keep changes tightly scoped to the requested outcome.
13
+
14
+ **What it does**
15
+ 1. Captures current conversation context and key decisions
16
+ 2. Records active work in progress
17
+ 3. Stores important findings and insights
18
+ 4. Creates stash file in `.factory/stash/`
19
+ 5. Enables context restoration after compaction
20
+
21
+ **When to use**
22
+ - Before long-running tasks that may trigger compaction
23
+ - When handing off work to another agent or session
24
+ - After completing major investigation or analysis
25
+ - Before taking a break from complex multi-step work
26
+
27
+ **Commands**
28
+ ```bash
29
+ # Stash with auto-generated name
30
+ /stash
31
+
32
+ # Stash with custom name
33
+ /stash "feature-auth-investigation"
34
+
35
+ # List available stashes
36
+ ls .factory/stash/
37
+
38
+ # Restore from stash
39
+ cat .factory/stash/<name>.md
40
+ ```
41
+
42
+ **Reference**
43
+ - Stashes stored in `.factory/stash/` (project-local)
44
+ - Automatically includes: timestamp, active plan, recent decisions
45
+ - Maximum context retention with minimal token usage
@@ -15,7 +15,7 @@ Save session context for compaction recovery or handoffs.
15
15
  1. Captures current conversation context and key decisions
16
16
  2. Records active work in progress
17
17
  3. Stores important findings and insights
18
- 4. Creates stash file in `~/.claude/stash/`
18
+ 4. Creates stash file in `.opencode/stash/`
19
19
  5. Enables context restoration after compaction
20
20
 
21
21
  **When to use**
@@ -33,13 +33,13 @@ Save session context for compaction recovery or handoffs.
33
33
  /stash "feature-auth-investigation"
34
34
 
35
35
  # List available stashes
36
- ls ~/.claude/stash/
36
+ ls .opencode/stash/
37
37
 
38
38
  # Restore from stash
39
- cat ~/.claude/stash/<name>.md
39
+ cat .opencode/stash/<name>.md
40
40
  ```
41
41
 
42
42
  **Reference**
43
- - Stashes stored in `~/.claude/stash/`
43
+ - Stashes stored in `.opencode/stash/` (project-local)
44
44
  - Automatically includes: timestamp, active plan, recent decisions
45
45
  - Maximum context retention with minimal token usage