Multi-stage AI pipelines for code. Plan, implement, test, review — orchestrated as directed graphs.
This bundle implements the attractor nlspec defined at
github.com/strongdm/attractor. Community
.dot files written against the canonical spec should work without modification.
We extend the spec selectively where high-value additions warrant it. Every extension is
backward-compatible and documented in specs/EXTENSIONS.md.
If you find behavior that diverges from the canonical spec without an entry in that file,
treat it as a bug.
Dependency awareness. Per the Amplifier ecosystem
REPOSITORY_RULES.md:
this bundle's declared code dependencies are amplifier-core and its own internal modules.
It does not reference downstream consumers (resolvers, orchestration platforms, or
application bundles). The one documented lineage exception is amplifier-bundle-recipes:
attractor is a follow-up to that recipe-bundle work, and specific recipe patterns may be
cited as prior-art inspiration where useful.
| Guide | Description |
|---|---|
| Vision | What this repo is for and how it is steered -- the north star it carries forward from the nlspec, the decision matrix governing every change, the layers we converge on, and what we resist. States the desired state, not status: what exists today lives in the ledgers |
| Getting Started | Installation, first pipeline run, provider selection, common gotchas |
| Attractor Explained | Visual explainer for people who want to understand what attractors are and how they work -- the convergence loop, evidence gates, engine mechanics, a worked run-through (rendered page; share the link) |
| DOT Authoring Guide | How to design effective pipelines -- patterns, attributes, fidelity, stylesheets |
| DOT Syntax Reference | Quick reference tables and copy-paste patterns |
| Routing Reference | Edge selection algorithm, report_outcome tool, condition expressions, common pitfalls |
| App Integration Guide | Using pipelines from Python applications (DirectProvider vs AmplifierSession) |
| Pipeline Design Principles | Eight framework-agnostic design principles, opening with the control-plane vs recipe-plane line -- the three-question test for whether the work wants a pipeline at all -- then tier discipline, validation patterns, loop convergence, LLM output protocols, parameterization, verdict-bearing nodes, and delta-assertion / shared-checkout discipline |
| Issue Pipeline | What happens after a maintainer labels an issue ready:spec (defects) or ready:feature-spec (features) -- the autonomous specify/implement pipelines, their human review gates, what makes a good defect report, and how a maintainer supplies binding acceptance criteria for a feature |
| Quality Protocol | How work gets proven here -- the design -> build -> live-proof -> adversarial-review -> maintainer's-word arc, the evidence each class of change owes before merge, the five-layer drift defense against the upstream nlspec, and the meta-protocol for amending and retiring all of it |
| Guidance Eval | The standing instrument behind the Quality Protocol's Guidance surfaces row -- six scenarios that install this bundle the way a user does, drive real sessions against agents/, skills/, context/ and the teaching docs, and grade them blind against criteria anchored in the canonical spec and the vision |
1. Add to your Amplifier config:
# .amplifier/config.yaml (or any bundle that includes this)
includes:
- bundle: git+https://github.com/microsoft/amplifier-bundle-attractor@main#subdirectory=profiles/attractor-profile-anthropicPick your provider: attractor-profile-anthropic, attractor-profile-openai, or attractor-profile-gemini.
2. Point the pipeline orchestrator at a .dot file:
# .amplifier/config.yaml (or any bundle file)
includes:
- bundle: attractor:bundles/attractor-pipeline
session:
orchestrator:
config:
dot_file: examples/pipelines/00-convergence-loop.dot # or dot_source: "digraph { ... }"Then run the configured bundle -- there are no pipeline-specific CLI flags. The
goal is carried by the DOT graph attribute graph [goal="Write a Python function count_words(text) ..."] (or via params), not a --goal flag. The pipeline
loops until pytest passes -- that is the convergence loop in action.
3. Or just ask conversationally:
"Run the plan-implement-test pipeline to add input validation to the login endpoint"
"Build a test suite for the auth module using a parallel pipeline"
The agent can generate pipelines on-the-fly or use any of the included examples.
4. Or run an example directly from the CLI:
Two CLIs exist, and they are not the same thing. attractor is this
bundle's opinionated wrapper -- it auto-loads the attractor pipeline bundle
(loop-agent default worker, the three-provider profile map, capsule-lane
integration) so attractor run/attractor lint/attractor resume keep
working exactly as documented below. It ships today from
amplifier-bundle-dot-runner's
pipeline-runner module as a deprecation-window entry point (prints a
one-line stderr notice) -- the engine-native default it will eventually fall
back to is deliberately NOT this bundle. The engine's OWN command,
dot-runner, has zero reach into this repo: engine-native defaults
(direct worker, provider bootstrap from env keys), no attractor bundle,
no capsule lanes. Use attractor for the opinionated coding-agent
experience this README describes; use dot-runner if you want the bare
engine with no pattern-layer opinions. This bundle does not ship its own
attractor console script (that would collide with the one above during
the deprecation window) -- only bundle-level wiring (the explicit worker: "spawn" + profiles declarations described under
Backend Selection / Worker Selection).
The attractor run CLI executes a .dot with no config file. The
bug-fix / refactor / test-gen practical examples
ship a runnable sample target, so they work walk-up. From a clone of this repo:
DOT="$PWD/examples/pipelines/practical/bug-fix.dot"
cp -r examples/pipelines/practical/sample /tmp/attractor-demo
cd /tmp/attractor-demo
attractor run "$DOT" \
--param goal="Fix the TypeError in get_display_name when a user's avatar is None" \
--cwd .Then pytest -v in the copy to see the fix + regression test. The sample is
copied to a temp dir so the committed fixture stays pristine; $DOT is captured
absolute before cd because the .dot path resolves from your current directory
while --cwd is where the pipeline reads and writes (the two must match for
agent pipelines -- see
modules/pipeline-runner/KNOWN_ISSUES.md).
See the practical examples guide for the full set.
If a run is interrupted (a crash, a kill, a lost machine), resume it from the run directory it left behind — completed nodes are not re-executed and the restored context carries forward:
attractor resume /path/to/run-dir --cwd .Resume is explicit and opt-in: attractor run never reads a checkpoint back,
so a leftover checkpoint.json can never change what a fresh run does. Use the
same --cwd the interrupted run used. A missing, corrupted, already-completed
or foreign checkpoint fails loud and exits non-zero — it never silently
restarts from the start node. See
attractor-spec §5.3 and
the design record.
Fix a bug systematically -- reproduce, diagnose, fix, regression test, verify:
# .amplifier/config.yaml (or any bundle file)
includes:
- bundle: attractor:bundles/attractor-pipeline
session:
orchestrator:
config:
dot_file: examples/pipelines/practical/bug-fix.dotThe goal lives in the DOT itself: graph [goal="Fix the NullPointerError in UserService.get个人资料()"] (or supply params for $param substitution).
Review a PR in parallel -- analyze diff, then simultaneously check bugs, security, performance, and style -- then synthesize review comments:
# .amplifier/config.yaml (or any bundle file)
includes:
- bundle: attractor:bundles/attractor-pipeline
session:
orchestrator:
config:
dot_file: examples/pipelines/practical/pr-review.dotThe goal lives in the DOT itself: graph [goal="Review PR #142"] (or supply params for $param substitution).
Build a feature safely -- parse spec, parallel implement (core, API, tests), integration test, human review gate:
# .amplifier/config.yaml (or any bundle file)
includes:
- bundle: attractor:bundles/attractor-pipeline
session:
orchestrator:
config:
dot_file: examples/pipelines/practical/feature-build.dotThe goal lives in the DOT itself: graph [goal="Add user avatar upload with S3 storage"] (or supply params for $param substitution).
| Pipeline | What it does |
|---|---|
| Objective Runner | You state an objective; it diagnoses, then selects a shipped lane, composes a purpose-built child pipeline, or redirects with an honest written no |
| Authoring Attractor | You state a design brief; it diagnoses, authors a new reusable pipeline, converges it under attractor lint + a structural contract + an independent critique, and publishes it with provenance — or redirects with an honest written no |
| Pipeline | What it teaches |
|---|---|
| Convergence Loop | The bowl — minimal 4-node convergence loop. Start here. |
| Plan-Implement-Test | Staged convergence: plan → implement → test_gate with goal_gate + retry_target + corrective back-edge |
| Bug Fix | The bowl applied to real work: inner fix loop + root-cause wall + outer feedback loop |
| Task Runner | Battle-hardened goal+DoD runner (orient/attempt/verify/critique/triage) |
| Pipeline | Mechanism |
|---|---|
| Simple Linear | A -> B -> C linear flow |
| Conditional Routing | diamond routing node |
| Retry with Fallback | Retry loop with fallback |
| Parallel Fan-Out | component fork / tripleoctagon join |
| Model Stylesheet | CSS-like per-node model routing |
| Fidelity Modes | Context fidelity control |
| Human Gate | hexagon human-approval gate |
| Manager-Supervisor | house manager/supervisor loop |
| Full Attractor | All features together |
| Manager Child + HITL | Nested pipeline + gate |
| Graph Resume | File-state guards / resumable |
| Pipeline | Use Case |
|---|---|
| PR Review | Parallel multi-dimension code review |
| Test Generation | Test authoring with validation loop |
| Bug Fix | Reproduce → diagnose → fix → verify |
| Feature Build | Parallel implementation + human gate |
| Refactoring | Snapshot-safe code improvement |
| Multi-Lens Review | 3 providers × 3 lenses |
| Drift Review | QUALITY_PROTOCOL.md Layer 3: holistic semantic review of this repo against the canonical spec and docs/VISION.md |
Bug Fix, Test Generation, and Refactoring ship a runnable sample, so they work with no setup. See examples/pipelines/practical/ for the full set.
The loop-pipeline orchestrator walks a Graphviz DOT digraph. Each node is an AI task (or control node like fork/join/gate), and edges define the flow between them. For each LLM node, the orchestrator spawns a loop-agent sub-session that runs an agentic tool loop -- call LLM, execute tools, feed results back -- until the node's task completes. Results flow forward along edges to the next node.
The graph is the program — but choosing which graph is still a decision, and
it is usually the one a user cannot make. examples/objective/objective-runner.dot
takes that decision as its input: you pass an objective, and the runner
diagnoses it with the three-question test, then selects one of the shipped
practical pipelines, composes a purpose-built child graph (which must clear
attractor lint and a structural contract check before it is allowed to run), or
redirects — exiting green with a written diagnosis when the honest answer is
that the work wants a recipe, a conversation, or a one-shot.
It stacks the same doctrine one level up rather than relaxing it. The first
routing decision runs on a schema-validated artifact written by a worker and
admitted by a code gate, not on the worker's self-report. A child pipeline's
own success is used for loud fail-routing only — satisfaction is decided by the
parent re-running the definition-of-done command itself, plus a delta assertion
against an anchor recorded before any work began. It is author-level content
only: one .dot, two stdlib scripts, no engine surface.
Each profile wires a provider, an agent loop, provider-aligned tools, and a system
prompt. All profiles include attractor-core (shared hooks and the
tool-report-outcome tool).
| 个人资料 | Provider | Tools | Env Var |
|---|---|---|---|
attractor-profile-anthropic |
Anthropic Claude | tool-filesystem (read/write/edit), tool-bash (120s timeout), tool-search |
ANTHROPIC_API_KEY |
attractor-profile-openai |
OpenAI | tool-apply-patch (v4a diffs), tool-filesystem (read/write only), tool-bash (10s timeout), tool-search |
OPENAI_API_KEY |
attractor-profile-gemini |
Gemini | tool-filesystem, tool-bash (10s timeout), tool-search, tool-web (search + fetch) |
GEMINI_API_KEY |
The Anthropic profile mirrors Claude Code conventions (edit_file with old/new strings, long shell timeouts). The OpenAI profile mirrors codex-rs conventions (apply_patch with v4a unified diffs, short shell timeouts). The Gemini profile adds web tools for grounding.
See docs/DOT-SYNTAX.md for the complete reference.
Quick version -- pipelines are Graphviz DOT digraphs where node shapes determine behavior:
| Shape | What it does |
|---|---|
Mdiamond |
Start node (entry point) |
Msquare |
Exit node (pipeline end) |
box |
LLM agent node (default) |
diamond |
Conditional routing point (no-op handler; edges do the routing) |
component |
Parallel fan-out |
tripleoctagon |
Parallel fan-in (collect results) |
hexagon |
Human approval gate |
parallelogram |
External tool execution |
folder |
Nested sub-pipeline (runs a child DOT via dot_file=) |
house |
Manager/supervisor loop |
Minimal pipeline:
digraph {
start [shape=Mdiamond]
task [prompt="Do the thing described in $goal"]
done [shape=Msquare]
start -> task -> done
}See DOT Authoring Guide for complete patterns and examples.
- Model stylesheets -- override provider, model, and reasoning effort per-node via CSS-like selectors:
graph [model_stylesheet=" box { llm_provider: anthropic; llm_model: claude-sonnet-4-6 } .fast { llm_model: claude-haiku-3-5-20241022 } "]
- Fidelity modes -- control context carryover between nodes (
full,compact,truncate,summary) - Human gates -- pause pipelines for human approval at any stage
$paramexpansion -- pass key-value parameters for template reuse:{ "goal": "Build a REST API", "dot_file": "template.dot", "params": {"language": "Python", "framework": "FastAPI"} }
The pipeline engine works as a library from any Python app built on
amplifier-core + amplifier-foundation. No CLI dependency required.
See examples/programmatic_usage.py for a complete, runnable example.
Best for analysis/reasoning pipelines where nodes only need to generate text (no file editing or shell commands).
import asyncio
import tempfile
from amplifier_module_loop_pipeline.dot_parser import parse_dot
from amplifier_module_loop_pipeline.engine import PipelineEngine
from amplifier_module_loop_pipeline.context import PipelineContext
from amplifier_module_loop_pipeline.handlers import HandlerRegistry
from amplifier_module_loop_pipeline.transforms import apply_transforms
from amplifier_module_loop_pipeline.validation import validate_or_raise
from amplifier_module_loop_pipeline import DirectProviderBackend
DOT = """
digraph {
graph [goal="Explain what a monad is in 3 sentences"]
start [shape=Mdiamond]
draft [prompt="Write a first draft: $goal", llm_provider="anthropic"]
review [prompt="Improve this draft, keep it concise: $context"]
done [shape=Msquare]
start -> draft -> review -> done
}
"""
async def main():
graph = parse_dot(DOT)
context = PipelineContext()
apply_transforms(graph, context)
validate_or_raise(graph)
# provider=None auto-creates unified_llm.Client from env vars
backend = DirectProviderBackend(provider=None)
engine = PipelineEngine(
graph=graph, context=context,
handler_registry=HandlerRegistry(backend=backend),
logs_root=tempfile.mkdtemp(),
)
outcome = await engine.run()
print(f"Status: {outcome.status.value}")
print(f"Result: {outcome.notes}")
asyncio.run(main())Requirements: install amplifier-module-loop-pipeline from the bundle (this pulls in
unified-llm-client automatically):
pip install "amplifier-module-loop-pipeline @ git+https://github.com/microsoft/amplifier-bundle-dot-runner@main#subdirectory=modules/loop-pipeline"
Plus an API key in environment (ANTHROPIC_API_KEY, OPENAI_API_KEY, or GEMINI_API_KEY).
Best for coding pipelines where nodes need to read/write files, run shell commands, and use the full agent tool loop. Each pipeline node gets its own sub-session with the complete tool set.
import asyncio
from pathlib import Path
from amplifier_foundation import Bundle, load_bundle
ATTRACTOR_BUNDLE = "git+https://github.com/microsoft/amplifier-bundle-attractor@main#subdirectory=profiles/attractor-profile-anthropic"
DOT = """
digraph {
graph [goal="Create a Python function that checks if a number is prime"]
start [shape=Mdiamond]
implement [prompt="$goal. Write it to prime.py.", goal_gate=true]
test [prompt="Write tests for prime.py and run them."]
done [shape=Msquare]
start -> implement -> test -> done
}
"""
async def main():
# Load the attractor profile bundle
bundle = await load_bundle(ATTRACTOR_BUNDLE)
# Overlay pipeline config with your DOT source
overlay = Bundle(
name="my-pipeline",
session={"orchestrator": {
"module": "loop-pipeline",
"config": {"dot_source": DOT},
}},
)
composed = bundle.compose(overlay)
# Prepare (downloads modules if needed) and create session
prepared = await composed.prepare()
session = await prepared.create_session(session_cwd=Path.cwd())
# Register session.spawn so pipeline nodes get full sub-sessions
# (See examples/programmatic_usage.py for the spawn capability impl)
# See examples/programmatic_usage.py for register_spawn_capability implementation
register_spawn_capability(session, prepared)
async with session:
result = await session.execute("Run the pipeline")
print(result)
asyncio.run(main())The key difference: with session.spawn registered, the AmplifierBackend kicks
in and each pipeline node gets a full child session with tools (filesystem, bash,
search). Without it, you get DirectProviderBackend, which runs a per-node agentic
tool loop and passes through whatever tools the host has mounted -- so a node is
tool-free only when the host mounts none, which is the case in the bare
programmatic path above. See Backend Selection for the full
contract (DirectProviderBackend also requires an explicit llm_model on every
node; there is no default).
See amplifier-foundation/examples/07_full_workflow.py for the reference
register_spawn_capability() implementation. For a comprehensive guide,
see App Integration Guide.
Sessions that compose attractor-core have access to the attractor-expert
agent -- a context-sink that carries deep knowledge of DOT syntax, pipeline
patterns, programmatic integration, and debugging. Delegate to it for pipeline
design questions, DOT authoring help, or troubleshooting:
delegate to attractor:attractor-expert
This engine implements StrongDM's attractor nlspec.
It ships documented extensions to that spec (see specs/EXTENSIONS.md)
and at least one documented divergence from it (main-loop no-matching-edge hard-fail —
specs/EXTENSIONS.md §33 — where we hard-fail instead of the spec's dead-end-implies-success
default; see SPEC_CONFORMANCE.md ATX-11 for the rationale).
We do not currently offer semver guarantees or a formal deprecation policy on this repo.
Development velocity is high and behavior can change between commits. If you depend on this
engine, pin a commit SHA rather than tracking @main.
suggested_next_ids typing: node IDs are strings, and an Outcome.suggested_next_ids
entry must match a target node's id exactly. Edge selection coerces the one type slip an
LLM actually makes -- a bare number, [3] instead of ["3"] -- to its string form before
comparing (edge_selection._coerce_suggested_id()); any other shape (bool, float,
dict, list, None) is rejected as malformed, logged with the value and its type, and
skipped so one bad entry does not sink the rest of the list. A suggestion that survives
coercion but names no real node falls through to the next selection step, and the resulting
no_matching_edge failure names both the suggested IDs and the outgoing edge targets that
existed. So if an outcome report routes unexpectedly, check the exact spelling first --
the types are handled. See specs/EXTENSIONS.md §34.
Expand architecture details
- attractor-core (behavior): Provider-agnostic tools and hooks shared by all profiles. Includes
tool-report-outcome,hooks-tool-truncation,hooks-pipeline-progress, andhooks-pipeline-observability. - 个人资料s: Each profile includes
attractor-coreand adds a provider, orchestrator (loop-agent), provider-specific tools, and a system prompt. - Modules: Self-contained Amplifier modules in
modules/, each independently testable with its ownpyproject.toml.
amplifier-bundle-attractor/
├── behaviors/
│ └── attractor-core.yaml # Shared tools + hooks (provider-agnostic)
├── profiles/ # Provider-specific complete configs
│ ├── attractor-profile-anthropic.yaml
│ ├── attractor-profile-openai.yaml
│ └── attractor-profile-gemini.yaml
├── context/ # System prompts per provider
│ ├── system-anthropic.md
│ ├── system-openai.md
│ └── system-gemini.md
├── examples/
│ ├── pipelines/ # 10 example + 5 practical DOT pipelines
│ └── programmatic_usage.py # Using the engine from Python code
├── modules/ # Amplifier modules
│ ├── loop-agent/ # Agent loop orchestrator
│ ├── loop-pipeline/ # DOT graph-driven pipeline orchestrator
│ ├── tool-apply-patch/ # v4a unified diff tool (OpenAI only)
│ ├── unified-llm-client/ # Multi-provider LLM client library
│ ├── tool-report-outcome/ # Structured outcome reporting tool
│ ├── tool-pipeline-run/ # Runtime pipeline invocation tool
│ ├── hooks-tool-truncation/ # Tool output truncation hook
│ ├── hooks-pipeline-progress/ # Pipeline progress reporting hook
│ ├── hooks-pipeline-observability/ # Pipeline observability hooks (state aggregator, status bar, event persistence)
│ ├── tool-dashboard-query/ # Pipeline status queries and management via HTTP API
│ └── tool-pipeline-status/ # Returns pipeline execution state
└── docs/
└── DOT-SYNTAX.md # DOT syntax reference
| Module | Type | Description |
|---|---|---|
loop-agent |
orchestrator | Single-turn coding agent loop with steering, loop detection, and context management |
loop-pipeline |
orchestrator | Multi-stage DOT graph-driven pipeline with checkpointing, retry, and fidelity control |
tool-apply-patch |
tool | v4a unified diff patch application (OpenAI/codex-rs style) |
unified-llm-client |
library | Multi-provider LLM client with adapters for Anthropic, OpenAI, Gemini |
tool-report-outcome |
tool | Structured result reporting for pipeline integration |
tool-pipeline-run |
tool | Runtime pipeline invocation via session.spawn |
hooks-tool-truncation |
hook | Truncates large tool outputs to manage context window |
hooks-pipeline-progress |
hook | Reports pipeline stage progress |
hooks-pipeline-observability |
hook | Pipeline observability hooks — state aggregator, status bar, and event persistence |
tool-dashboard-query |
tool | Pipeline status queries and management via HTTP API |
tool-pipeline-status |
tool | Returns pipeline execution state |
The pipeline orchestrator (loop-pipeline, now living in
amplifier-bundle-dot-runner)
resolves ONE adapter class (AmplifierBackend) that internally dispatches
per node to a named worker (dot-runner specs/EXTENSIONS.md §40):
- The node's own
worker=attribute, if set. - The run-level default -- this bundle's pipeline orchestrators declare it
EXPLICITLY as
config.worker: "spawn"(seebundles/attractor-pipeline.yaml,agents/pipeline-runner.yaml,bundle.md) rather than relying on capability-fallback. - Capability fallback (unchanged):
"spawn"ifsession.spawnresolved for this run, else"direct".
"spawn" reaches a hosted child-agent session (full sub-session per node,
tools included) via the profiles map, spawning loop-agent by default in
this bundle. "direct" is a single in-process agentic tool loop against a
provider with no hosted session -- requires an explicit llm_model on every
node; there is no default. See the
DOT Authoring Guide's Worker Selection section
for the full picture, including llm_provider (model family) vs worker
(execution mechanism).
Each module is independently testable:
cd modules/loop-agent && uv run pytest tests/ -q
cd modules/loop-pipeline && uv run pytest tests/ -q
cd modules/tool-apply-patch && uv run pytest tests/ -q
cd modules/unified-llm-client && uv run pytest tests/ -q
cd modules/tool-report-outcome && uv run pytest tests/ -q
cd modules/tool-pipeline-run && uv run pytest tests/ -q
cd modules/hooks-tool-truncation && uv run pytest tests/ -q
cd modules/hooks-pipeline-progress && uv run pytest tests/ -q
cd modules/hooks-pipeline-observability && uv run pytest tests/ -q
cd modules/tool-dashboard-query && uv run pytest tests/ -q
cd modules/tool-pipeline-status && uv run pytest tests/ -qRun all modules:
for mod in modules/*/; do
echo "=== $mod ===" && (cd "$mod" && uv run pytest tests/ -q)
done- Modules depend on
amplifier-core. Eachpyproject.tomluses a relative path for local dev:[tool.uv.sources] amplifier-core = { path = "../../../amplifier-core", editable = true }
loop-pipelineandloop-agentadditionally depend onunified-llm-client(bundled atmodules/unified-llm-client/, resolved via[tool.uv.sources]relative paths).- For programmatic usage with full sessions:
pip install amplifier-foundation.
Manual end-to-end tests against real LLM providers are in tests/e2e/. See
tests/e2e/MANUAL_E2E.md for instructions.
Contributions are welcome. 拉取请求 are reviewed by the repository's code owners and
must pass the required CI Gate (all checks passed) check before merge (see AGENTS.md).
If your change alters an observable contract — dispatch semantics, event contracts, or
admission/validation behavior — it needs a specs/EXTENSIONS.md entry describing the
change (the PR template will prompt for this).
Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit Contributor License Agreements.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.