instar 0.4.1 → 0.4.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.
@@ -167,10 +167,11 @@ export function loadConfig(projectDir) {
167
167
  relationshipsDir: path.join(stateDir, 'relationships'),
168
168
  maxRecentInteractions: 20,
169
169
  },
170
- feedback: fileConfig.feedback || {
171
- enabled: false,
170
+ feedback: {
171
+ enabled: true,
172
172
  webhookUrl: 'https://dawn.bot-me.ai/api/instar/feedback',
173
173
  feedbackFile: path.join(stateDir, 'feedback.json'),
174
+ ...fileConfig.feedback,
174
175
  },
175
176
  };
176
177
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instar",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Persistent autonomy infrastructure for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",