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 +1 -0
- package/package.json +1 -1
- package/src/agent/self-analyzer.ts +3 -1
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -348,7 +348,7 @@ async function submitSelfAnalysisFeedback(analysis: SelfAnalysisResult): Promise
|
|
|
348
348
|
// ── Main Entry Point ────────────────────────────────────────────
|
|
349
349
|
|
|
350
350
|
/**
|
|
351
|
-
* Post-task self-analysis:
|
|
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,
|