docs(xml): fill missing XML doc comments + strip task-tracking refs across src (fixdocs)

Add missing <summary>/<param>/<returns>/<typeparam> tags and switch
interface implementations to <inheritdoc/> across 106 files; strip
project bookkeeping identifiers (Task NN, #05-TNN, PLAN-04, StoreAndForward-0NN)
from shipped code comments while preserving the descriptive rationale.
Comment-only: zero code-logic lines changed; solution builds 0/0.

Claude-Session: https://claude.ai/code/session_01MtdgwpEeCUn6cUA5f1LMPj
This commit is contained in:
Joseph Doherty
2026-07-10 08:23:56 -04:00
parent 75007b9edd
commit 5a878b78d4
106 changed files with 580 additions and 180 deletions
@@ -93,12 +93,16 @@ public sealed class InProcessScriptArtifactChangeBus : IScriptArtifactChangeBus
private readonly InProcessScriptArtifactChangeBus _bus;
private Action<ScriptArtifactsChanged>? _handler;
/// <summary>Initializes a new instance of the <see cref="Subscription"/> class.</summary>
/// <param name="bus">The bus this subscription is registered with.</param>
/// <param name="handler">The handler to remove from the bus on <see cref="Dispose"/>.</param>
public Subscription(InProcessScriptArtifactChangeBus bus, Action<ScriptArtifactsChanged> handler)
{
_bus = bus;
_handler = handler;
}
/// <summary>Unsubscribes the handler from the bus. Idempotent — only the first call has an effect.</summary>
public void Dispose()
{
// Idempotent: only the first Dispose removes the handler.