From 3b9a686b702d3e73798554f4599befd3b4c5729f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 17 Oct 2025 20:54:55 +0000 Subject: [PATCH] Replace non-ASCII characters with ASCII equivalents Co-authored-by: ronniegeraghty <28957151+ronniegeraghty@users.noreply.github.com> --- AGENTS.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index dc2a8b119..4b0ca55d4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -22,7 +22,7 @@ The **Azure SDK for C++** provides modern C++ libraries for Azure services, foll ## Agent Capabilities and Boundaries -### ✅ Supported Agent Actions +### Supported Agent Actions AI agents working in this repository are encouraged to: @@ -49,7 +49,7 @@ AI agents working in this repository are encouraged to: - Suggest improvements to code structure and style - Identify potential issues before CI runs -### ⚠️ Actions Requiring Caution +### Actions Requiring Caution 1. **Dependency Management** - Changing vcpkg.json should be done sparingly @@ -67,7 +67,7 @@ AI agents working in this repository are encouraged to: - Azure Pipeline configurations need validation - Test proxy configuration changes need verification -### 🚫 Actions Outside Agent Scope +### Actions Outside Agent Scope Agents should **NOT**: @@ -159,26 +159,26 @@ find sdk/ -name "*.cpp" -o -name "*.hpp" | xargs clang-format -i ``` azure-sdk-for-cpp/ -├── .github/ # GitHub configuration and workflows -│ ├── copilot-instructions.md # Copilot-specific guidance -│ └── workflows/ # CI/CD workflows -├── cmake-modules/ # CMake helper modules -├── doc/ # Documentation -├── eng/ # Engineering system scripts -│ ├── common/ # Shared scripts across Azure SDKs -│ └── docs/ # Documentation generation -├── samples/ # Sample applications -├── sdk/ # SDK service libraries -│ ├── core/ # Core libraries (azure-core, azure-core-amqp, etc.) -│ ├── storage/ # Storage services (blobs, files, queues) -│ ├── identity/ # Authentication and identity -│ ├── keyvault/ # Key Vault (keys, secrets, certificates) -│ └── template/ # Template for new services -├── tools/ # Development tools -├── vcpkg.json # Package dependencies manifest -├── CMakeLists.txt # Root CMake configuration -├── CONTRIBUTING.md # Contribution guidelines -└── AGENTS.md # This file ++-- .github/ # GitHub configuration and workflows + +-- copilot-instructions.md # Copilot-specific guidance + +-- workflows/ # CI/CD workflows ++-- cmake-modules/ # CMake helper modules ++-- doc/ # Documentation ++-- eng/ # Engineering system scripts + +-- common/ # Shared scripts across Azure SDKs + +-- docs/ # Documentation generation ++-- samples/ # Sample applications ++-- sdk/ # SDK service libraries + +-- core/ # Core libraries (azure-core, azure-core-amqp, etc.) + +-- storage/ # Storage services (blobs, files, queues) + +-- identity/ # Authentication and identity + +-- keyvault/ # Key Vault (keys, secrets, certificates) + +-- template/ # Template for new services ++-- tools/ # Development tools ++-- vcpkg.json # Package dependencies manifest ++-- CMakeLists.txt # Root CMake configuration ++-- CONTRIBUTING.md # Contribution guidelines ++-- AGENTS.md # This file ``` ## SDK-Specific Automation Workflows