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