agpm-cli 0.4.14

AGent Package Manager - A Git-based package manager for coding agents
Documentation
//! Template rendering tests
//!
//! Tests for template rendering functionality:
//! - Basic template rendering
//! - Content filter (`{{ 'path' | content }}`) functionality
//! - Project-level template variables
//! - Resource-specific template variables
//! - Transitive dependencies with conditional frontmatter
//! - Tool inheritance in transitive dependencies
//! - Enhanced error handling and clarity

mod content_filter;
mod error_clarity;
mod project_vars;
mod resource_vars;
mod test_basic_rendering;
mod test_circular_deps;
mod test_edge_cases;
mod test_template_validation;
mod test_transitive_direct_same_resource;
mod test_transitive_errors;
mod tool_inheritance;
mod transitive_conditional_deps;
mod windows_security;