claude-self-reflect 1.1.0 → 1.1.2

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": "claude-self-reflect",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Give Claude perfect memory of all your conversations - Semantic search across your entire Claude Desktop history",
5
5
  "keywords": [
6
6
  "claude",
@@ -49,8 +49,15 @@ async function installAgent() {
49
49
  await fs.copyFile(agentSource, agentDest);
50
50
 
51
51
  console.log('✅ Reflection agent installed at .claude/agents/reflection.md');
52
- console.log('💡 Use it in Claude Code with: @reflection <your query>');
53
- console.log(' Example: @reflection what did we discuss about API design?');
52
+ console.log('');
53
+ console.log('🚀 Next Steps:');
54
+ console.log(' 1. Start Qdrant: docker run -d --name qdrant -p 6333:6333 qdrant/qdrant:latest');
55
+ console.log(' 2. Choose embedding provider: https://github.com/ramakay/claude-self-reflect#choose-your-embedding-provider');
56
+ console.log(' 3. Import conversations: Follow the installation guide');
57
+ console.log('');
58
+ console.log('💡 The agent will activate when you ask about past conversations');
59
+ console.log(' Example: "What did we discuss about API design?"');
60
+ console.log(' Note: You\'ll get "No conversations found" until you import your Claude history');
54
61
 
55
62
  } catch (error) {
56
63
  console.error('❌ Error installing reflection agent:', error.message);