codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Built-in prompt constants.
//!
//! This module groups the raw prompt templates used by built-in agents.
//!
//! # Examples
//!
//! ```ignore
//! assert!(BUILD_SYSTEM_PROMPT.contains("CodeTether Agent"));
//! ```

mod build;
mod explore;
mod plan;

pub use build::{BUILD_MODE_GUARDRAIL, BUILD_SYSTEM_PROMPT};
pub use explore::EXPLORE_SYSTEM_PROMPT;
pub use plan::PLAN_SYSTEM_PROMPT;