assistme 0.6.0 → 0.6.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/dist/index.js CHANGED
@@ -4117,6 +4117,7 @@ async function analyzeSelfPostTask(opts) {
4117
4117
  sessionId
4118
4118
  } = opts;
4119
4119
  try {
4120
+ log.info(`Self-analysis starting for task ${taskId}`);
4120
4121
  const analysisContext = await buildAnalysisContext({
4121
4122
  taskId,
4122
4123
  conversationId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assistme",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "AssistMe CLI Agent - AI-powered assistant that controls your real browser",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -348,7 +348,7 @@ async function submitSelfAnalysisFeedback(analysis: SelfAnalysisResult): Promise
348
348
  // ── Main Entry Point ────────────────────────────────────────────
349
349
 
350
350
  /**
351
- * Post-task self-analysis: resume the agent SDK session to critically
351
+ * Post-task self-analysis: starts a new agent SDK query to critically
352
352
  * analyze AssistMe's own performance and code quality.
353
353
  *
354
354
  * If improvements are found, submits feedback via edsger-feedback.
@@ -378,6 +378,8 @@ export async function analyzeSelfPostTask(opts: {
378
378
  } = opts;
379
379
 
380
380
  try {
381
+ log.info(`Self-analysis starting for task ${taskId}`);
382
+
381
383
  // Build context from all available data sources
382
384
  const analysisContext = await buildAnalysisContext({
383
385
  taskId,