opencrabs 0.3.56

The autonomous, self-improving AI agent. Single Rust binary. Every channel. Install with: cargo install opencrabs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
//! Self-Improve Tool — Recursive Self-Improvement (RSI)
//!
//! Autonomously applies improvements to brain files based on feedback analysis.
//! Writes to ~/.opencrabs/rsi/ directory — no human approval required.
//! Each improvement is logged to rsi/improvements.md and archived daily in rsi/history/.

use super::error::Result;
use super::r#trait::{Tool, ToolCapability, ToolExecutionContext, ToolResult};
use async_trait::async_trait;
use serde_json::Value;
use std::io::Write;

/// Ensures the RSI directory structure exists.
fn ensure_rsi_dirs(home: &std::path::Path) -> std::io::Result<()> {
    let rsi_dir = home.join("rsi");
    let history_dir = rsi_dir.join("history");
    std::fs::create_dir_all(&history_dir)
}

/// Known brain files that the RSI tool is allowed to read/modify.
const ALLOWED_FILES: &[&str] = &[
    "SOUL.md",
    "USER.md",
    "AGENTS.md",
    "TOOLS.md",
    "CODE.md",
    "SECURITY.md",
    "MEMORY.md",
    "BOOT.md",
];

/// Heuristic guard: reject brain-file content that looks like a raw failure
/// event log (timestamps, session IDs, `(N failures: ...)` counters in
/// section headers) rather than a derived rule. Issue #111: RSI cycles were
/// appending sections like `### Timeout Handling (5 failures: 17:02, 16:59,
/// 16:58, 16:57, 16:55)` to TOOLS.md, turning the brain file into an audit
/// log instead of operational guidance.
///
/// The system prompt tells the agent not to do this; this guard catches
/// the cases where the model ignores the prompt anyway.
///
/// Returns `Some(reason)` when the content should be rejected, `None`
/// when it passes.
fn looks_like_failure_log(content: &str) -> Option<&'static str> {
    for line in content.lines() {
        let trimmed = line.trim_start();
        if !trimmed.starts_with('#') {
            // Check plain-text lines for incident-log patterns.
            // Catches entries like:
            //   "ADDED 2026-06-11 (session ba623fd1): Another quoting error..."
            //   "REPEAT 2026-06-13 (session ca91e02d): SSH quoting violation again..."
            let lower = trimmed.to_ascii_lowercase();
            if (lower.starts_with("added ") || lower.starts_with("repeat "))
                && lower.contains("session ")
                && trimmed.chars().any(|c| c.is_ascii_digit())
            {
                return Some(
                    "Plain-text incident-log entry detected \
                     (e.g. 'ADDED YYYY-MM-DD (session ...): ...'). Brain files hold \
                     derived RULES, not raw incident logs. Use the feedback ledger \
                     (feedback_analyze) for incident history. Document the rule itself \
                     and mention the feedback data source, not individual dated entries.",
                );
            }
            continue;
        }
        let lower = trimmed.to_ascii_lowercase();
        // Section headers describing a failure count: "(N failures:",
        // "(N failures since", "— N failures", etc.
        if (lower.contains("failures:") || lower.contains("failures since"))
            && trimmed.chars().any(|c| c.is_ascii_digit())
        {
            return Some(
                "Section header looks like a failure-event log \
                 (e.g. `### Foo (N failures: ...)`). Brain files hold derived RULES, \
                 not raw audit data. Restate the header as the rule itself and put \
                 any incident counter on a single inline line in the body \
                 (e.g. `Violations: 6`). See issue #111.",
            );
        }
        // "— Recurring (N failures since YYYY-MM-DD)" — same shape with different prefix.
        if lower.contains("recurring") && lower.contains("failures") {
            return Some(
                "`Recurring (... failures ...)` headers are audit-log entries, \
                 not operational rules. Restate the section as the cause-and-fix \
                 rule the agent should follow; do not list dates/sessions in the header.",
            );
        }
    }
    None
}

/// Check if content is trivial/meaningless (test entries, single words, etc.)
fn is_trivial_content(content: &str, description: &str) -> bool {
    let c = content.trim();
    let d = description.trim().to_ascii_lowercase();

    // Single word or very short content
    if c.len() < 15 && !c.contains('\n') {
        return true;
    }

    // Literally just "test" or similar
    if matches!(d.as_str(), "test" | "testing" | "test entry" | "test test") {
        return true;
    }

    // Content is just the word "test" repeated
    if c.eq_ignore_ascii_case("test") {
        return true;
    }

    false
}

pub struct SelfImproveTool;

