saferskills 0.2.0

Every AI capability, independently scanned — install Skills & MCP servers with a verified SaferSkills trust score.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Codex writer — HIGH confidence. The only TOML agent.
//!
//! Config-schema landmines: MCP entry is a TOML table `[mcp_servers.<name>]` in
//! `~/.codex/config.toml` (global) / `.codex/config.toml` (project) — written
//! format-preservingly via `toml_edit`. HTTP transport uses `url` +
//! `bearer_token_env_var`. Codex Desktop has been observed to rewrite/drop MCP
//! entries on a Windows restart, so `doctor`'s verify re-reads the file.
//! Skills → `~/.codex/skills/<name>/` (+ `openai.yaml`).
//! Source: developers.openai.com/codex/mcp + /skills + /config-reference.

use super::{CodexWriter, Confidence, ConfigWriter};

pub fn writer() -> Box<dyn ConfigWriter> {
    Box::new(CodexWriter {
        confidence: Confidence::High,
    })
}