ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Source: /data/home/swei/claudecode/openclaudecode/src/commands/keybindings/keybindings.ts
#![allow(dead_code)]

use std::collections::HashMap;

pub struct KeyBinding {
    pub key: String,
    pub action: String,
    pub description: String,
}

pub fn get_default_keybindings() -> Vec<KeyBinding> {
    vec![KeyBinding {
        key: "Ctrl+C".to_string(),
        action: "copy".to_string(),
        description: "Copy selection".to_string(),
    }]
}