#[async_trait]
impl Tool for SelfImproveTool {
    fn name(&self) -> &str {
        "self_improve"
    }

    fn description(&self) -> &str {
        "Autonomously apply self-improvements based on feedback analysis. \
         Modifies brain files (SOUL.md, AGENTS.md, etc.) and logs changes to \
         your `rsi/improvements.md`. No human approval needed — the agent \
         identifies patterns via feedback_analyze and applies fixes directly. \
         Use feedback_analyze first to identify what needs improvement."
    }

    fn input_schema(&self) -> Value {
        serde_json::json!({
            "type": "object",
            "properties": {
                "action": {
                    "type": "string",
                    "description": "What to do:\n\
                        - 'read': Read a brain file BEFORE modifying it. ALWAYS do this first.\n\
                        - 'apply': Append NEW content to a brain file (only for genuinely new instructions).\n\
                        - 'update': Surgically replace an existing section/paragraph. Use when an existing instruction needs refinement rather than a new one added.\n\
                        - 'list': Show previously applied improvements.\n\
                        - 'sync_templates': Fetch upstream brain file templates from the repo and append new sections.",
                    "enum": ["read", "apply", "update", "list", "sync_templates"]
                },
                "target_file": {
                    "type": "string",
                    "description": "Brain file to read/modify (e.g. 'SOUL.md', 'TOOLS.md'). Must be a known brain file."
                },
                "description": {
                    "type": "string",
                    "description": "For 'apply'/'update': human-readable description of the improvement"
                },
                "rationale": {
                    "type": "string",
                    "description": "For 'apply'/'update': why this improvement is needed (reference feedback data)"
                },
                "content": {
                    "type": "string",
                    "description": "For 'apply': new content to append. For 'update': the replacement content."
                },
                "old_content": {
                    "type": "string",
                    "description": "For 'update' only: the existing text to find and replace (must be an exact match of the current content)."
                },
                "dedup_intent": {
                    "type": "boolean",
                    "description": "For 'update' only: set to true when the update is removing a duplicate that already exists elsewhere in the same file. Brain files are append-only — any update whose replacement is shorter than old_content will be rejected unless dedup_intent=true AND every original line still appears in the result."
                }
            },
            "required": ["action"]
        })
    }

    fn capabilities(&self) -> Vec<ToolCapability> {
        vec![ToolCapability::WriteFiles]
    }

    fn requires_approval(&self) -> bool {
        false // Autonomous — no human-in-the-loop
    }

    fn requires_approval_for_input(&self, _input: &Value) -> bool {
        false
    }

