microsoft/a365-code-validator
> Validates and optionally fixes Agent 365 observability code so an agent actually emits MAC Activity telemetry. Use when an Agent 365 agent's telemetry isn't reaching MAC Activity or Defender, when spans export (HTTP 200 / "sent") but Activity stays empty, when the caller or agent id looks wrong in reporting, or to pre-flight whether an agent will emit MAC Activity before shipping. Diagnoses and fixes existing instrumentation; do NOT use it to add observability from scratch — use instrument-observability for that. Checks exporter activation, runtime agent-identity binding (vs blueprint id), the S2S FMI / OBO token shape, S2S vs OBO endpoint selection, the required semantic spans (invoke_agent/chat/execute_tool/output_messages), Activity attributes, and live blueprint grants and inheritance through read-only a365 Microsoft Graph diagnostics. Read-only by default; asks before applying safe fixes. Python, Node.js, and .NET.
npx skills add https://github.com/microsoft/agent365-skills --skill a365-code-validator
> Trigger phrases — any of these will activate this skill automatically:
> - "validate a365 code"
> - "run a365 code validator"
> - "check a365 observability code"
> - "debug a365 activity missing"
> - "debug MAC activity for this agent"
> - "validate Agent 365 telemetry"
> - "check why Agent Activity is empty"
> - "check A365 exporter flags"
> - "validate gen_ai agent id"
> - "check A365 span types"
This skill performs a report-first validation of an existing agent codebase to answer:
> "If this agent runs now, will its spans reach the A365 backend and become eligible for MAC Activity?"
It is designed for incident response. It checks the exact classes of bugs that cause
silent or confusing A365 Activity failures:
gen_ai.agent.id set to a Blueprint ID instead of the runtime Agent Identity / Source Agent ID.No source code is modified during validation. After the report, the skill asks whether to
apply safe fixes, create a fix plan only, or stop.
This report may be pasted into a customer or partner thread, so it must be safe to share:
never print internal cluster/database names, Kusto queries, private endpoint or route
templates, correlation IDs, or real tenant/agent IDs. Report file/function names and public,
supportable signals only. This is non-negotiable — it holds even when a user asks for "just
the raw details."
> Show the user this checklist BEFORE Phase 1. Exactly one task is in progress at a time.
> Claude Code uses TaskCreate / TaskUpdate; VS Code Copilot Chat / GitHub Copilot CLI
> should show and update a markdown checklist.
TaskCreate: "Detect stack and A365 artifacts"
TaskCreate: "Run static A365 code validator"
TaskCreate: "Inspect identity binding and semantic spans"
TaskCreate: "Check live blueprint permissions and runtime state"
TaskCreate: "Summarize blockers and next fixes"
TaskCreate: "Offer guided remediation"
Mark task in progress: "Detect stack and A365 artifacts"
Read, in parallel when possible:
.a365-workspace-detection.local.json if presenta365.config.jsona365.generated.config.json.env, .env.example, .env.production, .env.localappsettings.json, appsettings.Development.jsonpackage.jsonrequirements.txt, pyproject.toml*.csprojDetect:
| Signal | Meaning |
|---|---|
| microsoft-opentelemetry | Python A365 distro present |
| @microsoft/opentelemetry | Node.js A365 distro present |
| Microsoft.OpenTelemetry | .NET A365 distro present |
| agentBlueprintId / agenticAppId | Distinguish Blueprint ID from runtime Agent Identity |
| ENABLE_A365_OBSERVABILITY_EXPORTER / EnableAgent365Exporter | Runtime exporter gate |
| authMode | Drives S2S vs OBO path expectations |
Mark task complete.
Mark task in progress: "Run static A365 code validator"
Run the validator from the target project root.
When running from the plugin source (Claude Code / marketplace plugin), use:
node ${CLAUDE_PLUGIN_ROOT}/hooks/stop/validate-a365-code-validator.js
If the runtime cannot expand ${CLAUDE_PLUGIN_ROOT}, run with the absolute plugin path:
node /path/to/agent365-skills/plugins/agent365/hooks/stop/validate-a365-code-validator.js
When running from an open-standard .agents/skills/a365-code-validator/ install, use the
standalone copy that ships with the skill:
node .agents/skills/a365-code-validator/references/a365-code-validator.js
Parse the JSON output. Treat findings by severity:
| Severity | Meaning |
|---|---|
| critical | Known MAC Activity blocker — fix before expecting activity |
| high | Likely export or identity failure |
| medium | Risky or env-dependent — verify before incident closure |
| low / info | Useful context |
Important: Findings are not stop-hook failures. A validation run is successful when it
accurately reports what is wrong.
Mark task complete.
Mark task in progress: "Inspect identity binding and semantic spans"
Read the reference checklist:
${CLAUDE_PLUGIN_ROOT}/skills/a365-code-validator/references/validation-checklist.md
Then inspect source for these required MAC Activity inputs:
Python must have either explicit code:
use_microsoft_opentelemetry(
enable_a365=True,
a365_enable_observability_exporter=True,
)
or a runtime env guarantee:
ENABLE_A365_OBSERVABILITY_EXPORTER=true
Node.js must have:
useMicrosoftOpenTelemetry({
a365: {
enabled: true,
enableObservabilityExporter: true,
},
});
.NET must have:
"EnableAgent365Exporter": true
Verify the same runtime Agent Identity is used consistently:
token azp/appid/oid == route /agents/{agentId} == span gen_ai.agent.id
The following is wrong for S2S/MAC Activity:
gen_ai.agent.id = <blueprint id>
Blueprint belongs in:
microsoft.a365.agent.blueprint.id
MAC Activity needs supported A365 operations:
invoke_agent
chat
execute_tool
output_messages
Generic HTTP spans alone are not enough. Flag code that only sets baggage but never
creates or auto-generates supported semantic spans.
If the developer expects MAC Activity or Defender agent-activity views (not just exporter
HTTP 200), inspect whether real runs carry the public Agent 365 activity attributes:
| Attribute | What to validate |
|---|---|
| gen_ai.agent.name | Human-readable agent name exists; otherwise UI can show a GUID/blank |
| gen_ai.conversation.id | Present on every span; for non-chat agents use a logical run/job/incident ID |
| microsoft.channel.name | Present on every span; use msteams for Teams, or a product/source value such as icm, web, scheduler |
| microsoft.session.id | Prefer a stable run/session ID; optional, but useful for grouping |
| user.id | Human caller OID for HumanToAgent; do not confuse it with the agent's own user |
| microsoft.agent.user.id | Agent's own Agent User OID when testing AI teammate / Agent-User / OBO |
| gen_ai.input.messages / gen_ai.output.messages | Present on invoke/chat/output spans where applicable |
| Tool details | gen_ai.tool.name, gen_ai.tool.type, gen_ai.tool.call.id, gen_ai.tool.call.arguments, gen_ai.tool.call.result |
| Model details | gen_ai.request.model, gen_ai.provider.name on chat spans |
When reviewing a mixed app, separate the two objectives:
S2S/export success proves telemetry plumbing.
AI teammate/HumanToAgent or EventToAgent run context proves Activity/reporting eligibility.
Do not require Teams-specific values for autonomous agents; require equivalent logical run
context instead.
Caller identity caveat: for HumanToAgent, user.id is the caller ID used for "who ran
this agent" reporting. If it is missing or set to the agent identity / agent user instead
of the human caller object ID, export can succeed while caller/user Activity remains blank
or incomplete.
Do not expose or require internal service URLs in the report. Validate only the structural
intent:
| Auth mode | Structural expectation |
|---|---|
| S2S / application | Uses service-to-service export mode and a token for the runtime Agent Identity |
| OBO / agentic-user | Uses delegated export mode and a token whose delegated scope includes observability write |
Report whether the code appears to select the correct transport mode (useS2SEndpoint /
a365_use_s2s_endpoint / UseS2SEndpoint) for S2S, without printing backend route templates.
For Python S2S, prefer a365_use_s2s_endpoint=True in code rather than relying only on
A365_USE_S2S_ENDPOINT=true in runtime environment. Also check the token shape: the S2S
observability token must come from the 3-hop FMI exchange (principal == runtime Agent Identity),
not a bare client-credentials call — see checklist §5 for the failure signatures.
Do not claim that application app roles can never inherit from blueprints. Current public
Entra Agent ID docs describe both inheritableScopes and inheritableRoles. If a repo or
tenant shows delegated scope inheritance working but S2S app roles requiring direct assignment,
report it as a provisioning/configuration behavior to verify, not as the intended scalable model.
Mark task complete.
Mark task in progress: "Check live blueprint permissions and runtime state"
The static validator can only inspect files. When the project has a non-empty
agentBlueprintId and tenantId, complement it with the a365 CLI's read-only Microsoft
Graph diagnostics. These commands verify the tenant state without changing permissions:
a365 query-entra blueprint-scopes
a365 query-entra inheritance
blueprint-scopes lists the delegated scopes and application roles actually granted onthe Blueprint service principal. This is the authoritative permissions view; do not infer
grants from requiredResourceAccess.
inheritance verifies that every configured resource uses kind=allAllowed for scopes androles and that the Blueprint service principal has something to inherit. It exits non-zero
when any resource has Effective inheritance: NONE or BROKEN.
Run these checks by default only when:
a365 query-entra inheritance --help confirms the installed CLI supports the command,The validator must not install or update the CLI, start an interactive sign-in, run
a365 setup permissions, or issue Graph POST/PATCH/DELETE requests. If a prerequisite is
missing, report Blueprint permissions as not checked, explain why, and provide the two
commands for the developer to run after a365-setup refreshes the CLI/login.
If the local config is missing, copied from another project, or suspected stale, use the
read-only name-based resolver instead:
a365 query-entra blueprint-scopes --agent-name "<agent-name>" --tenant-id "<tenant-id>"
a365 query-entra inheritance --agent-name "<agent-name>" --tenant-id "<tenant-id>"
Compare the live Blueprint ID printed by the command with the local agentBlueprintId, but
do not print either real ID in the support-safe report:
| Result | Classification |
|---|---|
| Live and local Blueprint IDs resolve to the same Blueprint | current |
| Local ID is not found, but name-based lookup resolves a different Blueprint | critical stale/copied config |
| Neither lookup resolves a Blueprint | high tenant/setup gap |
| Graph returns 401/403 or the caller lacks the required Entra role | not checked authentication/authorization gap, not proof that the Blueprint is broken |
Interpret permissions in the context of authMode:
| Auth mode | Required observability grant |
|---|---|
| obo / agentic-user | Delegated Agent365.Observability.OtelWrite |
| s2s | Application role Agent365.Observability.OtelWrite |
| Unknown / mixed | Report which delegated scopes and app roles exist; do not assume the intended side |
Treat a missing required OtelWrite grant as critical. Treat a non-zero inheritance result
for another required resource as high. Permission names and resource display names are safe
to summarize, but redact tenant, Blueprint, application, service-principal, and agent IDs.
For remediation, report the CLI guidance without applying it:
a365 setup requirements when the output points to a missing wids claim or CLI consent.a365 setup permissions ... flow as a Global Administrator to reconcilegrants and inheritance.
a365-setup so the developer can explicitly choose thecorrect reuse/re-run/fresh path. Do not rewrite the ID automatically.
References:
Generate commands appropriate for the project.
For Azure App Service:
az webapp config appsettings list `
-g <resource-group> `
-n <app-name> `
--query "[?name=='ENABLE_A365_OBSERVABILITY_EXPORTER' || name=='EnableAgent365Exporter' || name=='A365_USE_S2S_ENDPOINT']"
For local PowerShell:
$env:ENABLE_A365_OBSERVABILITY_EXPORTER="true"
$env:OTEL_LOG_LEVEL="INFO"
$env:A365_OBSERVABILITY_LOG_LEVEL="debug"
Select-String .a365-observability.log -Pattern "Agent365Exporter|identity groups|Obtained token|export|No token|No eligible"
If backend verification is required, keep customer-facing validation on public/supportable
surfaces:
partialSuccess empty/null where applicable,CloudAppEvents shows the expected AgentId /TargetAgentId / AlternateId after indexing.
If the user is on an internal service team, they may also use their team's approved
dashboard/playbook to confirm request acceptance and downstream delivery, but do not print
those internal queries or endpoints in the validator report.
(Report only support-safe signals — see Output is support-safe above.)
Most "exporter returns 200/sent but nothing shows in MAC" incidents are not code bugs.
When the code checks above pass, have the user confirm, in the *target* tenant:
> Provenance (verified 2026-07-06): the observability resource-SP GUID, the
> Agent365.Observability.OtelWrite scope, and the ingestion-lag figure below are preview-era
> Agent 365 facts and will change. Re-verify against current Agent 365 onboarding docs before
> quoting them to a customer.
prerequisites from public onboarding docs.
supported onboarding or admin process.
az ad sp show --id 9b975845-388f-4429-889e-eab1ef63949creturns a service principal in the tenant. A 404 / AADSTS500011 ("resource principal … not
found") means the observability app isn't provisioned there — an onboarding step, not a code fix.
CloudAppEvents populates before the admin center; give it ~5 min.Mark task complete: "Check live blueprint permissions and runtime state".
Mark task in progress: "Summarize blockers and next fixes"
Return a concise report. Default to the short format below; include the optional details block
only when the user asks for deeper debugging or when a blocker needs a code pointer to be
actionable.
## A365 Code Validator Result
**Status:** PASS / PASS WITH RISKS / BLOCKED
**Blockers**
1. **<short title>** — <one-sentence impact>.
Fix: <one-sentence fix>.
2. **<short title>** — <one-sentence impact>.
Fix: <one-sentence fix>.
**High-risk checks**
- <short item> — <why to verify>.
**Identity binding**
- Runtime agent id: <source / missing / from config>
- Blueprint id: <source / missing / from config>
- Verdict: <correct | wrong | unclear>
**Blueprint permissions**
- Live Blueprint: <current | stale/missing | not checked>
- Grants: <verified summary | missing required permission | not checked>
- Effective inheritance: <OK | NONE | BROKEN | not checked>
**Semantic spans**
- Found: <invoke_agent/chat/execute_tool/output_messages or "none">
- Missing: <ops or "none">
**Recommended fix order**
1. <fix root cause first>
2. <then fix config/env>
3. <then verify spans/identity>
**Optional details**
- Files: `<file>:<line or function>`, ...
- Blueprint check: <read-only command result or reason it was skipped>
- Runtime check: <local/App Service env check or SDK log grep>
- Backend verification: use the team's approved telemetry playbook; do not paste internal
cluster names, private endpoints, or correlation IDs into this report.
Style rules:
a365 publish unless the agent is an AI Teammate / M365 package flow;blueprint-based observability does not use a365 publish.
Mark task complete.
Mark task in progress: "Offer guided remediation"
If there are no critical or high findings, say:
No blocking fixes needed. Keep the runtime verification commands handy for live validation.
Then mark the task complete and stop.
If there are critical or high findings, ask the user with AskUserQuestion:
I found blockers. What would you like me to do next?
Options:
| Option | Meaning |
|---|---|
| apply_safe_fixes | Apply only low-risk, deterministic code/config-template fixes |
| make_fix_plan | Produce an implementation plan, no edits |
| report_only | Stop after the report |
Default: make_fix_plan.
Only apply these automatically when the user chooses apply_safe_fixes:
> Blueprint permissions are never a safe code fix. Do not run a365 setup permissions,
> mutate Graph, grant admin consent, or rewrite a Blueprint ID from this skill. Report the
> mismatch and hand off to a365-setup or the appropriate administrator.
use_microsoft_opentelemetry(...) or builds kwargs for that call and alreadysets enable_a365=True, add the explicit exporter flag:
a365_enable_observability_exporter=True
or:
kwargs["a365_enable_observability_exporter"] = True
ENABLE_A365_OBSERVABILITY_EXPORTER=true
that project already names it. Do not invent a setting name.
agent_identity_app_id / AGENT_IDENTITY_APP_ID.
.env.example if present.Ask a focused follow-up before editing:
AGENT_IDENTITY_APP_ID / agent_identity_app_id.wire an observability token resolver to it.
ask the user to confirm a follow-up implementation.
invoke_agent / output_messages scopes first, or also wraptools and LLM calls.
After applying fixes, show:
**Applied fixes**
- ...
**Still needs user input**
- ...
**Validation to rerun**
- `validate a365 code`
- runtime exporter log check
Run the smallest available project tests if the edited repo has an obvious test command and the
user did not decline validation. Otherwise, state that no obvious test command was run.
Mark task complete.
Take microsoft/a365-code-validator from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.