2026-08-10 claude-codeai-agentsdeveloper-tools Claude Code 2.1.224 Lets One Session Message Another Cross-session messaging landed on August 7, 2026. ListAgents and SendMessage move plain text between your sessions, and crossSessionInbound decides what actually arrives.
2026-08-10 ef-coreef-core-11sql-server How to call a stored procedure and map its results in EF Core 11 Use FromSql on a DbSet when the procedure returns full entity rows, Database.SqlQuery<T> when it returns a projection, and ExecuteSql when it returns nothing. Never chain a LINQ operator onto an EXEC, and never read an output parameter before the reader is disposed.
2026-08-10 csharpdotnetdotnet-11 How to customize source-generated System.Text.Json serialization with a type-info resolver modifier Attach a JsonTypeInfo modifier to a source-generated JsonSerializerContext in .NET 11: why new MyContext(options) silently drops it, the WithAddedModifier setup that works, the fast path you give up (measured), and the naming-policy trap that makes modifiers no-op.
2026-08-10 aspiredotnetdotnet-11 How to override the default resilience handler that Aspire registers Aspire's AddServiceDefaults applies a standard resilience handler to every HttpClient. Calling AddStandardResilienceHandler again stacks a second one instead of replacing it. Here are the three real override paths, the -standard options name nobody documents, and the infinite timeout you inherit if you just remove it.
2026-08-10 migrationcursorai-agents Migrate Cursor Rules to Skills, Subagents, and Plugins (Cursor 3.11) Cursor did not delete rules. It split them. This checklist sorts a .cursorrules file and a folder of .mdc rules into the four things they should be in Cursor 3.11: an AGENTS.md, a small set of surviving rules, skills, and subagents, then bundles the result as a plugin.
2026-08-09 github-copilotmcpai-agents Copilot MCP Allowlists Land in Enterprise Managed Settings GitHub's August 6, 2026 changelog adds allowedMcpServers and deniedMcpServers to copilot/managed-settings.json. URL and argv matchers, deny-wins precedence, and a fail-closed default the older name-based registry never had.
2026-08-09 ef-coreef-core-11migrations How to rename a table in an EF Core 11 migration without losing data EF Core scaffolds RenameTable when you change the table name, but DropTable plus CreateTable when you rename the entity class. Here is how to tell the two apart, the ToTable trick that makes a class rename free, and the column-rename bug that silently swaps your data.
2026-08-09 csharpdotnetdotnet-11 How to serve OpenAPI documentation with Scalar instead of Swagger UI in ASP.NET Core 11 Replace UseSwaggerUI with MapScalarApiReference in ASP.NET Core 11: routing, multiple documents, pre-filled auth, production gating, offline assets, and the Scalar-only OpenAPI extensions that mark endpoints stable or hidden.
2026-08-09 csharpdotnetdotnet-11 How to run a file-based C# app with `dotnet run app.cs` in .NET 11 A complete guide to file-based C# apps: running a single .cs file with dotnet run, the #:package, #:sdk, #:property, #:project and #:include directives, multi-file scripts with #:ref, argument and stdin handling, the build cache, native AOT publishing, packaging as a dotnet tool, and dotnet project convert when the script outgrows itself.
2026-08-09 migrationcursorai-agents Migrate a Custom TypeScript Agent Loop to the Cursor SDK (@cursor/sdk 1.0.26) A step-by-step checklist for retiring a hand-rolled while-loop agent and running the same job on @cursor/sdk 1.0.26. The tool bodies survive, the loop does not, and three things you probably rely on have no equivalent: a system prompt string, a tool allowlist, and per-turn control.