Franken Agent Detection
Description
Deterministic, local filesystem-based detection of installed coding-agent connectors for Rust tooling.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
franken-agent-detection
[](https://crates.io/crates/franken-agent-detection) [](https://docs.rs/franken-agent-detection) [](LICENSE)
A small Rust crate for deterministic, local detection of installed coding-agent tools.
cargo add franken-agent-detection
What this crate does
Many tools need to answer a simple question: which coding-agent connectors are available on this machine? This crate gives you one consistent report shape, one probe flow, and test-friendly root overrides.
| Capability | franken-agent-detection |
|---|---|
| Stable JSON-serializable report | Yes |
| Explicit connector scoping | Yes (only_connectors) |
| Deterministic fixture mode | Yes (root_overrides) |
| Async runtime required | No |
| Tokio dependency | No |
Example
use franken_agent_detection::{
detect_installed_agents, AgentDetectOptions, AgentDetectRootOverride,
};
use std::path::PathBuf;
fn main() -> Result<(), Box> {
let report = detect_installed_agents(&AgentDetectOptions {
only_connectors: Some(vec!["codex".into(), "gemini".into()]),
include_undetected: true,
root_overrides: vec![
AgentDetectRootOverride {
slug: "codex".into(),
root: PathBuf::from("/tmp/mock-codex"),
},
AgentDetectRootOverride {
slug: "gemini".into(),
root: PathBuf::from("/tmp/mock-gemini"),
},
],
})?;
println!(
"Detected {} of {}",
report.summary.detected_count, report.summary.total_count
);
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11