AG-UI: the Agent-User Interaction Protocol. Bring Agents into Frontend Applications.
This report presents the forensic synthetic code analysis of ag-ui-protocol/ag-ui, a Python project with 15,602 GitHub stars. SynthScan v2.0 examined 826,832 lines of code across 3012 source files, recording 7061 pattern matches distributed across 24 syntactic categories. The overall adjusted score of 11.3 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 7061 distinct pattern matches across 24 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/python/tests/test_interrupts.py | 8 | def test_required_fields_only(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 28 | def test_alias_camel_case_on_serialization(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 34 | def test_parse_from_camel_case(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 42 | def test_rejects_missing_reason(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 48 | def test_resolved_with_payload(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 53 | def test_cancelled_without_payload(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 58 | def test_rejects_unknown_status(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 62 | def test_rejects_missing_interrupt_id(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 66 | def test_alias_camel_case_on_serialization(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 72 | def test_parse_from_camel_case(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 102 | def test_json_round_trip_of_every_value_shape(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 107 | def test_empty_object_round_trips_distinct_from_absent(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 112 | def test_explicit_null_reads_back_as_absent(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 118 | def test_plain_model_dump_json_round_trips(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 124 | def test_absent_metadata_serializes_without_the_key(self): | CODE |
| LOW⚡ | sdks/python/tests/test_interrupts.py | 129 | def test_exclude_none_preserves_null_values_under_keys(self): | CODE |
| LOW | sdks/python/tests/test_interrupts.py | 140 | def test_carried_on_cancelled_entries_too(self): | CODE |
| LOW | sdks/python/tests/test_interrupts.py | 144 | def test_reaches_the_agent_through_run_agent_input(self): | CODE |
| LOW | sdks/python/tests/test_null_omission.py | 172 | def test_every_wire_type_omits_fields_without_a_value(self): | CODE |
| LOW | sdks/python/tests/test_null_omission.py | 190 | def test_encoded_event_stream_contains_no_omittable_nulls(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 219 | def _reverted_tool_call_start(self) -> Type[ToolCallStartEvent]: | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 222 | def _serialize_without_omission( | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 230 | def test_reverting_the_setting_reintroduces_the_null(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 241 | def test_reverting_the_setting_reintroduces_the_null_in_the_encoder(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 246 | def test_omission_holds_for_the_unmodified_class(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 254 | def test_null_inside_a_metadata_dict_survives(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 261 | def test_null_extra_field_survives(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 267 | def test_required_field_holding_null_survives(self): | CODE |
| LOW⚡ | sdks/python/tests/test_null_omission.py | 273 | def test_run_agent_input_with_no_state_omits_the_key(self): | CODE |
| LOW | sdks/python/tests/test_null_omission.py | 294 | def test_run_agent_input_accepts_absent_state(self): | CODE |
| LOW | sdks/python/tests/test_null_omission.py | 317 | def test_fixture_covers_this_sdk(self): | CODE |
| LOW | sdks/python/tests/test_null_omission.py | 320 | def test_every_case_reserializes_to_its_expected_json(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 32 | def test_empty_agent_capabilities_serializes_to_empty_object(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 38 | def test_agent_capabilities_top_level_keys_match_typescript(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 68 | def test_identity_capabilities_camel_case_keys(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 83 | def test_transport_capabilities_camel_case_keys(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 97 | def test_tools_capabilities_camel_case_keys(self): | CODE |
| LOW⚡ | sdks/python/tests/test_capabilities.py | 108 | def test_output_capabilities_camel_case_keys(self): | CODE |
| LOW⚡ | sdks/python/tests/test_capabilities.py | 117 | def test_state_capabilities_camel_case_keys(self): | CODE |
| LOW⚡ | sdks/python/tests/test_capabilities.py | 127 | def test_multi_agent_capabilities_camel_case_keys(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 138 | def test_execution_capabilities_camel_case_keys(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 151 | def test_human_in_the_loop_top_level_alias(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 159 | def test_multimodal_nested_shape(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 176 | def test_round_trip_from_camel_case_payload(self): | CODE |
| LOW | sdks/python/tests/test_capabilities.py | 204 | def test_sub_agent_info_required_name(self): | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 21 | def test_text_message_start_with_all_roles(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 34 | def test_text_message_chunk_with_all_roles(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 49 | def test_text_message_chunk_without_role(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 61 | def test_multiple_messages_different_roles(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 90 | def test_text_message_serialization(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 110 | def test_invalid_role_rejected(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 134 | def test_text_message_start_name_preserved_with_roles(self) -> None: | CODE |
| LOW | sdks/python/tests/test_text_roles.py | 146 | def test_text_message_start_default_role(self) -> None: | CODE |
| LOW | sdks/python/tests/test_encoder.py | 12 | def test_encoder_initialization(self): | CODE |
| LOW | sdks/python/tests/test_encoder.py | 73 | def test_encode_with_different_event_types(self): | CODE |
| LOW | sdks/python/tests/test_encoder.py | 104 | def test_null_value_exclusion(self): | CODE |
| LOW | sdks/python/tests/test_encoder.py | 148 | def test_round_trip_serialization(self): | CODE |
| LOW | sdks/python/tests/test_metadata.py | 44 | def test_accepts_every_value_shape(self): | CODE |
| LOW⚡ | sdks/python/tests/test_metadata.py | 59 | def test_accepts_empty_object(self): | CODE |
| LOW⚡ | sdks/python/tests/test_metadata.py | 63 | def test_explicit_null_reads_back_as_absent(self): | CODE |
| 3887 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 295 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 297 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 453 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 455 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 464 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 472 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 824 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 830 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 96 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 98 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 126 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 128 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 168 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 170 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 678 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 680 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 719 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 722 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 756 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 768 | # --------------------------------------------------------------------------- | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 44 | // ── Reusable helpers ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 122 | // ── Agents ─────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 428 | // ── Tests ──────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 431 | // ─── Basic chaining ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 471 | // ─── Full text events (no chunk transformation) ──────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 490 | // ─── Tool call chunk transformation ──────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 523 | // ─── Full tool call events (no chunk transformation) ─────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 553 | // ─── State propagation ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 597 | // ─── MESSAGES_SNAPSHOT ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 618 | // ─── Multiple sequential messages ────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 638 | // ─── Mixed text + tool call events ───────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 671 | // ─── Mixed middleware types ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 728 | // ─── Initial messages / pre-existing state ───────────────────────────────── | COMMENT |
| MEDIUM | …eware/__tests__/middleware-chained-integration.test.ts | 773 | // ─── Event-with-state tracking across all event types ────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 22 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 24 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 107 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 109 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 262 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 264 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 400 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 402 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 464 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 466 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 555 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 557 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 678 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 680 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 801 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 803 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 934 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 936 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 964 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 966 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 988 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 990 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 1137 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 1139 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 2580 | // ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …dotnet/tests/AGUI.Client.UnitTests/ProtocolRuleTest.cs | 2582 | // ──────────────────────────────────────────────── | COMMENT |
| 754 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/typescript/packages/a2ui-toolkit/src/index.ts | 641 | "'create' to render a new surface; 'update' to modify a surface previously rendered in this conversation. Defaults t | COMMENT |
| LOW | sdks/typescript/packages/core/src/events.ts | 421 | export const SubagentFinishedSuspendedOutcomeSchema = z | COMMENT |
| LOW | sdks/typescript/packages/client/src/apply/default.ts | 381 | input, | COMMENT |
| LOW | sdks/typescript/packages/client/src/apply/default.ts | 761 | // preserving client-only messages the backend leaves out of the | COMMENT |
| LOW | sdks/typescript/packages/client/src/verify/verify.ts | 21 | // Reasoning messages are opened by REASONING_START / REASONING_MESSAGE_START and | COMMENT |
| LOW | sdks/typescript/packages/client/src/verify/verify.ts | 41 | message: new Map<string, Owner>(), | COMMENT |
| LOW | sdks/typescript/packages/client/src/verify/verify.ts | 121 | // `authoritative` distinguishes the two sources. A snapshot restates the | COMMENT |
| LOW | sdks/typescript/packages/client/src/verify/verify.ts | 621 | ); | COMMENT |
| LOW | sdks/typescript/packages/client/src/verify/verify.ts | 641 | // Activity messages are opened by ACTIVITY_SNAPSHOT and continued by | COMMENT |
| LOW | sdks/typescript/packages/client/src/verify/verify.ts | 721 | // `owners.reasoning` is retained for the rest of the run, so a later | COMMENT |
| LOW | sdks/typescript/packages/client/src/agent/subscriber.ts | 241 | } | COMMENT |
| LOW | …ages/client/src/agent/__tests__/legacy-bridged.test.ts | 381 | COMMENT | |
| LOW | …ient/src/agent/__tests__/subscriber.clone-cost.test.ts | 141 | state: st, | COMMENT |
| LOW | sdks/typescript/packages/client/src/chunks/transform.ts | 241 | return [...closeAllLanes(), event]; | COMMENT |
| LOW | sdks/dotnet/build.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | sdks/dotnet/test.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | sdks/dotnet/eng/install-dotnet.sh | 1 | #!/usr/bin/env bash | COMMENT |
| LOW | …sts/CrossLanguage.Vitest/tests/protobuf-parity.test.ts | 1 | import { describe, it, expect } from "vitest"; | COMMENT |
| LOW | …s/dotnet/tests/AGUI.A2UI.UnitTests/A2UIEnvelopeTest.cs | 1 | using System.Text.Json.Nodes; | COMMENT |
| LOW | …et/tests/AGUI.A2UI.UnitTests/A2UIPromptBuildingTest.cs | 1 | using System.Text.Json.Nodes; | COMMENT |
| LOW | …/tests/AGUI.A2UI.UnitTests/A2UIFindPriorSurfaceTest.cs | 1 | using System.Text.Json.Nodes; | COMMENT |
| LOW | …/tests/AGUI.Abstractions.UnitTests/NullOmissionTest.cs | 21 | /// <c>[JsonIgnore(WhenWritingNull)]</c> attribute repeated on every nullable property. An | COMMENT |
| LOW | …/tests/AGUI.Abstractions.UnitTests/NullOmissionTest.cs | 161 | public void NoPerPropertyNullIgnoreAttributesOutsideTheAllowlist() | COMMENT |
| LOW | …Samples/GettingStarted/Step12_ParallelToolCallsTest.cs | 21 | /// calls (get_weather + get_current_time) in one assistant turn. FunctionInvokingChatClient | COMMENT |
| LOW | …ts/Samples/GettingStarted/Step01_GettingStartedTest.cs | 141 | // | COMMENT |
| LOW | …I.Protobuf.UnitTests/BinaryMetadataNullOmissionTest.cs | 1 | using System.Collections.Generic; | COMMENT |
| LOW | sdks/dotnet/samples/AGUI.Samples.Shared/AGUIResults.cs | 21 | /// Creates a streaming <see cref="IResult"/> that negotiates the AG-UI event stream | COMMENT |
| LOW | …IClientServer/AGUIDojoServer/ChatClientAgentFactory.cs | 21 | { | COMMENT |
| LOW | …ts/Step06_RawEvents.Server/UsageRawEventsChatClient.cs | 1 | using System.Runtime.CompilerServices; | COMMENT |
| LOW | …ts/Step06_RawEvents.Server/UsageRawEventsChatClient.cs | 21 | /// </para> | COMMENT |
| LOW | sdks/dotnet/src/AGUI.A2UI/A2UIChatClient.cs | 1 | using System.Runtime.CompilerServices; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.A2UI/A2UIChatClient.cs | 21 | /// LangGraph / Strands / Mastra adapters. The generation loop runs at the chat-client | COMMENT |
| LOW | sdks/dotnet/src/AGUI.A2UI/A2UIChatClient.cs | 41 | // The cap on planner rounds (model turn -> generation -> result fed back) per run, | COMMENT |
| LOW | …otnet/src/AGUI.A2UI/A2UIChatClientBuilderExtensions.cs | 1 | using Microsoft.Extensions.AI; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.A2UI/A2UIChatClientOptions.cs | 1 | using AGUI.Server; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.A2UI/A2UIChatClientOptions.cs | 21 | /// </summary> | COMMENT |
| LOW | sdks/dotnet/src/AGUI.A2UI/A2UIChatClientOptions.cs | 41 | /// </summary> | COMMENT |
| LOW | …otnet/src/AGUI.Formatting/IAGUIEventStreamFormatter.cs | 21 | /// Gets the media type advertised in the request <c>Accept</c> header (client side) and written | COMMENT |
| LOW | …otnet/src/AGUI.Formatting/IAGUIEventStreamFormatter.cs | 41 | /// <returns>An asynchronous sequence of decoded events.</returns> | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Protobuf/ProtoValueConverter.cs | 81 | /// <summary> | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Protobuf/AGUIProtobuf.cs | 21 | /// <summary> | COMMENT |
| LOW | …dotnet/src/AGUI.Server/AGUIToolCallArgumentFragment.cs | 1 | namespace AGUI.Server; | COMMENT |
| LOW | …et/src/AGUI.Server/ChatResponseUpdateAGUIExtensions.cs | 21 | "properties": { | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/RunAgentInputExtensions.cs | 21 | /// containing a <see cref="ChatMessage"/> list, a <see cref="ChatOptions"/> with the | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/AGUIStreamOptions.cs | 21 | private Func<ChatResponseUpdate, IEnumerable<AGUIToolCallArgumentFragment>?>? _toolCallArgumentExtractor; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/AGUIStreamOptions.cs | 41 | return this; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/AGUIStreamOptions.cs | 61 | _interruptMappers ??= []; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/AGUIStreamOptions.cs | 101 | return this; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/AGUIStreamOptions.cs | 141 | /// <summary> | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/ChatRequestContext.cs | 1 | using System.Collections.Generic; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/ChatRequestContext.cs | 41 | IsContinuation = isContinuation; | COMMENT |
| LOW | …ks/dotnet/src/AGUI.Server/AGUIServerInstrumentation.cs | 1 | using System.Diagnostics; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Server/AGUIConstants.cs | 1 | namespace AGUI.Server; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Abstractions/AGUIMetadata.cs | 1 | namespace AGUI.Abstractions; | COMMENT |
| LOW | …tnet/src/AGUI.Abstractions/InterruptResponseContent.cs | 1 | using System.Text.Json; | COMMENT |
| LOW | …otnet/src/AGUI.Abstractions/InterruptRequestContent.cs | 1 | using System.Text.Json; | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Abstractions/AGUIJsonUtilities.cs | 21 | /// when composing your own <see cref="JsonSerializerOptions"/>. The context's | COMMENT |
| LOW | sdks/dotnet/src/AGUI.Abstractions/Tools/AGUITool.cs | 21 | [JsonPropertyName("description")] | COMMENT |
| LOW | …tnet/src/AGUI.Abstractions/Messages/AGUIUserContent.cs | 1 | using System; | COMMENT |
| LOW | …tnet/src/AGUI.Abstractions/Messages/AGUIUserContent.cs | 21 | /// uniform regardless of which case is stored. | COMMENT |
| 587 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/python/tests/test_text_roles.py | 5 | CODE | |
| LOW | sdks/python/tests/test_events.py | 8 | CODE | |
| LOW | sdks/python/a2ui_toolkit/tests/test_toolkit.py | 7 | CODE | |
| LOW | sdks/python/a2ui_toolkit/tests/test_recovery.py | 7 | CODE | |
| LOW | sdks/python/a2ui_toolkit/tests/test_validate.py | 7 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/recovery.py | 10 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 11 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 62 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 62 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 62 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 67 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 67 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 67 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 67 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 67 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/validate.py | 10 | CODE | |
| LOW | sdks/python/ag_ui/core/events.py | 10 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| LOW | sdks/python/ag_ui/core/__init__.py | 5 | CODE | |
| 574 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | sdks/python/tests/test_encoder.py | 23 | # Create a test event | COMMENT |
| MEDIUM | sdks/python/tests/test_encoder.py | 44 | # Create a test event with specific data | COMMENT |
| MEDIUM | sdks/python/tests/test_encoder.py | 106 | # Create an event with some fields set to None | COMMENT |
| MEDIUM | sdks/python/tests/test_encoder.py | 150 | # Create a complex event with multiple fields | COMMENT |
| MEDIUM | sdks/python/tests/test_types.py | 107 | # Create a tool call with nested function call in camelCase | COMMENT |
| MEDIUM | sdks/community/ruby/lib/ag-ui-protocol.rb | 3 | # This file is a alias for the ag_ui_protocol | COMMENT |
| MEDIUM | …thon/examples/server/routers/backend_tool_rendering.py | 127 | # Create the router with weather tools | COMMENT |
| MEDIUM | …ython/examples/server/routers/agentic_generative_ui.py | 47 | # Create a copy to track changes for JSON patches | COMMENT |
| MEDIUM | …egrations/langgraph/python/ag_ui_langgraph/endpoint.py | 17 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM⚡ | …ions/langgraph/python/tests/test_message_conversion.py | 133 | # Create a message-like object with an unsupported role | COMMENT |
| MEDIUM | …python/examples/agents/multimodal_messages/__init__.py | 17 | # Create a multimodal user message | STRING |
| MEDIUM | …ph/python/examples/agents/multimodal_messages/agent.py | 72 | # Define a new graph | COMMENT |
| MEDIUM | …/python/examples/agents/agentic_generative_ui/agent.py | 79 | # Define the model | STRING |
| MEDIUM | …/python/examples/agents/agentic_generative_ui/agent.py | 163 | # Define the graph | STRING |
| MEDIUM | …raph/python/examples/agents/human_in_the_loop/agent.py | 84 | # Define the model | STRING |
| MEDIUM | …raph/python/examples/agents/human_in_the_loop/agent.py | 232 | # Define the graph | STRING |
| MEDIUM | …langgraph/python/examples/agents/shared_state/agent.py | 148 | # Create a safer serialization of the recipe | COMMENT |
| MEDIUM | …langgraph/python/examples/agents/shared_state/agent.py | 171 | # Define the model | STRING |
| MEDIUM | …langgraph/python/examples/agents/shared_state/agent.py | 229 | # Create a new recipe | STRING |
| MEDIUM | …langgraph/python/examples/agents/shared_state/agent.py | 267 | # Define the graph | STRING |
| MEDIUM | …thon/examples/agents/predictive_state_updates/agent.py | 63 | # Define the model | STRING |
| MEDIUM | …thon/examples/agents/predictive_state_updates/agent.py | 152 | # Define the graph | STRING |
| MEDIUM | …ns/langgraph/python/examples/agents/subgraphs/agent.py | 248 | # Define the model | STRING |
| MEDIUM | …ython/examples/agents/agentic_chat_multimodal/agent.py | 61 | # Define a new graph | COMMENT |
| MEDIUM | …python/examples/agents/agentic_chat_reasoning/agent.py | 85 | # Define a new graph | COMMENT |
| MEDIUM | …crosoft-agent-framework/python/examples/agents/dojo.py | 72 | # Create a shared chat client for all agents | COMMENT |
| MEDIUM | …thon/examples/example_server/backend_tool_rendering.py | 30 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …eatures/python/examples/example_server/agentic_chat.py | 34 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …es/python/examples/example_server/human_in_the_loop.py | 29 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …ython/examples/example_server/agentic_generative_ui.py | 25 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …ython/examples/example_server/agentic_generative_ui.py | 79 | # Create a copy to track changes for JSON patches | COMMENT |
| MEDIUM | …eatures/python/examples/example_server/shared_state.py | 21 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …eatures/python/examples/example_server/shared_state.py | 55 | # Define the recipe state | COMMENT |
| MEDIUM | …on/examples/example_server/predictive_state_updates.py | 30 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …on/examples/example_server/tool_based_generative_ui.py | 23 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 3434 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …ver-starter/python/examples/example_server/__init__.py | 29 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …ions/aws-strands/python/tests/test_reasoning_events.py | 41 | # Create a mock base agent to extract config from | COMMENT |
| MEDIUM | …rations/aws-strands/python/examples/server/__init__.py | 55 | # Create main app | COMMENT |
| MEDIUM | …aws-strands/python/examples/server/api/shared_state.py | 147 | # Create the AG-UI Strands agent wrapper | COMMENT |
| MEDIUM | …aws-strands/python/examples/server/api/shared_state.py | 155 | # Create the FastAPI app | COMMENT |
| MEDIUM | …grations/agent-spec/python/ag_ui_agentspec/endpoint.py | 28 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …egrations/watsonx/python/src/ag_ui_watsonx/endpoint.py | 24 | # Create an event encoder to properly format SSE events | COMMENT |
| MEDIUM | …eware/python/tests/test_duplicate_function_response.py | 77 | # Create the session | COMMENT |
| MEDIUM | …ations/adk-middleware/python/tests/test_concurrency.py | 16 | # Create a real ADK agent | COMMENT |
| MEDIUM | …are/python/tests/test_lro_tool_response_persistence.py | 119 | # Define a simple client-side tool | COMMENT |
| MEDIUM | …are/python/tests/test_lro_tool_response_persistence.py | 191 | # Define the client-side tool | COMMENT |
| MEDIUM⚡ | …ns/adk-middleware/python/tests/test_execution_state.py | 63 | # Create a real asyncio task for testing | COMMENT |
| MEDIUM | …s/adk-middleware/python/tests/test_session_creation.py | 32 | # Create a test input that should trigger session creation | COMMENT |
| MEDIUM⚡ | …dk-middleware/python/tests/test_tool_error_handling.py | 353 | # Create a mock event queue that fails | COMMENT |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 91 | # Create an execution with a pending tool | COMMENT |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 140 | # Create an execution without the expected tool call | COMMENT |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 327 | # Create a sample tool for the toolset | COMMENT |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 375 | # Create a mock event queue that fails | COMMENT |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 398 | # Create a real asyncio task for proper cancellation testing | COMMENT |
| MEDIUM | …/adk-middleware/python/tests/test_user_id_extractor.py | 14 | # Create a test ADK agent | COMMENT |
| MEDIUM | …/adk-middleware/python/tests/test_user_id_extractor.py | 49 | # Create a test ADK agent | COMMENT |
| MEDIUM | …/adk-middleware/python/tests/test_user_id_extractor.py | 92 | # Create a test ADK agent | COMMENT |
| MEDIUM | …/adk-middleware/python/tests/test_user_id_extractor.py | 121 | # Create a test ADK agent | COMMENT |
| MEDIUM | …ns/adk-middleware/python/tests/test_session_cleanup.py | 15 | # Create a test agent | COMMENT |
| 68 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | sdks/python/ag_ui/core/events.py | 0 | this module contains the agent capability types for the agent user interaction protocol python sdk. | STRING |
| HIGH | sdks/python/ag_ui/core/types.py | 0 | this module contains the agent capability types for the agent user interaction protocol python sdk. | STRING |
| HIGH | sdks/python/ag_ui/core/capabilities.py | 0 | this module contains the agent capability types for the agent user interaction protocol python sdk. | STRING |
| HIGH | …IClientServer/AGUIDojoServer/ChatClientAgentFactory.cs | 0 | when planning use tools only, without any other messages. important: - use the `create_plan` tool to set the initial sta | STRING |
| HIGH | …tnet/examples/AGUIDojoServer/ChatClientAgentFactory.cs | 0 | when planning use tools only, without any other messages. important: - use the `create_plan` tool to set the initial sta | STRING |
| HIGH | …nity/rust/crates/ag-ui-client/scripts/generative_ui.py | 0 | when planning use tools only, without any other messages. important: - use the `create_plan` tool to set the initial sta | STRING |
| HIGH | …re/python/examples/server/api/agentic_generative_ui.py | 0 | when planning use tools only, without any other messages. important: - use the `create_plan` tool to set the initial sta | STRING |
| HIGH | …entServer/AGUIDojoServer/A2UI/A2UICompositionGuides.cs | 0 | you are a helpful assistant that creates rich visual ui on the fly. when the user asks for visual content (hotel/product | STRING |
| HIGH | …ph/python/examples/agents/a2ui_dynamic_schema/agent.py | 0 | you are a helpful assistant that creates rich visual ui on the fly. when the user asks for visual content (hotel/product | STRING |
| HIGH | …ands/python/examples/server/api/a2ui_dynamic_schema.py | 0 | you are a helpful assistant that creates rich visual ui on the fly. when the user asks for visual content (hotel/product | STRING |
| HIGH | …ws-strands/python/examples/server/api/a2ui_recovery.py | 0 | you are a helpful assistant that creates rich visual ui on the fly. when the user asks for visual content (hotel/product | STRING |
| HIGH | …entServer/AGUIDojoServer/A2UI/A2UICompositionGuides.cs | 0 | ## available pre-made components you have 4 components. use row as the root with structural children to repeat a card pe | STRING |
| HIGH | …ph/python/examples/agents/a2ui_dynamic_schema/agent.py | 0 | ## available pre-made components you have 4 components. use row as the root with structural children to repeat a card pe | STRING |
| HIGH | …ware/python/examples/server/api/a2ui_dynamic_schema.py | 0 | ## available pre-made components you have 4 components. use row as the root with structural children to repeat a card pe | STRING |
| HIGH | …unity/rust/crates/ag-ui-client/scripts/shared_state.py | 0 | you are a helpful assistant for creating recipes. important: - create a complete recipe using the existing ingredients - | STRING |
| HIGH | …pydantic-ai/python/examples/server/api/shared_state.py | 0 | you are a helpful assistant for creating recipes. important: - create a complete recipe using the existing ingredients - | STRING |
| HIGH | …rations/ag2/python/examples/server/api/shared_state.py | 0 | you are a helpful assistant for creating recipes. important: - create a complete recipe using the existing ingredients - | STRING |
| HIGH | …nity/rust/crates/ag-ui-client/scripts/generative_ui.py | 0 | a class representing a json patch operation (rfc 6902). | STRING |
| HIGH | …ai/python/examples/server/api/agentic_generative_ui.py | 0 | a class representing a json patch operation (rfc 6902). | STRING |
| HIGH | …re/python/examples/server/api/agentic_generative_ui.py | 0 | a class representing a json patch operation (rfc 6902). | STRING |
| HIGH | …id/python/examples/server/api/agentic_generative_ui.py | 0 | a class representing a json patch operation (rfc 6902). | STRING |
| HIGH | …thon/examples/server/routers/backend_tool_rendering.py | 0 | map weather code to human-readable condition. args: code: wmo weather code. returns: human-readable weather condition st | STRING |
| HIGH | …i/python/examples/server/api/backend_tool_rendering.py | 0 | map weather code to human-readable condition. args: code: wmo weather code. returns: human-readable weather condition st | STRING |
| HIGH | …e/python/examples/server/api/backend_tool_rendering.py | 0 | map weather code to human-readable condition. args: code: wmo weather code. returns: human-readable weather condition st | STRING |
| HIGH | …o/python/examples/server/api/backend_tool_rendering.py | 0 | map weather code to human-readable condition. args: code: wmo weather code. returns: human-readable weather condition st | STRING |
| HIGH | …thon/examples/server/routers/backend_tool_rendering.py | 0 | return deterministic canned weather data for tests. used when ``ag_ui_mock_weather`` is set so e2e runs don't depend on | STRING |
| HIGH | …i/python/examples/server/api/backend_tool_rendering.py | 0 | return deterministic canned weather data for tests. used when ``ag_ui_mock_weather`` is set so e2e runs don't depend on | STRING |
| HIGH | …2/python/examples/server/api/backend_tool_rendering.py | 0 | return deterministic canned weather data for tests. used when ``ag_ui_mock_weather`` is set so e2e runs don't depend on | STRING |
| HIGH | …e/python/examples/server/api/backend_tool_rendering.py | 0 | return deterministic canned weather data for tests. used when ``ag_ui_mock_weather`` is set so e2e runs don't depend on | STRING |
| HIGH | …o/python/examples/server/api/backend_tool_rendering.py | 0 | return deterministic canned weather data for tests. used when ``ag_ui_mock_weather`` is set so e2e runs don't depend on | STRING |
| HIGH | …thon/examples/server/routers/backend_tool_rendering.py | 0 | get current weather for a location. args: location: city name. returns: a json string with weather information including | STRING |
| HIGH | …i/python/examples/server/api/backend_tool_rendering.py | 0 | get current weather for a location. args: location: city name. returns: a json string with weather information including | STRING |
| HIGH | …e/python/examples/server/api/backend_tool_rendering.py | 0 | get current weather for a location. args: location: city name. returns: a json string with weather information including | STRING |
| HIGH | …o/python/examples/server/api/backend_tool_rendering.py | 0 | get current weather for a location. args: location: city name. returns: a json string with weather information including | STRING |
| HIGH | …thon/examples/server/routers/backend_tool_rendering.py | 0 | your primary function is to help users get weather details for specific locations. when responding: - always ask for a l | STRING |
| HIGH | …i/python/examples/server/api/backend_tool_rendering.py | 0 | your primary function is to help users get weather details for specific locations. when responding: - always ask for a l | STRING |
| HIGH | …e/python/examples/server/api/backend_tool_rendering.py | 0 | your primary function is to help users get weather details for specific locations. when responding: - always ask for a l | STRING |
| HIGH | …2/python/examples/server/api/backend_tool_rendering.py | 0 | your primary function is to help users get weather details for specific locations. when responding: - always ask for a l | STRING |
| HIGH | …o/python/examples/server/api/backend_tool_rendering.py | 0 | your primary function is to help users get weather details for specific locations. when responding: - always ask for a l | STRING |
| HIGH | …ython/examples/server/routers/agentic_generative_ui.py | 0 | you are a helpful assistant assisting with any task. when asked to do something, you must call the function `generate_ta | STRING |
| HIGH | …/python/examples/agents/agentic_generative_ui/agent.py | 0 | you are a helpful assistant assisting with any task. when asked to do something, you must call the function `generate_ta | STRING |
| HIGH | …rew-ai/python/examples/agents/agentic_generative_ui.py | 0 | you are a helpful assistant assisting with any task. when asked to do something, you must call the function `generate_ta | STRING |
| HIGH | …python/examples/agents/backend_tool_rendering/agent.py | 0 | a simple agentic chat flow using langgraph instead of crewai. | STRING |
| HIGH | …langgraph/python/examples/agents/agentic_chat/agent.py | 0 | a simple agentic chat flow using langgraph instead of crewai. | STRING |
| HIGH | …python/examples/agents/agentic_chat_reasoning/agent.py | 0 | a simple agentic chat flow using langgraph instead of crewai. | STRING |
| HIGH | …raph/python/examples/agents/a2ui_fixed_schema/agent.py | 0 | search for hotels and display the results as rich cards with star ratings. args: hotels: a list of hotel objects. each h | STRING |
| HIGH | …trands/python/examples/server/api/a2ui_fixed_schema.py | 0 | search for hotels and display the results as rich cards with star ratings. args: hotels: a list of hotel objects. each h | STRING |
| HIGH | …leware/python/examples/server/api/a2ui_fixed_schema.py | 0 | search for hotels and display the results as rich cards with star ratings. args: hotels: a list of hotel objects. each h | STRING |
| HIGH | …raph/python/examples/agents/a2ui_fixed_schema/agent.py | 0 | you are a helpful travel assistant that can search for flights and hotels. when the user asks about flights, use the sea | STRING |
| HIGH | …leware/python/examples/server/api/a2ui_fixed_schema.py | 0 | you are a helpful travel assistant that can search for flights and hotels. when the user asks about flights, use the sea | STRING |
| HIGH | …trands/python/examples/server/api/a2ui_fixed_schema.py | 0 | you are a helpful travel assistant that can search for flights and hotels. when the user asks about flights, use the sea | STRING |
| HIGH | …GUI.ClaudeManagedAgents.Tests/ManagedAgentsTurnTest.cs | 0 | {"type":"session.status_idle","id":"idle_1","stop_reason":{"type":"end_turn"}} | STRING |
| HIGH | …UI.ClaudeManagedAgents.Tests/ManagedAgentsAgentTest.cs | 0 | {"type":"session.status_idle","id":"idle_1","stop_reason":{"type":"end_turn"}} | STRING |
| HIGH | …ClaudeManagedAgents.Tests/ManagedAgentsEndpointTest.cs | 0 | {"type":"session.status_idle","id":"idle_1","stop_reason":{"type":"end_turn"}} | STRING |
| HIGH | …deManagedAgents.Tests/ManagedAgentsDynamicToolsTest.cs | 0 | {"type":"session.status_idle","id":"idle_1","stop_reason":{"type":"end_turn"}} | STRING |
| HIGH | …UI.ClaudeManagedAgents.Tests/ManagedAgentsAgentTest.cs | 0 | {"type":"agent_toolset_20260401","configs":[],"default_config":{}} | STRING |
| HIGH | …I.ClaudeManagedAgents.Tests/FakeManagedAgentsClient.cs | 0 | {"type":"agent_toolset_20260401","configs":[],"default_config":{}} | STRING |
| HIGH | …deManagedAgents.Tests/ManagedAgentsDynamicToolsTest.cs | 0 | {"type":"agent_toolset_20260401","configs":[],"default_config":{}} | STRING |
| HIGH | …are/python/tests/test_lro_tool_response_persistence.py | 0 | ensure llmock is running when no real api key is set. | STRING |
| HIGH | …dk-middleware/python/tests/test_resumability_config.py | 0 | ensure llmock is running when no real api key is set. | STRING |
| 14 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | sdks/community/dart/example/lib/main.dart | 62 | print('Error: $e'); | CODE |
| MEDIUM | sdks/community/dart/example/lib/main.dart | 103 | print('Error: $e'); | CODE |
| LOW⚡ | integrations/langgraph/python/ag_ui_langgraph/utils.py | 2115 | except Exception: | CODE |
| LOW⚡ | integrations/langgraph/python/ag_ui_langgraph/utils.py | 2123 | except Exception: | CODE |
| LOW⚡ | integrations/langgraph/python/ag_ui_langgraph/utils.py | 2130 | except Exception: | CODE |
| LOW⚡ | integrations/langgraph/python/ag_ui_langgraph/utils.py | 2137 | except Exception: | CODE |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 2045 | except Exception: | CODE |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2136 | except Exception as exc: | CODE |
| LOW | …ns/langgraph/python/tests/test_deprecation_warnings.py | 55 | except Exception: | CODE |
| LOW | integrations/langgraph/python/tests/test_multimodal.py | 4054 | except Exception: | CODE |
| LOW | integrations/langgraph/python/tests/test_multimodal.py | 4060 | except Exception: | CODE |
| LOW | integrations/langgraph/python/tests/test_multimodal.py | 4176 | except Exception as exc: # noqa: BLE001 | CODE |
| LOW | …graph/python/tests/test_parallel_subagent_streaming.py | 424 | except Exception: | CODE |
| LOW | …langgraph/python/examples/agents/shared_state/agent.py | 153 | except Exception as e: # pylint: disable=broad-exception-caught | CODE |
| MEDIUM | …ations/claude-managed-agents/python/examples/server.py | 110 | print("Error: set ANTHROPIC_API_KEY (or ANTHROPIC_AUTH_TOKEN)") | CODE |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 241 | except Exception as exc: # noqa: BLE001 - best-effort interrupt, including its own bound | CODE |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 314 | except Exception: # noqa: BLE001 - best-effort; the done callback reports it | CODE |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 330 | except Exception as exc: # noqa: BLE001 - reported as a terminal run error | CODE |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 373 | except Exception as err: # noqa: BLE001 - the tool's failure is reported to the agent | CODE |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 610 | except Exception as exc: # noqa: BLE001 - reported as a terminal run error | CODE |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 699 | except Exception as exc: # noqa: BLE001 - retry only the parked race | CODE |
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/_util.py | 114 | except Exception: # noqa: BLE001 - a broken hook is not the run's problem | CODE |
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/_util.py | 129 | except Exception: # noqa: BLE001 - a broken hook is not the run's problem, nor is its timeout | CODE |
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 235 | except Exception as err: # noqa: BLE001 - surfaced to the client as RUN_ERROR | CODE |
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 262 | except Exception as exc: # noqa: BLE001 - best-effort interrupt | CODE |
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 284 | except Exception as exc: # noqa: BLE001 - best-effort; the run is already ending | CODE |
| LOW | integrations/crew-ai/python/tests/test_reasoning.py | 103 | except Exception: # noqa: BLE001 | CODE |
| LOW | integrations/crew-ai/python/tests/test_reasoning.py | 1071 | except Exception as exc: # pragma: no cover - only on an unsupported litellm | CODE |
| LOW | integrations/crew-ai/python/tests/test_reasoning.py | 1090 | except Exception as exc: | CODE |
| LOW | integrations/crew-ai/python/tests/test_reasoning.py | 3007 | except Exception as exc: # noqa: BLE001 - the failure IS the fixture | CODE |
| LOW | integrations/crew-ai/python/tests/conftest.py | 184 | except Exception: # pragma: no cover - defensive | CODE |
| LOW | integrations/crew-ai/python/tests/conftest.py | 199 | except Exception: # pragma: no cover - defensive | CODE |
| LOW | integrations/crew-ai/python/tests/conftest.py | 468 | except Exception as exc: # noqa: BLE001 - capability probe | CODE |
| MEDIUM | integrations/crew-ai/python/tests/test_streaming.py | 1571 | def chat(self): | CODE |
| LOW⚡ | integrations/crew-ai/python/tests/test_streaming.py | 52 | except Exception: # noqa: BLE001 - handler errors surface elsewhere | CODE |
| LOW⚡ | integrations/crew-ai/python/tests/test_streaming.py | 62 | except Exception: # noqa: BLE001 - flush is best-effort | CODE |
| LOW | integrations/crew-ai/python/tests/test_streaming.py | 1574 | except Exception: # noqa: BLE001 - outer intentionally swallows + continues | CODE |
| LOW | …rations/crew-ai/python/tests/test_task_cancellation.py | 1061 | except Exception: # noqa: BLE001 | CODE |
| LOW | …rations/crew-ai/python/tests/test_task_cancellation.py | 1864 | except Exception: | CODE |
| LOW | …rations/crew-ai/python/examples/agents/shared_state.py | 228 | except Exception: # pylint: disable=broad-exception-caught | STRING |
| MEDIUM | …egrations/crew-ai/python/ag_ui_crewai/_capabilities.py | 64 | def _crewai_version() -> str: | CODE |
| LOW⚡ | …egrations/crew-ai/python/ag_ui_crewai/_capabilities.py | 269 | except Exception: # pragma: no cover - litellm is a declared direct dep | CODE |
| LOW | …egrations/crew-ai/python/ag_ui_crewai/_capabilities.py | 47 | except Exception: # noqa: BLE001 - a raising property is "not present" | CODE |
| LOW | …egrations/crew-ai/python/ag_ui_crewai/_capabilities.py | 60 | except Exception: # noqa: BLE001 - a raising property is "not usable" | CODE |
| LOW | …egrations/crew-ai/python/ag_ui_crewai/_capabilities.py | 69 | except Exception: # pragma: no cover - crewai is a hard dependency | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 1181 | except Exception: # noqa: BLE001 - releasing must never void the turn | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/_checkpoint.py | 234 | except Exception as exc: # noqa: BLE001 - never let config-building break a run | CODE |
| LOW⚡ | integrations/crew-ai/python/ag_ui_crewai/_frames.py | 495 | except Exception as exc: # noqa: BLE001 - best-effort; live fallback | CODE |
| LOW⚡ | integrations/crew-ai/python/ag_ui_crewai/_frames.py | 505 | except Exception as exc: # noqa: BLE001 - best-effort; live fallback | CODE |
| LOW⚡ | integrations/crew-ai/python/ag_ui_crewai/_frames.py | 515 | except Exception as exc: # noqa: BLE001 - best-effort | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/_frames.py | 1590 | except Exception as dump_exc: # noqa: BLE001 - falls back below | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 496 | except Exception: # noqa: BLE001 - defensive | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 569 | except Exception: # noqa: BLE001 - defensive | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 615 | except Exception as grace_exc: # pylint: disable=broad-exception-caught | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 681 | except Exception as recov_exc: # pylint: disable=broad-exception-caught | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 940 | except Exception as exc: # noqa: BLE001 - flush is best-effort | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 1782 | except Exception: # noqa: BLE001 | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 1912 | except Exception as e: # pylint: disable=broad-exception-caught | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 2013 | except Exception as exc: # pylint: disable=broad-exception-caught | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 2059 | except Exception as exc: # pylint: disable=broad-exception-caught | CODE |
| 200 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | README.md | 61 | ## Where does AGUI fit in the agentic protocol stack? | COMMENT |
| MEDIUM⚡ | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 825 | # High-level orchestration | COMMENT |
| MEDIUM | sdks/dotnet/docs/cross-language-testing.md | 286 | // tests/agentic-chat.test.ts | COMMENT |
| MEDIUM | sdks/dotnet/docs/cross-language-testing.md | 298 | await startLLMock(); // Port 5555, loads agentic-chat.json fixtures | CODE |
| MEDIUM | sdks/community/go/example/server/README.md | 74 | http://localhost:8080/agentic | CODE |
| MEDIUM | sdks/community/go/example/server/cmd/main.go | 64 | // boundModel is shared across all concurrent /agentic requests. This is safe | COMMENT |
| MEDIUM | sdks/community/go/example/server/internal/agent/loop.go | 50 | Model model.ToolCallingChatModel // file_read-bound; used by /agentic and the ServerOnly path | CODE |
| MEDIUM | sdks/community/go/example/server/internal/agent/loop.go | 69 | // concatenates the events of multiple /agentic responses for one runID and runs the | COMMENT |
| MEDIUM | …ommunity/go/example/server/internal/agent/loop_test.go | 209 | // tool-bound model can be shared across concurrent /agentic requests: concurrent | COMMENT |
| MEDIUM | …ommunity/go/example/server/internal/agent/runconfig.go | 17 | // ServerOnly is today's /agentic behavior: only server-owned tools (file_read). | COMMENT |
| MEDIUM | …ommunity/go/example/server/internal/agent/runconfig.go | 25 | // The zero value is the /agentic default (ServerOnly, lifecycle state, interrupt | COMMENT |
| MEDIUM | …ommunity/go/example/server/internal/agent/runconfig.go | 43 | // DefaultRunConfig is /agentic's behavior: unchanged from before the refactor. | COMMENT |
| MEDIUM | …ommunity/go/example/server/internal/agent/runconfig.go | 82 | // the gate, serving plain agentic chat; anything else — including empty — keeps it | COMMENT |
| MEDIUM | …community/go/example/server/internal/runstore/store.go | 10 | // A bounded size + TTL caps memory; real multi-tenant use must gate /agentic | COMMENT |
| MEDIUM | sdks/community/go/example/client/internal/agent/chat.go | 17 | return "http://localhost:8080/agentic" | CODE |
| MEDIUM | sdks/community/dart/lib/src/client/client.dart | 99 | /// Run the agentic chat agent. | COMMENT |
| MEDIUM | sdks/community/dart/lib/src/client/client.dart | 119 | /// Run the agentic generative UI agent. | COMMENT |
| MEDIUM | …community/ruby/lib/ag_ui_protocol/core/capabilities.rb | 309 | # Enable these when your agent can orchestrate or hand off work to other agents. | COMMENT |
| MEDIUM | …community/ruby/lib/ag_ui_protocol/core/capabilities.rb | 323 | # @param supported [Boolean, nil] Set `true` if the agent participates in any form of multi-agent coordination. | COMMENT |
| MEDIUM | …community/ruby/lib/ag_ui_protocol/core/capabilities.rb | 358 | # chain-of-thought, extended thinking). | COMMENT |
| MEDIUM | …community/ruby/lib/ag_ui_protocol/core/capabilities.rb | 674 | # @param reasoning [ReasoningCapabilities, nil] Reasoning and thinking support (chain-of-thought, encrypted thin | COMMENT |
| MEDIUM | sdks/community/ruby/lib/ag_ui_protocol/core/types.rb | 959 | # Represents a reasoning message from an agent with chain-of-thought content. | COMMENT |
| MEDIUM | middlewares/mcp-middleware/src/index.ts | 540 | // The error is returned as the tool result so the agentic loop can | COMMENT |
| MEDIUM | middlewares/middleware-starter/package.json | 5 | "//": "private: this is a create-ag-ui-app scaffold template, intentionally excluded from the npm release pipeline (no | CODE |
| MEDIUM | integrations/langgraph/python/ag_ui_langgraph/utils.py | 1700 | # hand the model back its own chain-of-thought), buffer each reasoning message and | COMMENT |
| MEDIUM | …ions/langgraph/python/tests/test_message_conversion.py | 159 | # chain-of-thought on a stateless round-trip. | COMMENT |
| MEDIUM | …ions/langgraph/python/tests/test_message_conversion.py | 536 | # The summary text (the human-readable chain-of-thought) must survive too, | COMMENT |
| MEDIUM | …rations/mastra/typescript/examples/src/mastra/index.ts | 36 | // File-backed (not ":memory:"): suspend/resume persists the agentic-loop | COMMENT |
| MEDIUM | …ll-features/python/examples/example_server/__init__.py | 18 | # Register the agentic chat endpoint | COMMENT |
| MEDIUM | …ll-features/python/examples/example_server/__init__.py | 27 | # Register the agentic generative UI endpoint | COMMENT |
| MEDIUM | …ns/server-starter-all-features/typescript/package.json | 5 | "//": "private: this is a create-ag-ui-app scaffold template, intentionally excluded from the npm release pipeline (no | CODE |
| MEDIUM | integrations/server-starter/typescript/package.json | 5 | "//": "private: this is a create-ag-ui-app scaffold template, intentionally excluded from the npm release pipeline (no | CODE |
| MEDIUM | …ations/aws-strands/python/tests/test_example_server.py | 81 | # probed="/agentic-chat-reasoning" would quietly also probe | COMMENT |
| MEDIUM | …ations/aws-strands/python/tests/test_example_server.py | 82 | # "/agentic-chat". | COMMENT |
| MEDIUM | integrations/aws-strands/python/tests/test_a2ui_tool.py | 1426 | # Exactly one forced render turn — no agentic continuation in the sub-agent. | COMMENT |
| MEDIUM⚡ | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 1728 | # Strands multi-agent event discriminators, as emitted by | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 1740 | # AG-UI CUSTOM event names carrying multi-agent lifecycle detail that has no | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 2379 | # Detect a multi-agent orchestrator structurally. A Graph or Swarm has | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 4545 | # Handle multi-agent node start (maps to STEP_STARTED) | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 4556 | # Handle multi-agent node stop (maps to STEP_FINISHED). | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 4569 | # Handle multi-agent handoff (emit as CUSTOM event) | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 4577 | # Handle multi-agent node cancel (emit as CUSTOM event). | COMMENT |
| MEDIUM | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 4588 | # Handle multi-agent node interrupt (emit as CUSTOM event) | COMMENT |
| MEDIUM | …ws-strands/typescript/examples/server/model-factory.ts | 55 | // `/agentic-chat-reasoning` demo. | COMMENT |
| MEDIUM | …tions/aws-strands/typescript/examples/server/server.ts | 103 | // non-strictly by default, so `/agentic-chat` answers `/agentic-chat/` too. | COMMENT |
| MEDIUM | integrations/aws-strands/typescript/src/agent.ts | 591 | // guardrails, and per-model tuning. | COMMENT |
| MEDIUM | …/aws-strands/typescript/src/__tests__/a2ui-e2e.test.ts | 180 | // Exactly one forced render turn — no agentic continuation in the sub-agent. | COMMENT |
| MEDIUM | …ypescript/src/__tests__/agent-config-forwarded.test.ts | 344 | // `additionalRequestFields.thinking`, `temperature`, and guardrails. That | COMMENT |
| MEDIUM | …ypescript/src/__tests__/agent-config-forwarded.test.ts | 345 | // broke /agentic-chat-reasoning end-to-end (zero REASONING_* events). | COMMENT |
| MEDIUM | integrations/adk-middleware/python/CHANGELOG.md | 271 | - **Regression test for #1732 (#1753 / [PR #1756](https://github.com/ag-ui-protocol/ag-ui/pull/1756))**: the existing | CODE |
| MEDIUM | …ions/adk-middleware/python/examples/server/__init__.py | 101 | print(f" • Agentic Generative UI: http://localhost:{port}/adk-agentic-generative-ui") | CODE |
| MEDIUM | integrations/community/genkit/go/README.md | 86 | Endpoint: "http://localhost:8000/agentic", | CODE |
| MEDIUM | …nkit/go/examples/internal/agents/agentic_chat/agent.go | 24 | // NewAgenticChatAgent creates a new agentic chat agent | COMMENT |
| MEDIUM | .github/workflows/canary.yml | 154 | # this same orchestration — owns a UNIQUE canary ref. This prevents two | COMMENT |
| MEDIUM | apps/dojo/scripts/generate-content-json.ts | 430 | // to hyphenated filenames (agentic-chat.ts). | COMMENT |
| MEDIUM | apps/dojo/e2e/aimock-setup.ts | 242 | // with agentic-gen-ui fixtures, and first-match-wins. By loading HITL first, | COMMENT |
| MEDIUM | apps/dojo/e2e/aimock-setup.ts | 374 | // Strands agentic gen UI: the Strands agent registers plan_task_steps, | COMMENT |
| MEDIUM | apps/dojo/e2e/aimock-setup.ts | 442 | // CrewAI agentic gen UI: the CrewAI flow registers `generate_task_steps` | COMMENT |
| MEDIUM | apps/dojo/e2e/aimock-setup.ts | 515 | // CrewAI agentic gen UI: after simulate_task completes, the flow re-enters | COMMENT |
| MEDIUM | apps/dojo/e2e/aimock-setup.ts | 877 | // Pydantic AI agentic gen UI: the agent registers create_plan, | COMMENT |
| 7 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | CONTRIBUTING.md | 78 | ### Step 1: Add Your Integration Folder | COMMENT |
| LOW⚡ | CONTRIBUTING.md | 102 | ### Step 2: Register Your Integration in the Dojo | COMMENT |
| LOW⚡ | CONTRIBUTING.md | 110 | ### Step 3: Configure the Agent Mapping | COMMENT |
| LOW⚡ | CONTRIBUTING.md | 114 | ### Step 4: Set Up Environment Variables | COMMENT |
| LOW⚡ | CONTRIBUTING.md | 123 | ### Step 5: Add Dojo Scripts | COMMENT |
| LOW | CONTRIBUTING.md | 143 | ### Step 6: Add End-to-End Tests | COMMENT |
| LOW | CONTRIBUTING.md | 160 | ### Step 7: Add CI Configuration | COMMENT |
| LOW | sdks/typescript/packages/client/src/apply/default.ts | 801 | // Step 3: Append messages from the snapshot that we don't have yet. | COMMENT |
| LOW⚡ | sdks/community/c++/src/core/subscriber.cpp | 62 | // Step 1: Invoke generic onEvent callback first | COMMENT |
| LOW⚡ | sdks/community/c++/src/core/subscriber.cpp | 66 | // Step 2: Check stopPropagation flag | COMMENT |
| LOW⚡ | sdks/community/c++/src/core/subscriber.cpp | 71 | // Step 3: Execute default event handling | COMMENT |
| LOW | sdks/community/c++/src/core/subscriber.cpp | 147 | // Step 4: Invoke type-specific subscriber callbacks | COMMENT |
| LOW | sdks/community/dart/example/README.md | 76 | ### Step 1: Start the Python Server | COMMENT |
| LOW | sdks/community/dart/example/README.md | 99 | ### Step 2: Run the Dart Example | COMMENT |
| LOW | sdks/community/kotlin/publish.sh | 106 | # Step 1: Clean previous builds and staging directory | COMMENT |
| LOW⚡ | sdks/community/kotlin/publish.sh | 119 | # Step 2: Run tests | COMMENT |
| LOW⚡ | sdks/community/kotlin/publish.sh | 129 | # Step 3: Build and publish to staging | COMMENT |
| LOW⚡ | sdks/community/kotlin/publish.sh | 139 | # Step 4: Deploy to Maven Central (or dry-run) | COMMENT |
| LOW | integrations/adk-middleware/python/TOOLS.md | 139 | # Step 1: Initial run - starts execution with tools | COMMENT |
| LOW | integrations/adk-middleware/python/TOOLS.md | 153 | # Step 2: Handle tool results | COMMENT |
| LOW | integrations/adk-middleware/python/TOOLS.md | 172 | # Step 3: Submit tool results and resume execution | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 204 | # Step 1: Send initial message to trigger tool call | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 231 | # Step 2: Submit tool result | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 268 | # Step 3: Verify session has exactly ONE function_response | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 321 | # Step 1: Trigger tool call | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 340 | # Step 2: Submit tool result with specific run_id | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 448 | # Step 1: Trigger tool call | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 467 | # Step 2: Submit tool result WITH trailing user message | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 601 | # Step 1: Initial request - should trigger tool call and pause | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 627 | # Step 2: Submit tool result (resuming HITL) | COMMENT |
| LOW | …dk-middleware/python/tests/test_resumability_config.py | 390 | # Step 1: Initial request - should trigger tool call | COMMENT |
| LOW | …dk-middleware/python/tests/test_resumability_config.py | 413 | # Step 2: Submit tool result (simulating user approval) | COMMENT |
| LOW⚡ | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 415 | # Step 2: Simulate middleware restart by clearing all in-memory state | COMMENT |
| LOW⚡ | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 421 | # Step 3: Call _ensure_session_exists again (simulating first request after restart) | COMMENT |
| LOW⚡ | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 430 | # Step 4: Verify pending_tool_calls were cleared | COMMENT |
| LOW | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 390 | # Step 1: Create a session and add pending_tool_calls (simulating state before restart) | COMMENT |
| LOW | …eware/python/tests/test_hitl_resumption_text_output.py | 202 | # Step 1: Send initial request to trigger tool call | COMMENT |
| LOW | …eware/python/tests/test_hitl_resumption_text_output.py | 240 | # Step 2: Submit tool result (simulating user approval) | COMMENT |
| LOW⚡ | …ions/adk-middleware/python/tests/test_lro_filtering.py | 297 | # Step 1: Emit LRO via translate_lro_function_calls | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 237 | # Step 1: Emit LRO tool call via translate_lro_function_calls (simulates LRO path) | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 259 | # Step 2: Confirmed event arrives (non-partial) WITHOUT long_running_tool_ids | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 314 | # Step 2: Confirmed event with BOTH the LRO call and a new non-LRO call | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 837 | # Step 1: LRO event — translator emits START/ARGS/END | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 861 | # Step 2: Confirmed event (different ID) — suppressed by client_tool_names | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 1036 | # Step 1: LRO event — translator emits START/ARGS/END | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 1060 | # Step 2: Confirmed event with different ID — must be suppressed so the | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 25 | # Step 1: Create an ADK agent | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 32 | # Step 2: Register the agent | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 36 | # Step 3: Create the middleware agent | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 42 | # Step 4: Create a sample input | COMMENT |
| LOW | …s/adk-middleware/python/examples/other/simple_agent.py | 61 | # Step 5: Run the agent and print events | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 49 | # Step 1: Configure Google ADK authentication | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 59 | # Step 2: Create shared memory service | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 64 | # Step 3: Create your ADK agent(s) | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 101 | # Step 4: Configure ADK middleware | COMMENT |
| LOW | …adk-middleware/python/examples/other/complete_setup.py | 146 | # Step 5: Create FastAPI app | COMMENT |
| LOW | …adk-middleware/python/examples/other/complete_setup.py | 163 | # Step 6: Add endpoints | COMMENT |
| LOW | …adk-middleware/python/examples/other/complete_setup.py | 221 | # Step 7: Run the server | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 34 | # Step 1: Create S3 Bucket | COMMENT |
| LOW | apps/dojo/e2e/setup-aws.sh | 49 | # Step 2: Configure bucket for public read access | COMMENT |
| 8 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/python/tests/test_events.py | 437 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 323 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/validate.py | 64 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/validate.py | 151 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/validate.py | 203 | CODE | |
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/validate.py | 218 | CODE | |
| LOW | sdks/python/ag_ui/core/types.py | 49 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 419 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 694 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 1449 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 1695 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 1795 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 1973 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 2006 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 832 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 1018 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 1237 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 1377 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 1589 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2164 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2522 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2592 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2868 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 3066 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 3937 | CODE | |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 4269 | CODE | |
| LOW | …s/langgraph/python/tests/test_nested_tool_end_dedup.py | 210 | CODE | |
| LOW | …raph/python/examples/agents/human_in_the_loop/agent.py | 73 | CODE | |
| LOW | …langgraph/python/examples/agents/shared_state/agent.py | 144 | CODE | |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 155 | CODE | |
| LOW | …aged-agents/python/ag_ui_claude_managed_agents/turn.py | 378 | CODE | |
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 191 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_interrupts.py | 52 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_interrupts.py | 606 | CODE | |
| LOW | …/crew-ai/python/tests/test_examples_provider_bounds.py | 114 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_llm_timeout.py | 221 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_a2ui.py | 1450 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 226 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 302 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 347 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 566 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 628 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 756 | CODE | |
| LOW | integrations/crew-ai/python/tests/test_crew_chat.py | 813 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 508 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 778 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 1158 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 1209 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 350 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/_responses.py | 132 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/_responses.py | 397 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/a2ui_tool.py | 251 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/a2ui_tool.py | 486 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 443 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 1439 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 2183 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 3015 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 2360 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/utils.py | 76 | CODE | |
| LOW | integrations/crew-ai/python/ag_ui_crewai/utils.py | 155 | CODE | |
| 94 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/typescript/packages/client/src/apply/default.ts | 801 | // Step 3: Append messages from the snapshot that we don't have yet. | COMMENT |
| LOW⚡ | sdks/community/c++/src/core/subscriber.cpp | 62 | // Step 1: Invoke generic onEvent callback first | COMMENT |
| LOW⚡ | sdks/community/c++/src/core/subscriber.cpp | 66 | // Step 2: Check stopPropagation flag | COMMENT |
| LOW⚡ | sdks/community/c++/src/core/subscriber.cpp | 71 | // Step 3: Execute default event handling | COMMENT |
| LOW | sdks/community/c++/src/core/subscriber.cpp | 147 | // Step 4: Invoke type-specific subscriber callbacks | COMMENT |
| LOW | sdks/community/kotlin/publish.sh | 106 | # Step 1: Clean previous builds and staging directory | COMMENT |
| LOW⚡ | sdks/community/kotlin/publish.sh | 119 | # Step 2: Run tests | COMMENT |
| LOW⚡ | sdks/community/kotlin/publish.sh | 129 | # Step 3: Build and publish to staging | COMMENT |
| LOW⚡ | sdks/community/kotlin/publish.sh | 139 | # Step 4: Deploy to Maven Central (or dry-run) | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 204 | # Step 1: Send initial message to trigger tool call | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 231 | # Step 2: Submit tool result | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 268 | # Step 3: Verify session has exactly ONE function_response | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 321 | # Step 1: Trigger tool call | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 340 | # Step 2: Submit tool result with specific run_id | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 448 | # Step 1: Trigger tool call | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 467 | # Step 2: Submit tool result WITH trailing user message | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 601 | # Step 1: Initial request - should trigger tool call and pause | COMMENT |
| LOW | …are/python/tests/test_lro_tool_response_persistence.py | 627 | # Step 2: Submit tool result (resuming HITL) | COMMENT |
| LOW | …dk-middleware/python/tests/test_resumability_config.py | 390 | # Step 1: Initial request - should trigger tool call | COMMENT |
| LOW | …dk-middleware/python/tests/test_resumability_config.py | 413 | # Step 2: Submit tool result (simulating user approval) | COMMENT |
| LOW⚡ | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 415 | # Step 2: Simulate middleware restart by clearing all in-memory state | COMMENT |
| LOW⚡ | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 421 | # Step 3: Call _ensure_session_exists again (simulating first request after restart) | COMMENT |
| LOW⚡ | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 430 | # Step 4: Verify pending_tool_calls were cleared | COMMENT |
| LOW | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 390 | # Step 1: Create a session and add pending_tool_calls (simulating state before restart) | COMMENT |
| LOW | …eware/python/tests/test_hitl_resumption_text_output.py | 202 | # Step 1: Send initial request to trigger tool call | COMMENT |
| LOW | …eware/python/tests/test_hitl_resumption_text_output.py | 240 | # Step 2: Submit tool result (simulating user approval) | COMMENT |
| LOW⚡ | …ions/adk-middleware/python/tests/test_lro_filtering.py | 297 | # Step 1: Emit LRO via translate_lro_function_calls | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 237 | # Step 1: Emit LRO tool call via translate_lro_function_calls (simulates LRO path) | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 259 | # Step 2: Confirmed event arrives (non-partial) WITHOUT long_running_tool_ids | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 314 | # Step 2: Confirmed event with BOTH the LRO call and a new non-LRO call | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 837 | # Step 1: LRO event — translator emits START/ARGS/END | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 861 | # Step 2: Confirmed event (different ID) — suppressed by client_tool_names | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 1036 | # Step 1: LRO event — translator emits START/ARGS/END | COMMENT |
| LOW | …ions/adk-middleware/python/tests/test_lro_filtering.py | 1060 | # Step 2: Confirmed event with different ID — must be suppressed so the | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 25 | # Step 1: Create an ADK agent | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 32 | # Step 2: Register the agent | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 36 | # Step 3: Create the middleware agent | COMMENT |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 42 | # Step 4: Create a sample input | COMMENT |
| LOW | …s/adk-middleware/python/examples/other/simple_agent.py | 61 | # Step 5: Run the agent and print events | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 49 | # Step 1: Configure Google ADK authentication | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 59 | # Step 2: Create shared memory service | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 64 | # Step 3: Create your ADK agent(s) | COMMENT |
| LOW⚡ | …adk-middleware/python/examples/other/complete_setup.py | 101 | # Step 4: Configure ADK middleware | COMMENT |
| LOW | …adk-middleware/python/examples/other/complete_setup.py | 146 | # Step 5: Create FastAPI app | COMMENT |
| LOW | …adk-middleware/python/examples/other/complete_setup.py | 163 | # Step 6: Add endpoints | COMMENT |
| LOW | …adk-middleware/python/examples/other/complete_setup.py | 221 | # Step 7: Run the server | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 34 | # Step 1: Create S3 Bucket | COMMENT |
| LOW | apps/dojo/e2e/setup-aws.sh | 49 | # Step 2: Configure bucket for public read access | COMMENT |
| LOW | apps/dojo/e2e/setup-aws.sh | 72 | # Step 3: Set up lifecycle policy for automatic cleanup (30 days) | COMMENT |
| LOW | apps/dojo/e2e/setup-aws.sh | 91 | # Step 4: Create IAM policy for S3 upload permissions | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 121 | # Step 5: Create IAM user | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 127 | # Step 6: Attach policy to user | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 133 | # Step 7: Create access keys | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 141 | # Step 8: Test the setup | COMMENT |
| LOW⚡ | apps/dojo/e2e/interrupt-crewai-fixtures.ts | 42 | // Step 1: extract the meeting -> bare JSON the picker reads (topic/attendee). | COMMENT |
| LOW | apps/dojo/e2e/interrupt-crewai-fixtures.ts | 58 | // Step 2: after resume, confirm the booking as the agent's follow-up text. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | …ns/langgraph/python/tests/test_deprecation_warnings.py | 31 | CODE | |
| MEDIUM | …ions/langgraph/python/tests/test_subgraph_streaming.py | 274 | CODE | |
| MEDIUM | …graph/python/tests/test_parallel_subagent_streaming.py | 405 | CODE | |
| MEDIUM | …tions/aws-strands/python/tests/test_endpoint_errors.py | 68 | CODE | |
| MEDIUM | …strands/python/tests/test_force_stop_empty_response.py | 42 | CODE | |
| MEDIUM | …strands/python/tests/test_force_stop_empty_response.py | 53 | CODE | |
| MEDIUM | …tions/aws-strands/python/tests/test_session_manager.py | 66 | CODE | |
| MEDIUM | …tions/aws-strands/python/tests/test_session_manager.py | 103 | CODE | |
| MEDIUM | …tions/aws-strands/python/tests/test_session_manager.py | 315 | CODE | |
| MEDIUM | …tions/aws-strands/python/tests/test_session_manager.py | 551 | CODE | |
| MEDIUM | …rands/python/tests/test_interrupt_client_tool_guard.py | 50 | CODE | |
| MEDIUM | integrations/aws-strands/python/tests/test_a2ui_tool.py | 1352 | CODE | |
| MEDIUM | …strands/python/tests/test_tool_stream_event_handler.py | 132 | CODE | |
| MEDIUM | …strands/python/tests/test_tool_stream_event_handler.py | 259 | CODE | |
| MEDIUM | integrations/aws-strands/python/tests/test_interrupt.py | 1392 | CODE | |
| MEDIUM | …gent-sdk/python/tests/test_serialize_and_robustness.py | 563 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 554 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 632 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 769 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 833 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 837 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 889 | CODE | |
| MEDIUM | …grations/claude-agent-sdk/python/tests/test_adapter.py | 988 | CODE | |
| MEDIUM | …eware/python/tests/test_duplicate_function_response.py | 219 | CODE | |
| MEDIUM | …eware/python/tests/test_duplicate_function_response.py | 322 | CODE | |
| MEDIUM | …eware/python/tests/test_duplicate_function_response.py | 498 | CODE | |
| MEDIUM | …ons/adk-middleware/python/tests/test_adk_2_0_compat.py | 460 | CODE | |
| MEDIUM | …ons/adk-middleware/python/tests/test_adk_2_0_compat.py | 525 | CODE | |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 124 | CODE | |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 172 | CODE | |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 286 | CODE | |
| MEDIUM | …dk-middleware/python/tests/test_tool_error_handling.py | 458 | CODE | |
| MEDIUM | …iddleware/python/tests/test_endpoint_error_handling.py | 113 | CODE | |
| MEDIUM | …s/adk-middleware/python/tests/test_tool_result_flow.py | 349 | CODE | |
| MEDIUM | …s/adk-middleware/python/tests/test_tool_result_flow.py | 1578 | CODE | |
| MEDIUM | …s/adk-middleware/python/tests/test_tool_result_flow.py | 1699 | CODE | |
| MEDIUM | …s/adk-middleware/python/tests/test_tool_result_flow.py | 1791 | CODE | |
| MEDIUM | …s/adk-middleware/python/tests/test_tool_result_flow.py | 1166 | CODE | |
| MEDIUM | …egrations/adk-middleware/python/tests/test_endpoint.py | 226 | CODE | |
| MEDIUM | …egrations/adk-middleware/python/tests/test_endpoint.py | 256 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/python/a2ui_toolkit/ag_ui_a2ui_toolkit/__init__.py | 18 | __all__ = [ | CODE |
| LOW | sdks/python/ag_ui/core/__init__.py | 113 | __all__ = [ | CODE |
| LOW | sdks/python/ag_ui/encoder/__init__.py | 7 | __all__ = ["EventEncoder", "AGUI_MEDIA_TYPE"] | CODE |
| LOW | …rations/llama-index/python/examples/server/__init__.py | 34 | __all__ = ["main"] | CODE |
| LOW | …grations/langgraph/python/ag_ui_langgraph/a2ui_tool.py | 66 | __all__ = [ | CODE |
| LOW | …egrations/langgraph/python/ag_ui_langgraph/__init__.py | 35 | __all__ = [ | CODE |
| LOW | integrations/langgraph/python/ag_ui_langgraph/utils.py | 35 | logger = logging.getLogger(__name__) | CODE |
| LOW⚡ | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2498 | def set_message_in_progress(self, run_id: str, data: MessageInProgress, lane: Optional[str] = None) -> None: | CODE |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 118 | logger = logging.getLogger(__name__) | CODE |
| LOW | integrations/langgraph/python/ag_ui_langgraph/agent.py | 2486 | def _set_reasoning_process(self, value: Optional[ThinkingProcess], lane: Optional[str] = None) -> None: | CODE |
| LOW | …python/examples/agents/multimodal_messages/__init__.py | 51 | __all__ = ["graph"] | CODE |
| LOW | …-agents/python/ag_ui_claude_managed_agents/__init__.py | 42 | __all__ = [ | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/events.py | 87 | __all__ = [ | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/a2ui_tool.py | 67 | __all__ = [ | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/__init__.py | 41 | __all__ = [ | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/endpoint.py | 156 | __all__ = [ | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/utils.py | 20 | logger = logging.getLogger(__name__) | CODE |
| LOW | …rations/pydantic-ai/python/examples/server/__init__.py | 115 | __all__ = ["main"] | CODE |
| LOW | …ons/pydantic-ai/python/examples/server/api/__init__.py | 16 | __all__ = [ | CODE |
| LOW⚡ | …trands/python/tests/test_raw_and_inner_agent_events.py | 62 | def update_config(self, **model_config: Any) -> None: # pragma: no cover | CODE |
| LOW | …rations/aws-strands/python/examples/server/__init__.py | 106 | __all__ = ["main", "app"] | CODE |
| LOW | …ns/aws-strands/python/examples/server/model_factory.py | 9 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ons/aws-strands/python/examples/server/api/__init__.py | 18 | __all__ = [ | CODE |
| LOW | …python/examples/server/api/predictive_state_updates.py | 36 | logger = logging.getLogger(__name__) | CODE |
| LOW | …-strands/python/src/ag_ui_strands/client_proxy_tool.py | 24 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ions/aws-strands/python/src/ag_ui_strands/a2ui_tool.py | 61 | __all__ = [ | CODE |
| LOW | …tions/aws-strands/python/src/ag_ui_strands/__init__.py | 45 | __all__ = [ | CODE |
| LOW | …tions/aws-strands/python/src/ag_ui_strands/endpoint.py | 152 | async def _settle_and_close(iterator, step) -> None: | CODE |
| LOW | …grations/aws-strands/python/src/ag_ui_strands/utils.py | 37 | logger = logging.getLogger(__name__) | CODE |
| LOW | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 859 | logger = logging.getLogger(__name__) | CODE |
| LOW | …grations/agent-spec/python/ag_ui_agentspec/__init__.py | 9 | __all__ = [ | CODE |
| LOW | …grations/agent-spec/python/examples/server/__init__.py | 21 | __all__ = ["main"] | CODE |
| LOW | …ions/agent-spec/python/examples/server/api/__init__.py | 3 | __all__ = ["router"] | CODE |
| LOW | …ations/agent-spec/python/examples/server/api/routes.py | 18 | logger = logging.getLogger(__name__) | CODE |
| LOW | …egrations/watsonx/python/src/ag_ui_watsonx/__init__.py | 7 | __all__ = [ | CODE |
| LOW | integrations/watsonx/python/src/ag_ui_watsonx/agent.py | 35 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ns/claude-agent-sdk/python/ag_ui_claude_sdk/adapter.py | 65 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ns/claude-agent-sdk/python/ag_ui_claude_sdk/session.py | 13 | logger = logging.getLogger(__name__) | CODE |
| LOW | …s/claude-agent-sdk/python/ag_ui_claude_sdk/handlers.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | …s/claude-agent-sdk/python/ag_ui_claude_sdk/__init__.py | 31 | __all__ = [ | CODE |
| LOW | …ions/claude-agent-sdk/python/ag_ui_claude_sdk/utils.py | 14 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ns/claude-agent-sdk/python/examples/agents/__init__.py | 14 | __all__ = [ | CODE |
| LOW | integrations/ag2/python/examples/server/__init__.py | 71 | __all__ = ["main"] | CODE |
| LOW | …are/python/tests/test_terminal_event_on_skipped_run.py | 171 | async def _settled_thread_with_lost_dedupe(adk: ADKAgent, thread_id: str) -> None: | CODE |
| LOW⚡ | …s/adk-middleware/python/examples/other/simple_agent.py | 19 | logger = logging.getLogger(__name__) | CODE |
| LOW⚡ | …/adk-middleware/python/examples/other/context_usage.py | 34 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ions/adk-middleware/python/examples/server/__init__.py | 114 | __all__ = ["main"] | CODE |
| LOW | …/adk-middleware/python/examples/server/api/__init__.py | 15 | __all__ = [ | CODE |
| LOW | …middleware/python/examples/server/api/a2ui_recovery.py | 23 | logger = logging.getLogger(__name__) | CODE |
| LOW⚡ | …python/examples/server/api/predictive_state_updates.py | 35 | logger = logging.getLogger(__name__) | CODE |
| LOW | …iddleware/python/src/ag_ui_adk/client_proxy_toolset.py | 17 | logger = logging.getLogger(__name__) | CODE |
| LOW | …k-middleware/python/src/ag_ui_adk/client_proxy_tool.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 80 | logger = logging.getLogger(__name__) | CODE |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 2554 | def _update_agent_tools_recursive(agent: Any) -> None: | CODE |
| LOW | …adk-middleware/python/src/ag_ui_adk/session_manager.py | 11 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ations/adk-middleware/python/src/ag_ui_adk/__init__.py | 31 | __all__ = [ | CODE |
| LOW | …adk-middleware/python/src/ag_ui_adk/execution_state.py | 10 | logger = logging.getLogger(__name__) | CODE |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 33 | logger = logging.getLogger(__name__) | CODE |
| LOW | …ations/adk-middleware/python/src/ag_ui_adk/endpoint.py | 39 | logger = logging.getLogger(__name__) | CODE |
| LOW | …/adk-middleware/python/src/ag_ui_adk/utils/__init__.py | 12 | __all__ = [ | CODE |
| 6 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/community/kotlin/publish.sh | 48 | # Check if running in dry-run mode | COMMENT |
| LOW | …raph/python/examples/agents/human_in_the_loop/agent.py | 190 | # Check if we already have a user_response in the state | STRING |
| LOW | …langgraph/python/examples/agents/shared_state/agent.py | 211 | # Check if args is already a dict or needs to be parsed | STRING |
| LOW | …on/examples/example_server/tool_based_generative_ui.py | 36 | # Check if last message was a tool result | COMMENT |
| LOW | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 4959 | # Check if this is another cumulative update for the | COMMENT |
| LOW | …grations/aws-strands/python/src/ag_ui_strands/agent.py | 5609 | # Check if generator is already closed/exhausted | COMMENT |
| LOW | …ns/claude-agent-sdk/python/ag_ui_claude_sdk/adapter.py | 879 | # Check if this is the state management tool | COMMENT |
| LOW | …ns/claude-agent-sdk/python/ag_ui_claude_sdk/adapter.py | 938 | # Check if this is a frontend tool -- halt stream | COMMENT |
| LOW | …ions/claude-agent-sdk/python/ag_ui_claude_sdk/utils.py | 107 | # Check if last message is a tool result (for re-submission handling) | COMMENT |
| LOW | …ations/adk-middleware/python/tests/test_text_events.py | 246 | # Check if we have any text message events at all | COMMENT |
| LOW | …adk-middleware/python/tests/test_tool_tracking_hitl.py | 136 | # Check if tool call was tracked | COMMENT |
| LOW | …iddleware/python/tests/test_endpoint_error_handling.py | 91 | # Check if error handling worked | COMMENT |
| LOW | …iddleware/python/tests/test_endpoint_error_handling.py | 152 | # Check if error handling worked | COMMENT |
| LOW | …iddleware/python/tests/test_endpoint_error_handling.py | 228 | # Check if normal handling worked | COMMENT |
| LOW | …iddleware/python/tests/test_endpoint_error_handling.py | 384 | # Check if error handling worked | COMMENT |
| LOW | …s/adk-middleware/python/tests/test_context_handling.py | 435 | # Check if custom_metadata is supported | COMMENT |
| LOW | …tests/test_issue_437_skip_summarization_integration.py | 672 | # Check if the response contains summarization of the FIRST result | STRING |
| LOW | …k-middleware/python/src/ag_ui_adk/client_proxy_tool.py | 327 | # Check if this tool has predictive state configuration | COMMENT |
| LOW⚡ | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 2159 | # Check if execution is stale | COMMENT |
| LOW⚡ | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 2169 | # Check if task is done | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 1221 | # Check if there are pending tool calls AND tool results in unseen messages | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 1368 | # Check if there's an upcoming tool batch that will be skipped | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 1624 | # Check if there were actual tool messages that were filtered out | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 2233 | # Check if there's an existing execution for this thread+user and wait for it | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 2331 | # Check if session has pending tool calls before cleanup | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 3165 | # Check if we got a non-partial event (persistence complete) | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 3197 | # Check if this is a streaming chunk that needs regular processing | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 3226 | # Check if event has function responses (e.g., backend tool results) | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 3328 | # Set flag to continue draining - checked at loop start | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 49 | # Check if Part class has 'thought' in its model fields (Pydantic) | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 360 | # Check if this is the final response (contains complete message - skip to avoid duplication) | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 547 | # Check if this is a thought part (backwards-compatible) | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 1004 | # Check if this tool call ID already exists | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 1011 | # Check if this tool has predictive state configuration | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 1059 | # Check if we should emit confirm_changes tool call after this tool | COMMENT |
| LOW | …dk-middleware/python/src/ag_ui_adk/event_translator.py | 1070 | # Check if any mapping has emit_confirm_tool=True | COMMENT |
| LOW | …tegrations/langroid/python/src/ag_ui_langroid/agent.py | 199 | # Check if the response itself is a ToolMessage (Langroid might return ToolMessage directly) | COMMENT |
| LOW | scripts/release/detect-ts-version-changes.sh | 118 | # Output results | COMMENT |
| LOW | scripts/release/detect-py-version-changes.sh | 97 | # Output results | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 20 | # Check if AWS CLI is installed and configured | COMMENT |
| LOW⚡ | apps/dojo/e2e/setup-aws.sh | 26 | # Check if AWS credentials are configured | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | …com/agui/example/chatapp/ui/screens/chat/ChatScreen.kt | 135 | private fun com.agui.example.tools.BackgroundStyle.toComposeColor(default: Color): Color { | CODE |
| CRITICAL | …est/kotlin/com/agui/example/chatapp/IosSettingsTest.kt | 44 | val repository = com.agui.example.chatapp.data.repository.AgentRepository.getInstance(settings) | CODE |
| CRITICAL | …h/python/tests/test_prepare_stream_interrupt_resume.py | 123 | agent.graph.aupdate_state.await_args.kwargs.get("as_node"), | CODE |
| CRITICAL | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 257 | self.client.beta.sessions.events.send( | CODE |
| CRITICAL | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 378 | await self.client.beta.sessions.events.send( | CODE |
| CRITICAL | …grations/claude-managed-agents/typescript/src/agent.ts | 248 | await this.client.beta.sessions.events.send(session.sessionId, { events: outbound.events }, { signal }); | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | sdks/community/dart/example/README.md | 352 | - Or pass directly: `dart run -- -k "your-api-key" -m "Test"` | CODE |
| HIGH | sdks/community/kotlin/examples/chatapp-wearos/README.md | 28 | chatapp.wear.defaultAgentApiKey=sk-your-api-key | CODE |
| HIGH | integrations/langgraph/typescript/README.md | 24 | langsmithApiKey: "your-api-key", | CODE |
| HIGH | integrations/langgraph/typescript/README.md | 128 | langsmithApiKey: "your-api-key", | CODE |
| HIGH | integrations/watsonx/python/README.md | 20 | api_key="YOUR_API_KEY", | CODE |
| HIGH | integrations/watsonx/typescript/README.md | 61 | api_key="YOUR_API_KEY", | CODE |
| HIGH | integrations/adk-middleware/python/CONFIGURATION.md | 333 | export GOOGLE_API_KEY="your-api-key" | CODE |
| HIGH⚡ | …adk-middleware/python/examples/other/complete_setup.py | 51 | # export GOOGLE_API_KEY="your-api-key-here" | COMMENT |
| HIGH | …ions/adk-middleware/python/examples/server/__init__.py | 83 | print(" export GOOGLE_API_KEY='your-api-key-here'") | CODE |
| HIGH | integrations/agno/python/examples/README.md | 12 | 2. Set your OpenAI API key: `export OPENAI_API_KEY="your-api-key"` | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | …dotnet/tests/AGUI.Server.UnitTests/RunTelemetryTest.cs | 15 | // Unique per test so assertions are robust against the global ActivityListener observing | COMMENT |
| MEDIUM | middlewares/mcp-middleware/src/index.ts | 405 | // consumer sees one seamless run. | COMMENT |
| MEDIUM | integrations/langgraph/python/ag_ui_langgraph/agent.py | 668 | # False -> "inline") because the design partner's harness already sets | COMMENT |
| MEDIUM | integrations/crew-ai/python/tests/conftest.py | 341 | # Set by the mutation harness on the child runs it judges each guard by. Those | COMMENT |
| MEDIUM | integrations/crew-ai/python/tests/conftest.py | 366 | # Skipped only for the harness's own child runs, whose parent is alive and | COMMENT |
| MEDIUM⚡ | …egrations/crew-ai/python/ag_ui_crewai/_capabilities.py | 145 | # endpoint enqueues thread-safely and the test harness snapshots the right | COMMENT |
| MEDIUM | …rands/python/tests/test_template_hooks_preservation.py | 270 | # Reuse the same robust "consume until populated, then surface | COMMENT |
| LOW⚡ | …ware/python/tests/test_adk_agent_memory_integration.py | 136 | # Yield no events - just return immediately | COMMENT |
| MEDIUM | …k-middleware/python/src/ag_ui_adk/client_proxy_tool.py | 30 | # This is more robust than a denylist — new JSON Schema fields that | COMMENT |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 2998 | # No tool results, just use the user message | COMMENT |
| MEDIUM | scripts/release/verify-release-scope-dropdowns.sh | 65 | # Uses yq when available (the CI path on ubuntu-latest), otherwise a robust awk | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH⚡ | sdks/python/tests/test_metadata.py | 194 | The encoder omits an absent metadata object rather than emitting null, so | STRING |
| HIGH | sdks/python/tests/test_subagent.py | 114 | # Legacy: omitted (or null) outcome stays None. | COMMENT |
| HIGH⚡ | integrations/langgraph/python/tests/test_multimodal.py | 2687 | """`{"image_url": null}` used to hit `None.startswith` and take the | STRING |
| HIGH | integrations/crew-ai/python/tests/test_a2ui.py | 1428 | surface, not ``updateDataModel {"hotels": null}``.""" | STRING |
| HIGH | …ns/crew-ai/python/examples/agents/a2ui_fixed_schema.py | 143 | becomes an empty list: ``updateDataModel {"hotels": null}`` paints nothing at | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …es/client/src/apply/__tests__/default.activity.test.ts | 187 | { id: "activity-1", role: "user" as const, content: "placeholder" }, | CODE |
| LOW | …es/client/src/apply/__tests__/default.activity.test.ts | 207 | { id: "activity-1", role: "user" as const, content: "placeholder" }, | CODE |
| LOW | …es/client/src/apply/__tests__/default.activity.test.ts | 222 | expect(updates[0]?.messages?.[0]?.content).toBe("placeholder"); | CODE |
| LOW | …/packages/client/src/transform/__tests__/proto.test.ts | 306 | { op: "replace", path: "/users/123/name", value: "Jane Doe" }, | CODE |
| LOW | …s/AGUI.Abstractions.UnitTests/AgentCapabilitiesTest.cs | 232 | "provider": "Acme Corp", | CODE |
| LOW | …nitTests/Compatibility/StateEventsCompatibilityTest.cs | 84 | Assert.Equal("Jane Doe", typed.Delta[2].GetProperty("value").GetString()); | CODE |
| LOW | …ons.UnitTests/Compatibility/Fixtures/state-events.json | 66 | "value": "Jane Doe" | CODE |
| LOW | …onTest/kotlin/com/agui/tests/EventSerializationTest.kt | 264 | put("value", "John Doe") | CODE |
| LOW | …onTest/kotlin/com/agui/tests/EventSerializationTest.kt | 294 | assertEquals("John Doe", firstPatch["value"]?.jsonPrimitive?.content) | CODE |
| LOW⚡ | …kotlin/com/agui/tests/MessageProtocolComplianceTest.kt | 47 | name = "John Doe" | CODE |
| LOW⚡ | …kotlin/com/agui/tests/MessageProtocolComplianceTest.kt | 53 | assertEquals("John Doe", jsonObj["name"]?.jsonPrimitive?.content) | CODE |
| LOW⚡ | …kotlin/com/agui/tests/MessageProtocolComplianceTest.kt | 57 | assertEquals("John Doe", decoded.name) | CODE |
| LOW⚡ | …ons/adk-middleware/python/tests/test_adk_2_0_compat.py | 72 | with pytest.raises(NotImplementedError, match="placeholder"): | CODE |
| LOW⚡ | …ons/adk-middleware/python/tests/test_adk_2_0_compat.py | 245 | adk_agent=Agent(name="placeholder", instruction="p"), | CODE |
| LOW | …/adk-middleware/python/examples/other/context_usage.py | 156 | Context(description="company_name", value="Acme Corp"), | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | …ds/python/examples/server/api/agentic_generative_ui.py | 62 | Plan the concrete steps required to accomplish a task and walk each step from "pending" through "in_progress" t | STRING |
| HIGH | …ions/claude-agent-sdk/python/ag_ui_claude_sdk/utils.py | 68 | Strip mcp__servername__ prefix from Claude SDK tool names. Claude SDK prefixes all MCP tools: mcp__weather | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ged-agents/python/ag_ui_claude_managed_agents/agent.py | 97 | CODE | |
| LOW | …rations/crew-ai/python/tests/test_task_cancellation.py | 1042 | CODE | |
| LOW | …grations/aws-strands/python/src/ag_ui_strands/utils.py | 879 | CODE | |
| LOW | …k-middleware/python/src/ag_ui_adk/client_proxy_tool.py | 132 | CODE | |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 165 | CODE | |
| LOW | …tions/adk-middleware/python/src/ag_ui_adk/adk_agent.py | 557 | CODE | |
| LOW | …adk-middleware/python/src/ag_ui_adk/session_manager.py | 46 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | sdks/dotnet/build.sh | 10 | # Usage: | COMMENT |
| LOW | sdks/dotnet/test.sh | 13 | # Usage: | COMMENT |
| LOW | sdks/dotnet/eng/install-dotnet.sh | 13 | # Usage: | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | …/com/agui/chatapp/java/MultiAgentInstrumentedTest.java | 192 | String description = "This is a test agent for demonstration purposes."; | CODE |
| MEDIUM | apps/dojo/e2e/aimock-setup.ts | 237 | "Your meeting is scheduled. Let me know if you need anything else!", | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ython/examples/server/routers/agentic_generative_ui.py | 18 | async def run_task( | CODE |
| LOW | …ns/claude-managed-agents/typescript/examples/server.ts | 68 | async function handleRequest(req: http.IncomingMessage, res: http.ServerResponse): Promise<void> { | CODE |
| LOW | integrations/crew-ai/python/ag_ui_crewai/sdk.py | 1266 | async def my_function(): | STRING |
| LOW | …rations/claude-agent-sdk/typescript/examples/server.ts | 30 | async function handleRequest( | CODE |