meerkat-core 0.7.21

Core agent logic for Meerkat (no I/O deps)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::expect_used, clippy::panic, clippy::unwrap_used)]
//! Phase 1 red-ok target-definition tests for async operation lifecycle contracts.

use meerkat_core::ops_lifecycle::OperationKind;

#[test]
fn ops_lifecycle_integration_red_ok_operation_kinds_define_peer_expectations() {
    assert!(
        OperationKind::MobMemberChild.expects_peer_channel(),
        "mob helper-agent flows should require a peer-ready handoff"
    );
    assert!(
        !OperationKind::BackgroundToolOp.expects_peer_channel(),
        "background async operations should not require a peer-ready handoff"
    );
}