claude-self-reflect 1.1.0 → 1.1.1

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.1",
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,9 @@ 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('💡 The agent will activate when you ask about past conversations');
53
+ console.log(' Example: "What did we discuss about API design?"');
54
+ console.log(' Or explicitly: "Use the reflection agent to find..."');
54
55
 
55
56
  } catch (error) {
56
57
  console.error('❌ Error installing reflection agent:', error.message);