coding_agent_tools 0.3.8

Coding agent tools (CLI + MCP). First tool: ls.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent spawning module for Claude Code subagents.
//!
//! This module provides configuration and utilities for spawning opinionated
//! Claude Code subagents with specific behaviors based on type and location.

pub mod config;
pub mod prompts;

pub use config::build_mcp_config;
pub use config::compose_prompt;
pub use config::enabled_tools_for;
pub use config::model_for;
pub use prompts::ANALYZER_BASE_PROMPT;
pub use prompts::LOCATOR_BASE_PROMPT;