Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:57:20 +08:00
commit 3295f50ddc
7 changed files with 139 additions and 0 deletions

9
commands/convo-list.md Normal file
View File

@@ -0,0 +1,9 @@
---
description: List all saved Claude Code conversations
---
List all saved conversations:
```bash
${CLAUDE_PLUGIN_ROOT}/scripts/search-conversations.sh --list
```

9
commands/convo-recent.md Normal file
View File

@@ -0,0 +1,9 @@
---
description: Show recent Claude Code conversations
---
Show the {{count:5}} most recent conversations:
```bash
${CLAUDE_PLUGIN_ROOT}/scripts/search-conversations.sh --recent {{count}}
```

9
commands/convo-search.md Normal file
View File

@@ -0,0 +1,9 @@
---
description: Search through saved Claude Code conversations
---
Search for conversations containing: {{term}}
```bash
${CLAUDE_PLUGIN_ROOT}/scripts/search-conversations.sh "{{term}}" --context 5
```