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
// ── Google: Gemini CLI ───────────────────────────────────────────────────────

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

pub const FINGERPRINTS: &[AgentFingerprint] = &[
    AgentFingerprint {
        id: "gemini", name: "Gemini CLI", icon: "",
        vendor: "Google", color: "#4285f4",
        role: ProcessRole::Main, confidence: 95,
        requires: &["@google/gemini-cli|/gemini"],
        excludes: &["grep"],
        host_app: None,
        adopt_children: true,
    },
];