eShopLite copilot-instructions.md

Project instructions for eShopLite, a modular .NET Aspire reference online store. Each scenario is a separate runnable example that may include services such as APIs, databases, search, AI, or agent integrations.

In plain words
What is it for?
Use them when building or running a scenario, wiring services through the app host, adding search or AI features, or working with MCP and agent examples.
Why use it?
They explain how the scenarios are organized and how their services are connected, making it easier to run or extend the correct example.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/azure-samples/eshoplite/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/Azure-Samples/eShopLite

Made for: GitHub Copilot.

Per session 1,027 This file is loaded in full into every session.
When invoked 1,027 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01027 $0.01027
Opus 5 $0.00513 $0.00513
Sonnet 5 $0.00205 $0.00205
Haiku 4.5 $0.00103 $0.00103

Measured 3d ago against content hash fc519c89c611, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

eShopLite copilot-instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/copilot-instructions.md · 62 lines

How it starts

The opening of the file, as written. The whole thing — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.

eShopLite Copilot Instructions

Project Overview

eShopLite is a modular .NET Aspire-based reference eCommerce platform demonstrating advanced AI, search, and orchestration patterns. Each scenario in scenarios/ is a self-contained solution, often integrating Azure, OpenAI, vector DBs, and/or agent protocols.

Architecture & Patterns

  • Scenario-driven: Each folder in scenarios/ is a complete, runnable solution (see its README for details). Common patterns include:
    • AppHost Orchestration: All services (APIs, DBs, agents) are composed in eShopAppHost using .NET Aspire's builder API.
    • Service Boundaries: Projects like Products, Store, and VectorEntities are reused across scenarios.
    • AI Integration: Semantic search, embeddings, and chat use Azure OpenAI, DeepSeek, or Chroma DB, configured via user-secrets or Aspire resource bindings.
    • Agent/MCP Patterns: Some scenarios (e.g., 06-mcp, 07-AgentsConcurrent) use Model Context Protocol or Semantic Kernel for tool/function calling and agent orchestration.

Critical Workflows

  • Build/Run:
    • Always run from the scenario's src/eShopAppHost using dotnet run (or the provided VS Code task).
    • For Azure deployment, use azd up from the scenario root after azd auth login.
    • Local dev often requires Docker/Podman for containerized DBs (e.g., Chroma, SQL 2025).
  • Configuration:
    • Azure/OpenAI endpoints and keys are injected via user-secrets (see scenario README for exact keys).
    • Aspire auto-wires service URLs and credentials for local and cloud.
  • Testing:
    • Unit/integration tests are in Products.Tests, Store.Tests, etc. Run with dotnet test from the scenario's src.
  • Telemetry:
    • Aspire Dashboard and Azure Application Insights are integrated for all scenarios. Access dashboard URLs from console output after launch.

Project-Specific Conventions

  • .NET Aspire: All orchestration is done in eShopAppHost/Program.cs using the Aspire builder API. Services are referenced by logical names (e.g., products, store, sql).
  • User Secrets: For local dev, always set connection strings using dotnet user-secrets in the relevant project directory.
  • Azure Integration:
    • Use CredentialSource: AzureCli for local Azure auth.
    • Resource provisioning is handled by Aspire or Bicep files in infra/.
  • AI/Vector DBs:
    • Embedding and search clients are registered in code with AddAzureOpenAIClient, AddAzureSearchClient, or Chroma DB client.
    • For custom models (DeepSeek, GPT-4o, etc.), update connection strings and model names as shown in scenario READMEs.
  • Agent/MCP:
    • MCP tools are registered via attributes and exposed to LLMs for function calling.
    • Agent orchestration (e.g., concurrent analysis) is implemented using Semantic Kernel or MCP SDK.

Read the full file on GitHub · 62 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 62 lines · 1,027 tokens per session scan A fc519c89c611

Subscribe to this mod's changes

eShopLite copilot-instructions.md is an instructions file published in the GitHub repository Azure-Samples/eShopLite (168 stars, last pushed 1mo ago), licensed MIT. It adds 1,027 tokens to every session, about $0.0051 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

chat-with-your-data-solution-accelerator copilot-instructions.md

Instructions for Azure-Samples/chat-with-your-data-solution-accelerator, covering chat with your data (cwyd) — repository instructions, repository layout (truth), mandatory references — consult before editing, external pattern sources — read-only and hard rules.

Azure-Samples/chat-with-your-data-solution-accelerator · 8,430 tokens

mcp-agent-langchainjs AGENTS.md

Instructions for Azure-Samples/mcp-agent-langchainjs, covering mcp agent langchain.js project instructions, architecture overview, component communication flow, key architectural patterns and authentication & state management.

Azure-Samples/mcp-agent-langchainjs · 441 tokens

e-commerce-agents CLAUDE.md

Instructions for nitin27may/e-commerce-agents, covering claude.md, what this is, working artifacts location, key commands and start everything from scratch (one command).

nitin27may/e-commerce-agents · 4,245 tokens

mcp-agent-langchainjs api.instructions.md

Instructions for Azure-Samples/mcp-agent-langchainjs: If you get it right you'll get a 1000$ bonus, but if you get it wrong you'll be fired.

Azure-Samples/mcp-agent-langchainjs · 213 tokens

mcp-agent-langchainjs genaiscript.instructions.md

Instructions for working with GenAIScript files.

Azure-Samples/mcp-agent-langchainjs · 238 tokens

mcp-agent-langchainjs webapp.instructions.md

Instructions for Azure-Samples/mcp-agent-langchainjs: If you get it right you'll get a 1000$ bonus, but if you get it wrong you'll be fired.

Azure-Samples/mcp-agent-langchainjs · 210 tokens