agentwatch-core 0.1.2

Core detection library for AgentWatch - identifies AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// ── Codeium: Windsurf IDE ────────────────────────────────────────────────────

use crate::detection::types::{AgentFingerprint, ProcessRole};

pub const FINGERPRINTS: &[AgentFingerprint] = &[
    AgentFingerprint {
        id: "windsurf", name: "Windsurf", icon: "",
        vendor: "Codeium", color: "#06b6d4",
        role: ProcessRole::HostApp, confidence: 80,
        requires: &["windsurf|Windsurf|codeium"],
        excludes: &["grep"],
        host_app: Some("Windsurf"),
        adopt_children: false,
    },
];