Skip to main content

codetether_agent/agent/build_guidance/
mod.rs

1//! Extra build-agent guidance fragments.
2//!
3//! This module keeps small, concern-specific prompt fragments out of the main
4//! built-in prompt definitions so new guidance does not accumulate inline.
5//!
6//! # Examples
7//!
8//! ```ignore
9//! assert!(BUILD_GITHUB_AUTH_GUIDANCE.contains("GitHub authentication"));
10//! ```
11
12pub(super) const BUILD_GITHUB_AUTH_GUIDANCE: &str = "\n- In repositories prepared by CodeTether, assume GitHub authentication is already provisioned for `git` and `gh`. Do not search the filesystem for tokens or run interactive `gh auth login`.";