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 +1 -1
- package/scripts/install-agent.js +9 -2
package/package.json
CHANGED
package/scripts/install-agent.js
CHANGED
|
@@ -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('
|
|
53
|
-
console.log('
|
|
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);
|