Repository Analysis

embabel/embabel-agent

Agent framework for the JVM. Pronounced Em-BAY-bel /ɛmˈbeɪbəl/

5.6 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of embabel/embabel-agent, a Kotlin project with 3,858 GitHub stars. SynthScan v2.0 examined 294,737 lines of code across 1750 source files, recording 400 pattern matches distributed across 12 syntactic categories. The overall adjusted score of 5.6 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).

5.6
Adjusted Score
5.6
Raw Score
100%
Time Factor
2026-08-02
Last Push
3.9K
Stars
Kotlin
Language
294.7K
Lines of Code
1.8K
Files
400
Pattern Hits
2026-08-02
Scan Date
0.07
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.

No multi-scan history yet — run the scanner again to build trend data.

Severity Breakdown

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.

CRITICAL 98HIGH 25MEDIUM 97LOW 180

Directory Score Breakdown

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.

Pattern Findings

The scanner identified 400 distinct pattern matches across 12 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.

Hallucination Indicators98 hits · 980 pts
SeverityFileLineSnippetContext
CRITICAL…/agent/a2a/server/support/AutonomyA2ARequestHandler.kt354 val objectMapper = tools.jackson.databind.json.JsonMapper.builder()CODE
CRITICAL…m/embabel/agent/config/models/openai/LLMStreamingIT.kt225 val prompt = org.springframework.ai.chat.prompt.Prompt("Say hello")STRING
CRITICAL…/config/models/ollama/LLMOllamaStreamingBuilderIT.java293 new org.springframework.ai.chat.prompt.Prompt("Say hello");CODE
CRITICAL…config/models/ollama/LangChain4jStreamingToolLoopIT.kt196 is SystemMessage -> dev.langchain4j.data.message.SystemMessage.from(message.content)CODE
CRITICAL…config/models/ollama/LangChain4jStreamingToolLoopIT.kt197 is UserMessage -> dev.langchain4j.data.message.UserMessage.from(message.content)CODE
CRITICAL…bel/agent/config/models/bedrock/BedrockModelsConfig.kt239 tools.jackson.databind.json.JsonMapper.builder().build(),CODE
CRITICAL…bel/agent/config/models/bedrock/BedrockModelsConfig.kt255 tools.jackson.databind.json.JsonMapper.builder().build(),CODE
CRITICAL…servability/OpenTelemetrySdkAutoConfigurationTest.java203 io.opentelemetry.api.common.Attributes.of(ServiceAttributes.SERVICE_NAME, "custom-service")CODE
CRITICAL…bility/observation/ChatModelObservationFilterTest.java353 .isEqualTo(io.opentelemetry.api.trace.SpanId.getInvalid());CODE
CRITICAL…bility/observation/ChatModelObservationFilterTest.java420 .isEqualTo(io.opentelemetry.api.trace.SpanId.getInvalid());CODE
CRITICAL…bility/observation/ChatModelObservationFilterTest.java528 .isNotEqualTo(io.opentelemetry.api.trace.SpanId.getInvalid());CODE
CRITICAL…bel/agent/rag/lucene/LuceneSearchOperationsTestBase.kt60 com.embabel.agent.rag.model.Chunk(CODE
CRITICAL…src/test/kotlin/com/embabel/agent/skills/SkillsTest.kt652 val ctx = com.embabel.agent.api.tool.ToolCallContext.of(com.embabel.agent.api.tool.ToolCallContext.LOOP_ID_KEY tCODE
CRITICAL…src/test/kotlin/com/embabel/agent/skills/SkillsTest.kt688 com.embabel.agent.api.tool.ToolCallContext.of(com.embabel.agent.api.tool.ToolCallContext.LOOP_ID_KEY to "looCODE
CRITICAL…src/test/kotlin/com/embabel/agent/skills/SkillsTest.kt692 com.embabel.agent.api.tool.ToolCallContext.of(com.embabel.agent.api.tool.ToolCallContext.LOOP_ID_KEY to "looCODE
CRITICAL…/agent/api/annotation/support/PackageVisibleTests.java146@com.embabel.agent.api.annotation.Agent(description = "foo bar")CODE
CRITICAL…ation/support/state/PolymorphicStateInterfaceTest.java119 @com.embabel.agent.api.annotation.Agent(description = "Feature select agent")CODE
CRITICAL…est/kotlin/com/embabel/chat/ConversationFactoryTest.kt49 user = com.embabel.agent.api.identity.SimpleUser(CODE
CRITICAL…in/com/embabel/plan/goap/astar/AStarGoapPlannerTest.kt537 val planner = _root_ide_package_.com.embabel.plan.goap.astar.AStarGoapPlanner(CODE
CRITICAL…m/embabel/agent/core/support/SimpleAgentProcessTest.kt50@com.embabel.agent.api.annotation.Agent(CODE
CRITICAL…m/embabel/agent/core/support/SimpleAgentProcessTest.kt71@com.embabel.agent.api.annotation.Agent(CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt646 val tool = com.embabel.agent.api.tool.Tool.of("test_tool", "A test tool") {CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt647 com.embabel.agent.api.tool.Tool.Result.text("ok")CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt649 val toolGroup = com.embabel.agent.core.ToolGroup.ofTools(CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt674 val tool1 = com.embabel.agent.api.tool.Tool.of("tool_one", "First tool") {CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt675 com.embabel.agent.api.tool.Tool.Result.text("one")CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt677 val tool2 = com.embabel.agent.api.tool.Tool.of("tool_two", "Second tool") {CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt678 com.embabel.agent.api.tool.Tool.Result.text("two")CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt680 val toolGroup = com.embabel.agent.core.ToolGroup.ofTools(CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt707 val tool = com.embabel.agent.api.tool.Tool.of("chained_tool", "Chained tool") {CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt708 com.embabel.agent.api.tool.Tool.Result.text("chained")CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt710 val toolGroup = com.embabel.agent.core.ToolGroup.ofTools(CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt740 val tool = com.embabel.agent.api.tool.Tool.of("immutable_tool", "Immutable tool") {CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt741 com.embabel.agent.api.tool.Tool.Result.text("immutable")CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt743 val toolGroup = com.embabel.agent.core.ToolGroup.ofTools(CODE
CRITICAL…in/com/embabel/agent/test/unit/FakePromptRunnerTest.kt861 @com.embabel.agent.api.annotation.LlmTool(description = "Test tool")CODE
CRITICAL…t/spi/config/spring/ActionRetryPolicyPropertiesTest.kt149@com.embabel.agent.api.annotation.Agent(CODE
CRITICAL…t/spi/config/spring/ActionRetryPolicyPropertiesTest.kt167@com.embabel.agent.api.annotation.Agent(CODE
CRITICAL…gent/spi/support/AgentProcessContextPropagationTest.kt230 override val definition = com.embabel.agent.api.tool.Tool.Definition(CODE
CRITICAL…gent/spi/support/AgentProcessContextPropagationTest.kt233 inputSchema = com.embabel.agent.api.tool.Tool.InputSchema.empty(),CODE
CRITICAL…gent/spi/support/AgentProcessContextPropagationTest.kt235 override fun call(input: String) = com.embabel.agent.api.tool.Tool.Result.text("check")CODE
CRITICAL…gent/spi/support/AgentProcessContextPropagationTest.kt239 val conditionalTool = com.embabel.agent.api.tool.ConditionalReplanningTool(CODE
CRITICAL…gent/spi/support/AgentProcessContextPropagationTest.kt243 com.embabel.agent.api.tool.ReplanDecision(reason = "Captured context")CODE
CRITICAL…ent/spi/support/ChatClientLlmOperationsThinkingTest.kt321 com.embabel.common.core.thinking.ThinkingBlock(STRING
CRITICAL…ent/spi/support/ChatClientLlmOperationsThinkingTest.kt343 val originalOptions = com.embabel.common.ai.model.LlmOptions()STRING
CRITICAL…ent/spi/support/ChatClientLlmOperationsThinkingTest.kt346 val withThinking = originalOptions.withThinking(com.embabel.common.ai.model.Thinking.withExtraction())STRING
CRITICAL…ent/spi/support/ChatClientLlmOperationsThinkingTest.kt365 val extractionThinking = com.embabel.common.ai.model.Thinking.withExtraction()STRING
CRITICAL…ent/spi/support/ChatClientLlmOperationsThinkingTest.kt369 val budgetThinking = com.embabel.common.ai.model.Thinking.withTokenBudget(150)STRING
CRITICAL…ent/spi/support/ChatClientLlmOperationsThinkingTest.kt381 val originalOptions = com.embabel.common.ai.model.LlmOptions()STRING
CRITICAL…embabel/agent/spi/support/ToolLoopLlmOperationsTest.kt1769 pricingModel = com.embabel.common.ai.model.PricingModel.usdPer1MTokens(1.0, 2.0),CODE
CRITICAL…embabel/agent/spi/support/ToolLoopLlmOperationsTest.kt1853 pricingModel = com.embabel.common.ai.model.PricingModel.usdPer1MTokens(1.0, 0.0),CODE
CRITICAL…m/embabel/agent/spi/support/EmbeddingOperationsTest.kt310 val ex = org.junit.jupiter.api.Assertions.assertThrows(IllegalStateException::class.java) {CODE
CRITICAL…m/embabel/agent/spi/support/EmbeddingOperationsTest.kt332 org.junit.jupiter.api.Assertions.assertThrows(IllegalStateException::class.java) {CODE
CRITICAL…ent/spi/support/springai/SafelyGetToolCallbacksTest.kt46 @org.springframework.ai.tool.annotation.Tool(description = "Spring tool")CODE
CRITICAL…treaming/StreamingChatClientOperationsGuardRailTest.kt177 asyncer = com.embabel.agent.spi.support.ExecutorAsyncer(java.util.concurrent.Executors.newCachedThreadPool()CODE
CRITICAL…el/agent/spi/loop/ToolChainingInjectionStrategyTest.kt85 com.embabel.agent.api.tool.agentic.DomainToolSource(ToolProvider::class.java)CODE
CRITICAL…el/agent/spi/loop/ToolChainingInjectionStrategyTest.kt156 llm = com.embabel.common.ai.model.LlmOptions(),CODE
CRITICAL…nt/api/annotation/support/RetryActionAnnotationTest.kt81@com.embabel.agent.api.annotation.Agent(CODE
CRITICAL…/annotation/support/AgentMetadataReaderMetadataTest.kt83 .dummyAgentProcessRunning(com.embabel.agent.api.dsl.agent(name = "p", description = "p") {})CODE
CRITICAL…/annotation/support/AgentMetadataReaderMetadataTest.kt87 com.embabel.agent.api.common.ExecutingOperationContext(CODE
38 more matches not shown…
Decorative Section Separators77 hits · 262 pts
SeverityFileLineSnippetContext
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml1# ============================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml3# ============================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml7 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml9 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml50 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml52 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml87# ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml89# ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml1# ============================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml3# ============================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml29 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml31 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml44 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml46 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml67 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml69 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml89 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml91 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml111 # ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml113 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml6 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml8 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml21 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml23 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml36 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml38 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml84 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml86 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml1# ============================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml3# ============================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml40 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml44 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml90# ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml95# ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml107 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml109 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml133 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml135 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml148 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml150 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml196 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml198 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml227 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml229 # ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml249# ========================================COMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml251# ========================================COMMENT
MEDIUM…nfigure/src/main/resources/models/dashscope-models.yml1# ============================================COMMENT
MEDIUM…nfigure/src/main/resources/models/dashscope-models.yml3# ============================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml1# ============================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml3# ============================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml9 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml11 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml24 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml26 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml39 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml41 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml87 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml89 # ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml124# ========================================COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml126# ========================================COMMENT
17 more matches not shown…
Fake / Example Data133 hits · 137 pts
SeverityFileLineSnippetContext
LOW…/agent/config/models/dashscope/DashScopeAllModelsIT.kt58 "embabel.agent.platform.models.dashscope.api-key=\${DASHSCOPE_API_KEY:dummy-key-for-context-loading}",CODE
LOW…fig/models/googlegenai/GoogleGenAiChatIntegrationIT.kt59 "embabel.agent.platform.models.googlegenai.api-key=\${GOOGLE_API_KEY:\${GEMINI_API_KEY:dummy-key-for-context-loaCODE
LOW…nt/config/models/googlegenai/GoogleGenAiAllModelsIT.kt60 "embabel.agent.platform.models.googlegenai.api-key=\${GOOGLE_API_KEY:\${GEMINI_API_KEY:dummy-key-for-context-loaCODE
LOW…/com/embabel/agent/config/models/zai/ZaiAllModelsIT.kt74 "embabel.agent.platform.models.zai.api-key=\${ZAI_API_KEY:dummy-key-for-context-loading}",CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java119 NamedEntityData address1 = createAddress("a1", "123 Main St", "Springfield");CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java129 assertEquals("123 Main St", addresses.get(0).getStreet());CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java136 NamedEntityData company = createCompany("c1", "Acme Corp", "Technology");CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java144 assertEquals("Acme Corp", employer.getName());CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java151 NamedEntityData address1 = createAddress("a1", "123 Main St", "Springfield");CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java167 NamedEntityData company = createCompany("c1", "Acme Corp", "Technology");CODE
LOW…bel/agent/rag/model/JavaInterfaceRelationshipTest.java175 assertEquals("Acme Corp", name);CODE
LOW…/service/JavaRepositoryRelationshipNavigationTest.java103 NamedEntityData address1 = createAddress("a1", "123 Main St", "Springfield");CODE
LOW…/service/JavaRepositoryRelationshipNavigationTest.java130 assertEquals("123 Main St", addresses.get(0).getStreet());CODE
LOW…/service/JavaRepositoryRelationshipNavigationTest.java137 NamedEntityData company = createCompany("c1", "Acme Corp", "Technology");CODE
LOW…/service/JavaRepositoryRelationshipNavigationTest.java153 assertEquals("Acme Corp", employer.getName());CODE
LOW…/service/JavaRepositoryRelationshipNavigationTest.java187 NamedEntityData address1 = createAddress("a1", "123 Main St", "Springfield");CODE
LOW…bel/agent/rag/ContentElementPropertiesToPersistTest.kt33 "author" to "John Doe",CODE
LOW…bel/agent/rag/ContentElementPropertiesToPersistTest.kt45 assertEquals("John Doe", properties["author"])CODE
LOW…bel/agent/rag/ContentElementPropertiesToPersistTest.kt336 "author" to "John Doe",CODE
LOW…bel/agent/rag/ContentElementPropertiesToPersistTest.kt350 assertEquals("John Doe", properties["author"])CODE
LOW…om/embabel/agent/rag/model/NamedEntityHydrationTest.kt116 name = "Acme Corp",CODE
LOW…om/embabel/agent/rag/model/NamedEntityHydrationTest.kt337 name = "Acme Corp",CODE
LOW…om/embabel/agent/rag/model/NamedEntityHydrationTest.kt350 assertEquals("Acme Corp", org.name)CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt128 val address1 = createAddress("a1", "123 Main St", "Springfield")CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt138 assertEquals("123 Main St", addresses[0].street)CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt166 val company = createCompany("c1", "Acme Corp", "Technology")CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt174 assertEquals("Acme Corp", employer?.name)CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt181 val company = createCompany("c1", "Acme Corp", "Technology")CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt190 assertEquals("Acme Corp", employer?.name)CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt196 val address1 = createAddress("a1", "123 Main St", "Springfield")CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt222 val address1 = createAddress("a1", "123 Main St", "Springfield")CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt248 val company = createCompany("c1", "Acme Corp", "Technology")CODE
LOW…el/agent/rag/model/NamedEntityInvocationHandlerTest.kt256 assertEquals("Acme Corp", name)CODE
LOW…/embabel/agent/rag/lucene/LuceneChunkRepositoryTest.kt102 "author" to "John Doe",CODE
LOW…/embabel/agent/rag/lucene/LuceneChunkRepositoryTest.kt117 assertEquals("John Doe", chunk.metadata["author"])CODE
LOW…embabel/agent/rag/lucene/LuceneSearchOperationsTest.kt112 val metadata = mapOf("author" to "John Doe", "category" to "AI")CODE
LOW…embabel/agent/rag/lucene/LuceneSearchOperationsTest.kt126 assertEquals("John Doe", result.match.metadata["author"])CODE
LOW…/kotlin/com/embabel/agent/domain/library/PersonTest.kt29 val person = PersonImpl("John Doe")CODE
LOW…/kotlin/com/embabel/agent/domain/library/PersonTest.kt32 assertEquals("John Doe", person.name)CODE
LOW…rters/streaming/StreamingJacksonOutputConverterTest.kt286 {"name": "Alice", "age": 30, "email": "alice@test.com", "address": "123 Main St"}CODE
LOW…rters/streaming/StreamingJacksonOutputConverterTest.kt394 {"name": "Alice", "age": 30, "email": "alice@test.com", "address": "123 Main St"}CODE
LOW…/agent/api/annotation/support/PackageVisibleTests.java86 pc.getBlackboard().plusAssign(new PackageInput("John Doe"));CODE
LOW…/agent/api/annotation/support/PackageVisibleTests.java89 assertEquals(new PackageOutput("John Doe"), pc.getBlackboard().lastResult());CODE
LOW…/agent/api/annotation/support/PackageVisibleTests.java119 pc.getBlackboard().plusAssign(new PackageInput("John Doe"));CODE
LOW…/agent/api/common/workflow/RepeatUntilBuilderTest.java277 Map.of("it", new UserInput("input"), "person", new Person("John Doe", 30))CODE
LOW…/agent/api/common/workflow/RepeatUntilBuilderTest.java303 Map.of("it", new UserInput("input"), "person", new Person("John Doe", 30))CODE
LOW…/com/embabel/agent/core/hitl/FormBindingRequestTest.kt102 "name" to "John Doe",CODE
LOW…/com/embabel/agent/core/hitl/FormBindingRequestTest.kt121 val testData = TestData("John Doe", "john@example.com")CODE
LOW…/com/embabel/agent/core/hitl/FormBindingRequestTest.kt137 "name" to "John Doe"CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt187 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt187 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1019 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1019 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1047 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1047 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1079 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1079 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1109 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1109 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
LOW…babel/agent/spi/support/ChatClientLlmOperationsTest.kt1146 "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et CODE
73 more matches not shown…
Cross-File Repetition21 hits · 105 pts
SeverityFileLineSnippetContext
HIGHREADME.md0create a person from this user input, extracting their name and star sign: ${userinput.content}STRING
HIGH…/example/simple/horoscope/java/TestStarNewsFinder.java0create a person from this user input, extracting their name and star sign: ${userinput.content}STRING
HIGH…/example/simple/horoscope/kotlin/TestStarNewsFinder.kt0create a person from this user input, extracting their name and star sign: ${userinput.content}STRING
HIGH…/example/simple/horoscope/kotlin/TestStarNewsFinder.kt0create a person from this user input, extracting their name and star sign: ${userinput.content}STRING
HIGHREADME.md0${person.name} is an astrology believer with the sign ${person.sign}. their horoscope for today is: <horoscope>${horoscoSTRING
HIGH…/example/simple/horoscope/java/TestStarNewsFinder.java0${person.name} is an astrology believer with the sign ${person.sign}. their horoscope for today is: <horoscope>${horoscoSTRING
HIGH…/example/simple/horoscope/kotlin/TestStarNewsFinder.kt0${person.name} is an astrology believer with the sign ${person.sign}. their horoscope for today is: <horoscope>${horoscoSTRING
HIGH…/example/simple/horoscope/kotlin/TestStarNewsFinder.kt0${person.name} is an astrology believer with the sign ${person.sign}. their horoscope for today is: <horoscope>${horoscoSTRING
HIGHREADME.md0take the following news stories and write up something amusing for the target person in $wordcount words. begin by summaSTRING
HIGH…/example/simple/horoscope/kotlin/TestStarNewsFinder.kt0take the following news stories and write up something amusing for the target person in $wordcount words. begin by summaSTRING
HIGH…/example/simple/horoscope/kotlin/TestStarNewsFinder.kt0take the following news stories and write up something amusing for the target person in $wordcount words. begin by summaSTRING
HIGH…gration/EmbabelMockitoIntegrationTestBlockingTest.java0revise a short story in %d words or less. the story should be engaging and imaginative. use the user's input as inspiratSTRING
HIGH…ration/EmbabelMockitoIntegrationTestStreamingTest.java0revise a short story in %d words or less. the story should be engaging and imaginative. use the user's input as inspiratSTRING
HIGH…/api/annotation/support/state/WriteAndReviewAgent.java0revise a short story in %d words or less. the story should be engaging and imaginative. use the user's input as inspiratSTRING
HIGH…gration/EmbabelMockitoIntegrationTestBlockingTest.java0you will be given a short story to review. review it in %d words or less. consider whether or not the story is engaging,STRING
HIGH…ration/EmbabelMockitoIntegrationTestStreamingTest.java0you will be given a short story to review. review it in %d words or less. consider whether or not the story is engaging,STRING
HIGH…/api/annotation/support/state/WriteAndReviewAgent.java0you will be given a short story to review. review it in %d words or less. consider whether or not the story is engaging,STRING
HIGH…thinking/support/ThinkingPromptRunnerOperationsImpl.kt0evaluate this condition given the context. return "result": whether you think it is true, your confidence level from 0-1STRING
HIGH…ent/api/common/support/OperationContextPromptRunner.kt0evaluate this condition given the context. return "result": whether you think it is true, your confidence level from 0-1STRING
HIGH…l/agent/api/common/support/OperationContextDelegate.kt0evaluate this condition given the context. return "result": whether you think it is true, your confidence level from 0-1STRING
HIGH…/api/common/support/DelegatingStreamingPromptRunner.kt0evaluate this condition given the context. return "result": whether you think it is true, your confidence level from 0-1STRING
Modern AI Meta-Vocabulary18 hits · 63 pts
SeverityFileLineSnippetContext
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml91 # Default text embedding modelCOMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml99 # Smaller embedding modelCOMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml107 # Legacy embedding modelCOMMENT
MEDIUM…nfigure/src/main/resources/models/anthropic-models.yml102 # Claude Sonnet 4 - General purpose, large context windowCOMMENT
MEDIUM…oconfigure/src/main/resources/models/openai-models.yml197 # GPT-4.1 FAMILY (April 2025 - 1M token context window)COMMENT
MEDIUM…gure/src/main/resources/models/google-genai-models.yml129 # Gemini Embedding 001 - Recommended embedding model (GA)COMMENT
MEDIUMembabel-agent-rag/embabel-agent-rag-pipeline/README.md1# RAG Pipeline Support: ObsoleteCOMMENT
MEDIUM…/src/main/kotlin/com/embabel/agent/rag/model/README.md1# RAG integration for agentCOMMENT
MEDIUM…src/main/kotlin/com/embabel/agent/rag/filter/README.md1# RAG FilteringCOMMENT
MEDIUM…embabel/agent/api/termination/TerminationJavaTest.java100 // Java interop for these is tested via the agentic integration tests in TerminationAgenticTest.COMMENT
MEDIUM…nt/spi/support/ChatClientLlmOperationsGuardRailTest.kt747 // Verify all guardrails were calledCOMMENT
MEDIUM…t/kotlin/com/embabel/agent/api/tool/AgenticToolTest.kt517 // The nested agentic should not be wrappedCOMMENT
MEDIUM…t/kotlin/com/embabel/agent/api/tool/AgenticToolTest.kt536 // The nested agentic should be wrappedCOMMENT
MEDIUM…embabel/common/core/validation/ValidationResultTest.kt81 // Given - Real guardrails use case: determine highest severity from multiple errorsCOMMENT
MEDIUM…/com/embabel/agent/tools/blackboard/BlackboardTools.kt43 * // Add to an agentic toolCOMMENT
MEDIUM…n/com/embabel/agent/tools/process/AgentProcessTools.kt38 * // Add to an agentic toolCOMMENT
MEDIUM…agent/spi/support/guardrails/llmOperationGuardRails.kt49 // Merge global and interaction-specific guardrails, removing duplicates by classCOMMENT
MEDIUM…agent/spi/support/guardrails/llmOperationGuardRails.kt101 // Merge global and interaction-specific guardrails, removing duplicates by classCOMMENT
Magic Placeholder Names4 hits · 30 pts
SeverityFileLineSnippetContext
HIGH…onfig/models/openai/custom/OpenAiCustomModelsConfig.kt110 * OPENAI_CUSTOM_API_KEY=your-api-keyCOMMENT
HIGH…bel/agent/config/models/minimax/MiniMaxModelsConfig.kt95 * MINIMAX_API_KEY=your-api-keyCOMMENT
HIGH…agent/config/models/dashscope/DashScopeModelsConfig.kt105 * DASHSCOPE_API_KEY=your-api-keyCOMMENT
HIGH…com/embabel/agent/config/models/zai/ZaiModelsConfig.kt107 * ZAI_API_KEY=your-api-keyCOMMENT
Verbosity Indicators13 hits · 26 pts
SeverityFileLineSnippetContext
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt168 // Step 1: Create initial SkillsCOMMENT
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt172 // Step 2: Add skill (simulates withGitHubUrl)COMMENT
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt177 // Step 3: Add engine - script tools should now appearCOMMENT
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt186 // Step 4: Activate to get instructionsCOMMENT
LOW…n/com/embabel/agent/e2e/LLMStreamingIntegrationTest.kt227 // Step 1: Test basic non-streaming model with established patternCOMMENT
LOW…/embabel/agent/spi/config/spring/AsyncConfiguration.kt84 // Step 3: Attempt to get shared executor if enabledCOMMENT
LOW…/embabel/agent/spi/config/spring/AsyncConfiguration.kt97 // Step 4: Create isolated raw JDK executor (no Spring lifecycle)COMMENT
LOW…rt/springai/streaming/StreamingChatClientOperations.kt381 // Step 1: Original raw chunk stream from LLMCOMMENT
LOW…rt/springai/streaming/StreamingChatClientOperations.kt393 // Step 2: Transform raw chunks to complete newline-delimited linesCOMMENT
LOW…rt/springai/streaming/StreamingChatClientOperations.kt398 // Step 3: Final flux of StreamingEvent (thinking + objects)COMMENT
LOW…nt/spi/support/streaming/StreamingLlmOperationsImpl.kt237 // Step 1: Raw chunk stream from LLMCOMMENT
LOW…nt/spi/support/streaming/StreamingLlmOperationsImpl.kt248 // Step 2: Transform raw chunks to complete newline-delimited linesCOMMENT
LOW…nt/spi/support/streaming/StreamingLlmOperationsImpl.kt253 // Step 3: Convert lines to StreamingEvent (thinking + objects)COMMENT
Structural Annotation Overuse13 hits · 26 pts
SeverityFileLineSnippetContext
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt168 // Step 1: Create initial SkillsCOMMENT
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt172 // Step 2: Add skill (simulates withGitHubUrl)COMMENT
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt177 // Step 3: Add engine - script tools should now appearCOMMENT
LOW…om/embabel/agent/skills/SkillsScriptIntegrationTest.kt186 // Step 4: Activate to get instructionsCOMMENT
LOW…n/com/embabel/agent/e2e/LLMStreamingIntegrationTest.kt227 // Step 1: Test basic non-streaming model with established patternCOMMENT
LOW…/embabel/agent/spi/config/spring/AsyncConfiguration.kt84 // Step 3: Attempt to get shared executor if enabledCOMMENT
LOW…/embabel/agent/spi/config/spring/AsyncConfiguration.kt97 // Step 4: Create isolated raw JDK executor (no Spring lifecycle)COMMENT
LOW…rt/springai/streaming/StreamingChatClientOperations.kt381 // Step 1: Original raw chunk stream from LLMCOMMENT
LOW…rt/springai/streaming/StreamingChatClientOperations.kt393 // Step 2: Transform raw chunks to complete newline-delimited linesCOMMENT
LOW…rt/springai/streaming/StreamingChatClientOperations.kt398 // Step 3: Final flux of StreamingEvent (thinking + objects)COMMENT
LOW…nt/spi/support/streaming/StreamingLlmOperationsImpl.kt237 // Step 1: Raw chunk stream from LLMCOMMENT
LOW…nt/spi/support/streaming/StreamingLlmOperationsImpl.kt248 // Step 2: Transform raw chunks to complete newline-delimited linesCOMMENT
LOW…nt/spi/support/streaming/StreamingLlmOperationsImpl.kt253 // Step 3: Convert lines to StreamingEvent (thinking + objects)COMMENT
Over-Commented Block20 hits · 20 pts
SeverityFileLineSnippetContext
LOW…nfigure/src/main/resources/models/anthropic-models.yml1# ============================================COMMENT
LOW…oconfigure/src/main/resources/models/openai-models.yml1# ============================================COMMENT
LOW…t/config/models/bedrock/BedrockOptionsConverterTest.kt21//class BedrockOptionsConverterTest : OptionsConverterTestSupport<ToolCallingChatOptions>(COMMENT
LOW…gure/observability/ObservabilityAutoConfiguration.java141 // disabled-traces matches by span name, so it targets spans that carry their real name atCOMMENT
LOW…/support/PerGoalAsyncMcpToolExportCallbackPublisher.kt121// name = event.name,COMMENT
LOW…/sync/support/PerGoalMcpExportToolCallbackPublisher.kt121 when {COMMENT
LOW…/sync/support/PerGoalMcpExportToolCallbackPublisher.kt141// logger.info("MCP Tool Export Callback Publisher adding resource {}", uri)COMMENT
LOW…embabel/agent/rag/service/NamedEntityDataRepository.kt661 // `:User` / `:StoredUser`). Proxying those and casting to NamedEntity inCOMMENT
LOW…-test-internal/src/main/resources/application-test.yml21COMMENT
LOW…skills/script/ProcessSkillScriptExecutionEngineTest.kt361COMMENT
LOW…skills/script/ProcessSkillScriptExecutionEngineTest.kt401 @TestCOMMENT
LOW…nt/skills/support/InstructionFileReferenceExtractor.kt41 // using ``` or ~~~, at any indentation (so fences nested inside listCOMMENT
LOW…c/src/main/kotlin/com/embabel/agent/web/rest/README.md1# Endpoints to expose agent platform informationCOMMENT
LOW…pi/annotation/support/AgentMetadataReaderActionTest.kt1121// assertEquals(2, action.toolGroups.size, "Had ${action.toolGroups} tool groups, expected 1")COMMENT
LOW…kotlin/com/embabel/agent/api/dsl/MapperParallelTest.kt81// val concurrencyLevel = 4COMMENT
LOW…n/kotlin/com/embabel/agent/tools/file/FileReadTools.kt301// ├── README.md ← root-level fileCOMMENT
LOW…rc/main/kotlin/com/embabel/agent/tools/agent/README.md1# Support for creating Tools from Embabel AgentsCOMMENT
LOW…el/agent/spi/support/springai/InstrumentedChatModel.kt81 // We intentionally do NOT use Kotlin's `by` delegation here becauseCOMMENT
LOW…main/kotlin/com/embabel/agent/api/invocation/README.md1# AgentProcess invocation supportCOMMENT
LOW…pi/src/main/kotlin/com/embabel/agent/api/dsl/README.md1# Kotlin DSL for writing agentsCOMMENT
Self-Referential Comments1 hit · 4 pts
SeverityFileLineSnippetContext
MEDIUM…oconfigure/src/main/resources/models/gemini-models.yml2# This file defines all Google Gemini models available for use in the application.COMMENT
AI Slop Vocabulary1 hit · 3 pts
SeverityFileLineSnippetContext
MEDIUM…pi/event/observation/ToolLoopObservationContextTest.kt70 // robust to how many times Micrometer happens to read the convention.COMMENT
Hyper-Verbose Identifiers1 hit · 1 pts
SeverityFileLineSnippetContext
LOW…/agent/a2a/server/support/AutonomyA2ARequestHandler.kt38class AutonomyA2ARequestHandler(CODE