butterfly-bot 0.8.0

Butterfly Bot is an opinionated personal-ops AI assistant built for people who want results, not setup overhead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diesel::table! {
    todo_items (id) {
        id -> Integer,
        user_id -> Text,
        title -> Text,
        notes -> Nullable<Text>,
        position -> Integer,
        created_at -> BigInt,
        updated_at -> BigInt,
        completed_at -> Nullable<BigInt>,
        t_shirt_size -> Nullable<Text>,
        story_points -> Nullable<Integer>,
        estimate_optimistic_minutes -> Nullable<Integer>,
        estimate_likely_minutes -> Nullable<Integer>,
        estimate_pessimistic_minutes -> Nullable<Integer>,
        dependency_refs -> Nullable<Text>,
    }
}