    async fn execute(&self, input: Value, context: &ToolExecutionContext) -> Result<ToolResult> {
        let action = input.get("action").and_then(|v| v.as_str()).unwrap_or("");

        // Brain files always go to ~/.opencrabs/, never the working directory.
        let home = crate::config::opencrabs_home();

        match action {
            "read" => {
                let target_file = input
                    .get("target_file")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");

                if target_file.is_empty() {
                    return Ok(ToolResult::error(
                        "target_file is required for 'read'".to_string(),
                    ));
                }
                if !ALLOWED_FILES.contains(&target_file) {
                    return Ok(ToolResult::error(format!(
                        "target_file must be one of: {}",
                        ALLOWED_FILES.join(", ")
                    )));
                }

                let target_path = home.join(target_file);
                if !target_path.exists() {
                    return Ok(ToolResult::success(format!(
                        "{target_file} does not exist yet (empty). \
                         You can create it with action='apply'."
                    )));
                }
                match std::fs::read_to_string(&target_path) {
                    Ok(content) => Ok(ToolResult::success(format!(
                        "--- {target_file} ({} bytes) ---\n{content}",
                        content.len()
                    ))),
                    Err(e) => Ok(ToolResult::error(format!(
                        "Failed to read {target_file}: {e}"
                    ))),
                }
            }

            "list" => {
                let improvements_path = home.join("rsi").join("improvements.md");
                if !improvements_path.exists() {
                    return Ok(ToolResult::success(
                        "No improvements recorded yet. Run self_improve with action='apply' to start.".to_string(),
                    ));
                }
                match std::fs::read_to_string(&improvements_path) {
                    Ok(content) => Ok(ToolResult::success(content)),
                    Err(e) => Ok(ToolResult::error(format!(
                        "Failed to read rsi/improvements.md: {e}"
                    ))),
                }
            }

            "update" => {
                let target_file = input
                    .get("target_file")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let description = input
                    .get("description")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let rationale = input
                    .get("rationale")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let old_content = input
                    .get("old_content")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let new_content = input.get("content").and_then(|v| v.as_str()).unwrap_or("");

                if target_file.is_empty()
                    || old_content.is_empty()
                    || new_content.is_empty()
                    || description.is_empty()
                {
                    return Ok(ToolResult::error(
                        "target_file, description, old_content, and content are all required for 'update'"
                            .to_string(),
                    ));
                }
                if !ALLOWED_FILES.contains(&target_file) {
                    return Ok(ToolResult::error(format!(
                        "target_file must be one of: {}",
                        ALLOWED_FILES.join(", ")
                    )));
                }

                if let Some(reason) = looks_like_failure_log(new_content) {
                    return Ok(ToolResult::error(reason.to_string()));
                }
                if let Some(reason) = super::self_improve_guards::bans_builtin_tool(new_content) {
                    return Ok(ToolResult::error(reason));
                }

                let target_path = home.join(target_file);
                let existing = match std::fs::read_to_string(&target_path) {
                    Ok(c) => c,
                    Err(_) => {
                        return Ok(ToolResult::error(format!(
                            "{target_file} does not exist — use 'apply' to create new content instead."
                        )));
                    }
                };

                // Find the old_content in the file (exact substring match).
                // The agent is responsible for providing an accurate old_content
                // snippet after reading the file with action='read'.
                if !existing.contains(old_content) {
                    return Ok(ToolResult::error(format!(
                        "old_content not found in {target_file}. \
                         Use action='read' first to get the exact current content, \
                         then copy the section you want to replace verbatim into old_content."
                    )));
                }

                // Perform the replacement (first occurrence only)
                let updated = existing.replacen(old_content, new_content.trim(), 1);

                // Append-only enforcement: brain files are append-only by user
                // policy. Removals only allowed when the caller explicitly opts
                // into a dedup intent AND every line of the original survives.
                // Note: cleanup_intent is always false here because RSI is autonomous
                // and cannot get user approval for destructive operations.
                let dedup_intent = input
                    .get("dedup_intent")
                    .and_then(|v| v.as_bool())
                    .unwrap_or(false);
                use crate::brain::tools::brain_file_safety;
                if let brain_file_safety::ShrinkCheck::Rejected { message } =
                    brain_file_safety::check_no_shrink(
                        &target_path,
                        &existing,
                        &updated,
                        dedup_intent,
                        false, // cleanup_intent: RSI cannot do cleanup (no approval mechanism)
                    )
                {
                    return Ok(ToolResult::error(message));
                }

                // Record pruned sections when dedup shrinks a brain file.
                // This is how the sidecar learns what the RSI loop removed so
                // sync_templates() does not re-add it on the next upstream sync.
                if dedup_intent {
                    let removed =
                        crate::brain::rsi_pruned::detect_removed_sections(&existing, &updated);
                    if !removed.is_empty() {
                        let mut pruned_state = crate::brain::rsi_pruned::PrunedState::load();
                        pruned_state.record_pruned(target_file, removed);
                        if let Err(e) = pruned_state.save() {
                            tracing::warn!(
                                "self_improve dedup: recorded {} pruned header(s) for {} but pruned.toml save failed: {} \
                                 — sync_templates() will re-add those sections on the next sync until this is fixed",
                                pruned_state
                                    .pruned
                                    .get(target_file)
                                    .map(|h| h.len())
                                    .unwrap_or(0),
                                target_file,
                                e
                            );
                        }
                    }
                }

                // Ensure RSI dirs exist for logging
                ensure_rsi_dirs(&home).map_err(|e| {
                    crate::brain::tools::ToolError::Execution(format!(
                        "Failed to create RSI directories: {e}"
                    ))
                })?;

                // Snapshot the file before mutating so a bad agent edit can
                // be rolled back from `<file>.YYYY-MM-DDTHHMMSS.bak`.
                if let Err(e) = brain_file_safety::backup_before_write(&target_path) {
                    tracing::warn!("RSI: failed to back up {target_file} before update: {e}");
                }

                // Write the updated file
                std::fs::write(&target_path, updated.as_bytes()).map_err(|e| {
                    crate::brain::tools::ToolError::Execution(format!(
                        "Failed to write {target_file}: {e}"
                    ))
                })?;

                // Log to rsi/improvements.md
                let entry = format!(
                    "\n## [Updated] {}\n\n**Date:** {}\n**Target:** {}\n**Rationale:** {}\n**Status:** Updated (surgical replace)\n",
                    description,
                    chrono::Utc::now().format("%Y-%m-%d %H:%M UTC"),
                    target_file,
                    if rationale.is_empty() {
                        "(none)"
                    } else {
                        rationale
                    },
                );
                match std::fs::OpenOptions::new()
                    .create(true)
                    .append(true)
                    .open(home.join("rsi").join("improvements.md"))
                {
                    Ok(mut f) => {
                        if let Err(e) = f.write_all(entry.as_bytes()) {
                            tracing::warn!("RSI: failed to write improvements.md: {e}");
                        }
                    }
                    Err(e) => {
                        tracing::warn!("RSI: failed to open improvements.md: {e}");
                    }
                }

                // Archive to daily history file
                let history_path = home
                    .join("rsi")
                    .join("history")
                    .join(format!("{}.md", chrono::Utc::now().format("%Y-%m-%d")));
                match std::fs::OpenOptions::new()
                    .create(true)
                    .append(true)
                    .open(&history_path)
                {
                    Ok(mut f) => {
                        if let Err(e) = f.write_all(
                            format!(
                                "\n### [Updated] {description}\n\n**Replaced:**\n```\n{old_content}\n```\n**With:**\n```\n{new_content}\n```\n"
                            )
                            .as_bytes(),
                        ) {
                            tracing::warn!("RSI: failed to write history archive: {e}");
                        }
                    }
                    Err(e) => {
                        tracing::warn!("RSI: failed to open history archive: {e}");
                    }
                }

                // Record in feedback ledger
                if let Some(ref svc_ctx) = context.service_context {
                    let repo = crate::db::repository::FeedbackLedgerRepository::new(
                        svc_ctx.pool().clone(),
                    );
                    let meta = serde_json::json!({
                        "target_file": target_file,
                        "rationale": rationale,
                        "action": "update",
                    })
                    .to_string();
                    if let Err(e) = repo
                        .record(
                            &context.session_id.to_string(),
                            "improvement_applied",
                            description,
                            1.0,
                            Some(&meta),
                        )
                        .await
                    {
                        tracing::warn!("RSI: failed to record improvement in feedback ledger: {e}");
                    }
                }

                Ok(ToolResult::success(format!(
                    "Surgically updated {target_file} and logged to rsi/improvements.md: {description}"
                )))
            }

            "apply" => {
                let target_file = input
                    .get("target_file")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let description = input
                    .get("description")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let rationale = input
                    .get("rationale")
                    .and_then(|v| v.as_str())
                    .unwrap_or("");
                let content = input.get("content").and_then(|v| v.as_str()).unwrap_or("");

                if target_file.is_empty() || content.is_empty() || description.is_empty() {
                    return Ok(ToolResult::error(
                        "target_file, description, and content are required for 'apply'"
                            .to_string(),
                    ));
                }

                if !ALLOWED_FILES.contains(&target_file) {
                    return Ok(ToolResult::error(format!(
                        "target_file must be one of: {}",
                        ALLOWED_FILES.join(", ")
                    )));
                }

                if let Some(reason) = looks_like_failure_log(content) {
                    return Ok(ToolResult::error(reason.to_string()));
                }
                if let Some(reason) = super::self_improve_guards::bans_builtin_tool(content) {
                    return Ok(ToolResult::error(reason));
                }

                if is_trivial_content(content, description) {
                    return Ok(ToolResult::error(
                        "Content too short or trivial (e.g. 'test').                          Brain files store meaningful rules and context,                          not placeholder text. Provide real content."
                            .to_string(),
                    ));
                }

                // Ensure RSI dirs exist
                ensure_rsi_dirs(&home).map_err(|e| {
                    crate::brain::tools::ToolError::Execution(format!(
                        "Failed to create RSI directories: {e}"
                    ))
                })?;

                let target_path = home.join(target_file);

                // Dedup guard. RSI re-proposes the SAME improvements every cycle
                // (a tool's failure rate doesn't drop just because the guideline
                // was already written), so without this each cycle blindly
                // appended a duplicate paragraph — growing the brain file until
                // the dedup-scan cleaned it up, an endless append→dedup→append
                // loop. Append only genuinely-new paragraphs; if the improvement
                // is already present, skip the write entirely (and don't log it
                // as a fresh "Applied" improvement below).
                use crate::brain::tools::brain_file_safety::{
                    AppendDedup, filter_duplicate_append,
                };
                let existing = std::fs::read_to_string(&target_path).unwrap_or_default();
                let to_append = match filter_duplicate_append(&existing, content) {
                    AppendDedup::AllNew => content.trim().to_string(),
                    AppendDedup::Filtered {
                        filtered_content,
                        skipped_paragraphs,
                    } => {
                        tracing::info!(
                            "RSI self_improve: filtered {skipped_paragraphs} duplicate paragraph(s) \
                             from '{description}' before appending to {target_file}"
                        );
                        filtered_content
                    }
                    AppendDedup::AllDuplicate => {
                        return Ok(ToolResult::success(format!(
                            "Skipped: '{description}' is already present in {target_file} — no change \
                             made. The improvement is already in effect; do not re-apply it."
                        )));
                    }
                };

                // Append the new content to target brain file
                let mut file = std::fs::OpenOptions::new()
                    .create(true)
                    .append(true)
                    .open(&target_path)
                    .map_err(|e| {
                        crate::brain::tools::ToolError::Execution(format!(
                            "Failed to open {target_file}: {e}"
                        ))
                    })?;
                file.write_all(format!("\n{}\n", to_append.trim()).as_bytes())
                    .map_err(|e| {
                        crate::brain::tools::ToolError::Execution(format!(
                            "Failed to write {target_file}: {e}"
                        ))
                    })?;

                // Log to rsi/improvements.md
                let entry = format!(
                    "\n## [Applied] {}\n\n**Date:** {}\n**Target:** {}\n**Rationale:** {}\n**Status:** Applied\n",
                    description,
                    chrono::Utc::now().format("%Y-%m-%d %H:%M UTC"),
                    target_file,
                    if rationale.is_empty() {
                        "(none)"
                    } else {
                        rationale
                    },
                );
                match std::fs::OpenOptions::new()
                    .create(true)
                    .append(true)
                    .open(home.join("rsi").join("improvements.md"))
                {
                    Ok(mut f) => {
                        if let Err(e) = f.write_all(entry.as_bytes()) {
                            tracing::warn!("RSI: failed to write improvements.md: {e}");
                        }
                    }
                    Err(e) => {
                        tracing::warn!("RSI: failed to open improvements.md: {e}");
                    }
                }

                // Archive to daily history file
                let history_path = home
                    .join("rsi")
                    .join("history")
                    .join(format!("{}.md", chrono::Utc::now().format("%Y-%m-%d")));
                match std::fs::OpenOptions::new()
                    .create(true)
                    .append(true)
                    .open(&history_path)
                {
                    Ok(mut f) => {
                        if let Err(e) =
                            f.write_all(format!("\n### {description}\n\n{content}\n").as_bytes())
                        {
                            tracing::warn!("RSI: failed to write history archive: {e}");
                        }
                    }
                    Err(e) => {
                        tracing::warn!("RSI: failed to open history archive: {e}");
                    }
                }

                // Record in feedback ledger
                if let Some(ref svc_ctx) = context.service_context {
                    let repo = crate::db::repository::FeedbackLedgerRepository::new(
                        svc_ctx.pool().clone(),
                    );
                    let meta = serde_json::json!({
                        "target_file": target_file,
                        "rationale": rationale,
                    })
                    .to_string();
                    if let Err(e) = repo
                        .record(
                            &context.session_id.to_string(),
                            "improvement_applied",
                            description,
                            1.0,
                            Some(&meta),
                        )
                        .await
                    {
                        tracing::warn!("RSI: failed to record improvement in feedback ledger: {e}");
                    }
                }

                Ok(ToolResult::success(format!(
                    "Improvement applied to {target_file} and logged to rsi/improvements.md: {description}"
                )))
            }

            "sync_templates" => {
                // Run the upstream template sync
                let results = crate::brain::rsi_sync::sync_templates().await;

                if results.is_empty() {
                    return Ok(ToolResult::success(
                        "No new release since last sync. Skipping template sync.".to_string(),
                    ));
                }

                let synced = results.iter().filter(|r| r.synced).count();
                let failed = results.iter().filter(|r| r.error.is_some()).count();
                let total_sections: usize = results.iter().map(|r| r.sections_added).sum();

                let mut summary = format!(
                    "Template sync complete: {} files synced, {} failed, {} new sections added.",
                    synced, failed, total_sections
                );

                for r in &results {
                    if let Some(ref err) = r.error {
                        summary.push_str(&format!("\n  - {}: FAILED ({})", r.filename, err));
                    } else if r.sections_added > 0 {
                        summary.push_str(&format!(
                            "\n  - {}: +{} sections",
                            r.filename, r.sections_added
                        ));
                    }
                }

                Ok(ToolResult::success(summary))
            }

            other => Ok(ToolResult::error(format!(
                "Unknown action: '{other}'. Use 'read', 'apply', 'update', or 'list'."
            ))),
        }
    }
}