Repository Analysis

sipeed/picoclaw

Tiny, Fast, and Deployable anywhere — automate the mundane, unleash your creativity

3.4 Likely human-written View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of sipeed/picoclaw, a Go project with 29,748 GitHub stars. SynthScan v2.0 examined 368,593 lines of code across 1330 source files, recording 476 pattern matches distributed across 12 syntactic categories. The overall adjusted score of 3.4 places this repository in the Likely human-written 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).

3.4
Adjusted Score
3.4
Raw Score
100%
Time Factor
2026-07-09
Last Push
29.7K
Stars
Go
Language
368.6K
Lines of Code
1.3K
Files
476
Pattern Hits
2026-07-14
Scan Date
0.06
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

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.

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 39HIGH 36MEDIUM 68LOW 333

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 476 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 Indicators39 hits · 470 pts
SeverityFileLineSnippetContext
CRITICALweb/backend/api/config.go699 cfg.Tools.Skills.Github.Token.Set(token)CODE
CRITICALweb/backend/api/tools.go582 APIKeySet: cfg.Tools.Web.Gemini.APIKey.String() != "",CODE
CRITICALweb/backend/api/tools.go587 APIKeySet: len(cfg.Tools.Web.Brave.APIKeys.Values()) > 0,CODE
CRITICALweb/backend/api/tools.go593 APIKeySet: len(cfg.Tools.Web.Tavily.APIKeys.Values()) > 0,CODE
CRITICALweb/backend/api/tools.go599 APIKeySet: len(cfg.Tools.Web.Kagi.APIKeys.Values()) > 0,CODE
CRITICALweb/backend/api/tools.go604 APIKeySet: len(cfg.Tools.Web.Perplexity.APIKeys.Values()) > 0,CODE
CRITICALweb/backend/api/tools.go615 APIKeySet: cfg.Tools.Web.GLMSearch.APIKey.String() != "",CODE
CRITICALweb/backend/api/tools.go621 APIKeySet: cfg.Tools.Web.BaiduSearch.APIKey.String() != "",CODE
CRITICALweb/backend/api/tools_test.go508 if got := updated.Tools.Web.Brave.APIKeys.Values(); len(got) != 2 ||CODE
CRITICALweb/backend/api/tools_test.go537 if got := updated.Tools.Web.Brave.APIKeys.Values(); len(got) != 2 ||CODE
CRITICALpkg/tools/integration/web.go1508 BraveAPIKeys: cfg.Tools.Web.Brave.APIKeys.Values(),CODE
CRITICALpkg/tools/integration/web.go1511 TavilyAPIKeys: cfg.Tools.Web.Tavily.APIKeys.Values(),CODE
CRITICALpkg/tools/integration/web.go1515 KagiAPIKeys: cfg.Tools.Web.Kagi.APIKeys.Values(),CODE
CRITICALpkg/tools/integration/web.go1523 GeminiAPIKey: cfg.Tools.Web.Gemini.APIKey.String(),CODE
CRITICALpkg/tools/integration/web.go1527 PerplexityAPIKeys: cfg.Tools.Web.Perplexity.APIKeys.Values(),CODE
CRITICALpkg/tools/integration/web.go1533 GLMSearchAPIKey: cfg.Tools.Web.GLMSearch.APIKey.String(),CODE
CRITICALpkg/tools/integration/web.go1538 BaiduSearchAPIKey: cfg.Tools.Web.BaiduSearch.APIKey.String(),CODE
CRITICALpkg/config/security.go148 if cfg.Tools.Skills.Github.Token.String() == "" && legacyGitHub.Token.String() != "" {CODE
CRITICALpkg/config/security.go159 if name == "github" && cfg.Tools.Skills.Github.Token.String() != "" {CODE
CRITICALpkg/config/security_integration_test.go124 assert.Equal(t, "ghp-from-security-yml", cfg.Tools.Skills.Github.Token.String())CODE
CRITICALpkg/config/security_integration_test.go473 t.Logf("GLMSearch APIKey(): %s", cfg.Tools.Web.GLMSearch.APIKey.String())CODE
CRITICALpkg/config/security_integration_test.go474 assert.Equal(t, "glm-test-glm-search-key", cfg.Tools.Web.GLMSearch.APIKey.String())CODE
CRITICALpkg/config/security_integration_test.go477 assert.Equal(t, "ghp-github-from-file-abc123", cfg.Tools.Skills.Github.Token.String())CODE
CRITICALpkg/config/security_integration_test.go478 t.Logf("Github Token(): %s", cfg.Tools.Skills.Github.Token.String())CODE
CRITICALpkg/config/security_integration_test.go645 assert.Equal(t, "legacy-github-token", cfg.Tools.Skills.Github.Token.String())CODE
CRITICALpkg/channels/feishu/feishu_reply.go139 resp, err := c.client.Im.V1.Message.Get(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go257 resp, err := c.client.Im.V1.Message.Patch(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go282 resp, err := c.client.Im.V1.Message.Delete(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go319 resp, err := c.client.Im.V1.Message.Create(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go445 resp, err := c.client.Im.V1.MessageReaction.Create(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go482 _, _ = c.client.Im.V1.MessageReaction.Delete(context.Background(), delReq)CODE
CRITICALpkg/channels/feishu/feishu_64.go915 resp, err := c.client.Im.V1.MessageResource.Get(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go955 resp, err := c.client.Im.V1.Image.Get(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go1085 resp, err := c.client.Im.V1.Message.Create(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go1118 resp, err := c.client.Im.V1.Message.Create(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go1147 uploadResp, err := c.client.Im.V1.Image.Create(ctx, uploadReq)CODE
CRITICALpkg/channels/feishu/feishu_64.go1172 resp, err := c.client.Im.V1.Message.Create(ctx, req)CODE
CRITICALpkg/channels/feishu/feishu_64.go1203 uploadResp, err := c.client.Im.V1.File.Create(ctx, uploadReq)CODE
CRITICALpkg/channels/feishu/feishu_64.go1228 resp, err := c.client.Im.V1.Message.Create(ctx, req)CODE
Magic Placeholder Names36 hits · 180 pts
SeverityFileLineSnippetContext
HIGHdocs/security/ANTIGRAVITY_AUTH.ja.md694 "api_keys": ["your-api-key"],CODE
HIGHdocs/security/ANTIGRAVITY_AUTH.vi.md694 "api_keys": ["your-api-key"],CODE
HIGHdocs/security/ANTIGRAVITY_AUTH.md692 "api_keys": ["your-api-key"],CODE
HIGHdocs/security/ANTIGRAVITY_AUTH.fr.md694 "api_keys": ["your-api-key"],CODE
HIGHdocs/security/ANTIGRAVITY_AUTH.zh.md694 "api_keys": ["your-api-key"],CODE
HIGHdocs/security/ANTIGRAVITY_AUTH.pt-br.md694 "api_keys": ["your-api-key"],CODE
HIGHdocs/project/README.zh.md377 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/project/README.fr.md380 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/project/README.it.md376 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/project/README.ja.md377 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/project/README.pt-br.md377 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/project/README.id.md376 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/project/README.vi.md377 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/docker.vi.md95 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.vi.md101 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/docker.ms.md94 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.ms.md100 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/providers.md90 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/providers.zh.md85 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/docker.pt-br.md95 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.pt-br.md101 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/providers.fr.md76 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/docker.ja.md97 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.ja.md103 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/configuration.zh.md548 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/providers.pt-br.md76 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/configuration.md752 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/providers.ja.md77 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/guides/docker.fr.md95 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.fr.md101 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/docker.zh.md98 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.zh.md105 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/docker.md99 "api_keys": ["sk-your-api-key"],CODE
HIGHdocs/guides/docker.md106 "api_keys": ["your-api-key"],CODE
HIGHdocs/guides/providers.vi.md76 "api_keys": ["sk-your-api-key"]CODE
HIGHdocs/migration/model-list-migration.md211 "api_keys": ["your-api-key"],CODE
Decorative Section Separators59 hits · 176 pts
SeverityFileLineSnippetContext
MEDIUMcmd/picoclaw/internal/cliui/mcp_show.go49// ── plain (narrow / non-TTY) ────────────────────────────────────────────────COMMENT
MEDIUMcmd/picoclaw/internal/cliui/mcp_show.go110// ── fancy (wide TTY) ────────────────────────────────────────────────────────COMMENT
MEDIUMcmd/picoclaw/internal/cliui/mcp_show.go240// ── mcp list ────────────────────────────────────────────────────────────────COMMENT
MEDIUMcmd/picoclaw/internal/cliui/mcp_show.go355// ── helpers ─────────────────────────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.full.yml2 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.full.yml5 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.full.yml21 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.full.yml24 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.yml2 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.yml5 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.yml23 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.yml26 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.yml42 # ─────────────────────────────────────────────COMMENT
MEDIUMdocker/docker-compose.yml45 # ─────────────────────────────────────────────COMMENT
MEDIUM.github/workflows/docker-build.yml26 # ── Checkout ──────────────────────────────COMMENT
MEDIUM.github/workflows/docker-build.yml32 # ── Docker Buildx ─────────────────────────COMMENT
MEDIUM.github/workflows/docker-build.yml36 # ── Login to GHCR ─────────────────────────COMMENT
MEDIUM.github/workflows/docker-build.yml44 # ── Login to Docker Hub ────────────────────COMMENT
MEDIUM.github/workflows/docker-build.yml52 # ── Metadata (tags & labels) ──────────────COMMENT
MEDIUM.github/workflows/docker-build.yml63 # ── Build & Push ──────────────────────────COMMENT
MEDIUMpkg/config/config_channel_test.go466// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go468// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go525// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go527// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go828// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go830// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go1005// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go1007// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go32// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go34// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go99// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go101// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go310// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go312// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go354// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go356// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go374// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go376// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go400// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go402// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go430// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go432// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go625// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go627// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go668// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go670// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go740// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go742// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go776// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go778// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go937// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go939// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go1068// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/config/config_channel_test.go1070// ═══════════════════════════════════════════════════COMMENT
MEDIUMpkg/utils/bm25.go21// ── Tuning defaults ───────────────────────────────────────────────────────────COMMENT
MEDIUMpkg/routing/router_test.go10// ── ExtractFeatures ──────────────────────────────────────────────────────────COMMENT
MEDIUMpkg/routing/router_test.go146// ── RuleClassifier ───────────────────────────────────────────────────────────COMMENT
MEDIUMpkg/routing/router_test.go242// ── Router ───────────────────────────────────────────────────────────────────COMMENT
MEDIUMpkg/routing/router_test.go365// ── newWithClassifier (internal testing hook) ─────────────────────────────────COMMENT
Structural Annotation Overuse74 hits · 123 pts
SeverityFileLineSnippetContext
LOWworkspace/skills/skill-creator/SKILL.md222### Step 1: Understanding the Skill with Concrete ExamplesCOMMENT
LOWworkspace/skills/skill-creator/SKILL.md239### Step 2: Planning the Reusable Skill ContentsCOMMENT
LOWworkspace/skills/skill-creator/SKILL.md263### Step 3: Creating the Skill DirectoryCOMMENT
LOWworkspace/skills/skill-creator/SKILL.md300### Step 4: Edit the SkillCOMMENT
LOWworkspace/skills/skill-creator/SKILL.md336### Step 5: Verifying the SkillCOMMENT
LOWworkspace/skills/skill-creator/SKILL.md349### Step 6: IterateCOMMENT
LOWdocs/security/ANTIGRAVITY_AUTH.md45#### Step 1: Generate PKCE ParametersCOMMENT
LOWdocs/security/ANTIGRAVITY_AUTH.md54#### Step 2: Build Authorization URLCOMMENT
LOWdocs/security/ANTIGRAVITY_AUTH.md85#### Step 3: Handle OAuth CallbackCOMMENT
LOWdocs/security/ANTIGRAVITY_AUTH.md98#### Step 4: Exchange Code for TokensCOMMENT
LOWdocs/security/ANTIGRAVITY_AUTH.md129#### Step 5: Fetch Additional User DataCOMMENT
LOWdocs/security/security_configuration.md126### Step 1: Create .security.ymlCOMMENT
LOWdocs/security/security_configuration.md133### Step 2: Fill in your actual valuesCOMMENT
LOWdocs/security/security_configuration.md137### Step 3: Set proper permissionsCOMMENT
LOWdocs/security/security_configuration.md143### Step 4: Simplify config.json (Recommended)COMMENT
LOWdocs/security/security_configuration.md189### Step 5: VerifyCOMMENT
LOWdocs/security/security_configuration.md591### Step 1: Backup your configCOMMENT
LOWdocs/security/security_configuration.md599### Step 2: Create .security.ymlCOMMENT
LOWdocs/security/security_configuration.md605### Step 3: Fill in your API keysCOMMENT
LOWdocs/security/security_configuration.md609### Step 4: Remove sensitive fields from config.jsonCOMMENT
LOWdocs/security/security_configuration.md617### Step 5: Set proper permissionsCOMMENT
LOWdocs/security/security_configuration.md623### Step 6: TestCOMMENT
LOWdocs/security/security_configuration.md629### Step 7: Verify functionalityCOMMENT
LOWdocs/security/security_configuration.md633### Step 8: Clean up (optional)COMMENT
LOWdocs/reference/config-versioning.md63### Step 1: Define the New Version StructCOMMENT
LOWdocs/reference/config-versioning.md76### Step 2: Update Current Config VersionCOMMENT
LOWdocs/reference/config-versioning.md82### Step 3: Add a Loader FunctionCOMMENT
LOWdocs/reference/config-versioning.md104### Step 4: Add Migration LogicCOMMENT
LOWdocs/reference/config-versioning.md116### Step 5: Update LoadConfig SwitchCOMMENT
LOWdocs/reference/config-versioning.md139### Step 6: Test Your MigrationCOMMENT
LOWpkg/seahorse/store.go1202 // Step 1: Move all items to temp negative ordinalsCOMMENT
LOWpkg/seahorse/store.go1215 // Step 2: Insert new summary at the end with positive ordinalCOMMENT
LOWpkg/seahorse/store.go1227 // Step 3: Update each temp item to its final positive ordinalCOMMENT
LOWpkg/tools/fs/filesystem_test.go903 // Step 2: Read the second chunk (10 bytes) ---COMMENT
LOWpkg/tools/fs/filesystem_test.go922 // Step 3: Read the final chunk (remaining 6 bytes) ---COMMENT
LOWpkg/config/config_channel.go760 // Step 2: validate singleton constraintsCOMMENT
LOWpkg/config/config_channel_test.go471 // Step 1: Load from extend.jsonCOMMENT
LOWpkg/config/config_channel_test.go488 // Step 2: Load secure from security.ymlCOMMENT
LOWpkg/config/config_channel_test.go498 // Step 3: MergeCOMMENT
LOWpkg/config/config_channel_test.go501 // Step 4: Decode merged resultCOMMENT
LOWpkg/config/config_channel_test.go508 // Step 5: Save extend.json → token masked as [NOT_HERE]COMMENT
LOWpkg/config/config_channel_test.go516 // Step 6: Save security.yml → only tokenCOMMENT
LOWpkg/config/config_channel_test.go833 // Step 1: Load from extend.jsonCOMMENT
LOWpkg/config/config_channel_test.go846 // Step 2: Merge secure from security.ymlCOMMENT
LOWpkg/config/config_channel_test.go856 // Step 3: Decode — both SecureString and SecureStrings should be populatedCOMMENT
LOWpkg/config/config_channel_test.go865 // Step 4: Save extend.json — both secure fields removedCOMMENT
LOWpkg/config/config_channel_test.go875 // Step 5: Save security.yml — only secure fieldsCOMMENT
LOWpkg/config/config_channel_test.go976 // Step 2: Merge enc:// token from security.ymlCOMMENT
LOWpkg/config/config_channel_test.go979 // Step 3: Decode — SecureString.fromRaw resolves enc:// → plaintextCOMMENT
LOWpkg/config/config_channel_test.go988 // Step 4: Save extend.json → token masked as [NOT_HERE]COMMENT
LOWpkg/config/config_channel_test.go995 // Step 5: Save security.yml → token preserved as enc://COMMENT
LOWpkg/config/config_channel_test.go958 // Step 1: Load from extend.json (token is [NOT_HERE])COMMENT
LOWpkg/config/example_security_usage.go337## Step 1: Backup your configCOMMENT
LOWpkg/config/example_security_usage.go342## Step 2: Create .security.ymlCOMMENT
LOWpkg/config/example_security_usage.go347## Step 3: Fill in your API keysCOMMENT
LOWpkg/config/example_security_usage.go350## Step 4: Simplify config.json (Recommended)COMMENT
LOWpkg/config/example_security_usage.go357## Step 5: Set permissionsCOMMENT
LOWpkg/config/example_security_usage.go362## Step 6: TestCOMMENT
LOWpkg/utils/bm25.go123 // Step 4: score via posting listsCOMMENT
LOWpkg/utils/bm25.go145 // Step 5: top-K via fixed-size min-heapCOMMENT
14 more matches not shown…
Fake / Example Data98 hits · 96 pts
SeverityFileLineSnippetContext
LOWconfig/config.example.json174 "placeholder": {CODE
LOWconfig/config.example.json214 "placeholder": {CODE
LOW…ontend/src/components/channels/channel-config-page.tsx99 "placeholder",CODE
LOW…rc/components/channels/channel-forms/telegram-form.tsx143 onChange("placeholder", {CODE
LOW…rc/components/channels/channel-forms/telegram-form.tsx155 onChange("placeholder", {CODE
LOW…src/components/channels/channel-forms/generic-form.tsx44 "placeholder",CODE
LOW…src/components/channels/channel-forms/generic-form.tsx275 (config.placeholder !== undefined && !hiddenFieldSet.has("placeholder")) ||CODE
LOW…src/components/channels/channel-forms/generic-form.tsx397 !hiddenFieldSet.has("placeholder") && (CODE
LOW…src/components/channels/channel-forms/generic-form.tsx404 onChange("placeholder", {CODE
LOW…src/components/channels/channel-forms/generic-form.tsx416 onChange("placeholder", {CODE
LOWweb/frontend/src/i18n/locales/zh.json41 "placeholder": "输入新消息...",CODE
LOWweb/frontend/src/i18n/locales/en.json41 "placeholder": "Start a new message...",CODE
LOWweb/frontend/src/i18n/locales/bn-in.json41 "placeholder": "একটি নতুন বার্তা শুরু করুন...",CODE
LOWweb/frontend/src/i18n/locales/pt-br.json41 "placeholder": "Inicie uma nova mensagem...",CODE
LOWweb/frontend/src/i18n/locales/cs.json41 "placeholder": "Napište zprávu...",CODE
LOWweb/backend/api/channels.go172 settings["placeholder"] = bc.PlaceholderCODE
LOWworkspace/skills/agent-browser/SKILL.md24agent-browser fill @e1 "user@example.com"CODE
LOWdocs/security/ANTIGRAVITY_AUTH.ja.md608 "email": "user@example.com",CODE
LOWdocs/security/ANTIGRAVITY_AUTH.vi.md608 "email": "user@example.com",CODE
LOWdocs/security/ANTIGRAVITY_AUTH.md606 "email": "user@example.com",CODE
LOWdocs/security/ANTIGRAVITY_AUTH.fr.md608 "email": "user@example.com",CODE
LOWdocs/security/ANTIGRAVITY_AUTH.zh.md608 "email": "user@example.com",CODE
LOWdocs/security/ANTIGRAVITY_AUTH.pt-br.md608 "email": "user@example.com",CODE
LOWdocs/channels/discord/README.md25 "placeholder": {CODE
LOWdocs/channels/deltachat/README.md36 "allow_from": ["friend@example.org"],CODE
LOWdocs/channels/matrix/README.zh.md24 "placeholder": {CODE
LOWdocs/channels/matrix/README.fr.md24 "placeholder": {CODE
LOWdocs/channels/matrix/README.md24 "placeholder": {CODE
LOWdocs/channels/matrix/README.ja.md24 "placeholder": {CODE
LOWdocs/channels/matrix/README.pt-br.md24 "placeholder": {CODE
LOWdocs/channels/matrix/README.vi.md24 "placeholder": {CODE
LOWpkg/credential/credential_test.go200 if err := os.WriteFile(sshKeyPath, []byte("fake-key\n"), 0o600); err != nil {CODE
LOWpkg/credential/credential_test.go271 if err := os.WriteFile(sshKeyPath, []byte("fake-key\n"), 0o600); err != nil {CODE
LOWpkg/config/defaults.go528 "placeholder": map[string]any{"enabled": true, "text": []string{"Thinking... 💭"}},CODE
LOWpkg/config/defaults.go546 "placeholder": map[string]any{"enabled": true, "text": []string{"Thinking... 💭"}},CODE
LOWpkg/config/config_channel.go548 "placeholder": {},CODE
LOWpkg/config/config_test.go1176 if !strings.Contains(string(data), `"placeholder": {`) {CODE
LOWpkg/config/config_test.go2215 "placeholder": {CODE
LOWpkg/commands/executor_test.go98 {Name: "placeholder"},CODE
LOWpkg/commands/executor_test.go106 if res.Command != "placeholder" {CODE
LOWpkg/commands/executor_test.go107 t.Fatalf("command=%q, want=%q", res.Command, "placeholder")CODE
LOWpkg/commands/executor_test.go115 {Name: "placeholder"},CODE
LOWpkg/commands/executor_test.go123 if res.Command != "placeholder" {CODE
LOWpkg/commands/executor_test.go124 t.Fatalf("command=%q, want=%q", res.Command, "placeholder")CODE
LOWpkg/channels/pico/protocol.go28 PayloadKeyPlaceholder = "placeholder"CODE
LOWpkg/channels/deltachat/deltachat_test.go117 {"display name", "hey PicoBot can you help", "PicoBot", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go118 {"case insensitive name", "hey picobot", "PicoBot", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go119 {"short display name exact", "hey bot can you help", "bot", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go120 {"short display name with punctuation", "AI, summarize this", "ai", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go121 {"multi word display name", "hey PicoClaw Bot, can you help", "PicoClaw Bot", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go122 {"email local part", "@bot please summarize", "", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go123 {"email local part with punctuation", "please summarize, @bot.", "", "bot@example.org", true},CODE
LOWpkg/channels/deltachat/deltachat_test.go124 {"no mention", "just chatting here", "PicoBot", "bot@example.org", false},CODE
LOWpkg/channels/deltachat/deltachat_test.go125 {"local part without @", "the robot is cool", "", "bot@example.org", false},CODE
LOWpkg/channels/deltachat/deltachat_test.go126 {"short display name inside word", "the robot is cool", "bot", "bot@example.org", false},CODE
LOWpkg/channels/deltachat/deltachat_test.go127 {"short display name inside mail", "please email me later", "ai", "bot@example.org", false},CODE
LOWpkg/channels/deltachat/deltachat_test.go128 {"display name with prefix word", "hey SuperPicoClaw Bot", "PicoClaw Bot", "bot@example.org", false},CODE
LOWpkg/channels/deltachat/deltachat_test.go129 {"email local part inside handle", "hello @botanic", "", "bot@example.org", false},CODE
LOWpkg/channels/deltachat/deltachat_test.go860 ChatID: "friend@example.org",CODE
LOWpkg/channels/deltachat/deltachat_test.go862 Context: bus.InboundContext{ChatID: "42", SenderID: "admin@example.org"},CODE
38 more matches not shown…
Hyper-Verbose Identifiers60 hits · 62 pts
SeverityFileLineSnippetContext
LOWweb/frontend/src/features/chat/history.ts64function normalizeMessageTimestamp(timestamp: number | string): string {CODE
LOWweb/frontend/src/features/chat/state.ts53export function getInitialActiveSessionId(): string {CODE
LOW…/frontend/src/features/chat/assistant-message-state.ts22function normalizeAssistantMessageKind(CODE
LOW…/frontend/src/features/chat/assistant-message-state.ts32function parseAssistantMessageKind(CODE
LOW…/frontend/src/features/chat/assistant-message-state.ts46function hasExplicitAssistantKindPayload(CODE
LOW…/frontend/src/features/chat/assistant-message-state.ts65export function parseAssistantMessageCreateState(CODE
LOW…/frontend/src/features/chat/assistant-message-state.ts78export function parseAssistantMessageUpdateState(CODE
LOWweb/frontend/src/features/chat/detail-visibility.ts40function serializeAssistantDetailVisibility(CODE
LOWweb/frontend/src/features/chat/detail-visibility.ts58function parseAssistantDetailVisibility(CODE
LOWweb/frontend/src/features/chat/detail-visibility.ts78function parseLegacyShowAssistantDetails(CODE
LOWweb/frontend/src/features/chat/detail-visibility.ts100export function resolveAssistantDetailVisibilityPreference(CODE
LOWweb/frontend/src/features/chat/detail-visibility.ts136export function syncAssistantDetailVisibilityStorage(CODE
LOWweb/frontend/src/features/chat/detail-visibility.ts238export function shouldShowAssistantMessage(CODE
LOWweb/frontend/src/features/chat/image-input.ts60function getSupportedImageMimeType(file: File): string | null {CODE
LOWweb/frontend/src/features/chat/image-input.ts70function normalizeImageFileForDataUrl(file: File, filename: string): File {CODE
LOWweb/frontend/src/features/chat/image-input.ts123export async function buildChatImageAttachments(CODE
LOWweb/frontend/src/features/chat/tool-calls.ts3function parseLegacyToolFeedbackContent(CODE
LOWweb/frontend/src/features/chat/tool-calls.ts107export function parseToolCallsFromContent(CODE
LOWweb/frontend/src/features/chat/controller.ts69function needsActiveSessionHydration(): boolean {CODE
LOWweb/frontend/src/components/chat/chat-page.tsx51function resolveChatInputDisabledReason({CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts31function findFirstDescendantByTagName(CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts57export function extractTextFromMarkdownNode(CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts83export function stripSingleTrailingLineBreak(value: string): string {CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts87export function extractCodeBlockFromPreNode(node: MarkdownNode | undefined): {CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts99export function extractCodeBlockRenderState(children: ReactNode): {CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts180function splitHighlightedHtmlIntoNodeLines(CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts200export function splitHighlightedHtmlIntoLines(highlightedHtml: string): string[] {CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts221export function trimTrailingEmptyStringLine(lines: string[]): string[] {CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts249export function trimTrailingEmptyRenderedCodeLine(CODE
LOW…ontend/src/components/chat/message-code-block.utils.ts327export function splitRenderedCodeContentIntoLines(CODE
LOW…omponents/agent/tools/web-search-provider-settings.tsx42export function WebSearchProviderSettings({CODE
LOWweb/frontend/src/components/agent/hub/tool-support.ts15export function buildUnavailableToolMessages({CODE
LOWweb/frontend/src/components/models/provider-registry.ts118export function getProviderDefaultAPIBase(CODE
LOWweb/frontend/src/components/models/provider-registry.ts125export function getProviderDefaultAuthMethod(CODE
LOWweb/frontend/src/components/models/provider-registry.ts132export function isProviderAuthMethodLocked(CODE
LOW…components/credentials/antigravity-credential-card.tsx22export function AntigravityCredentialCard({CODE
LOW…ontend/src/components/channels/channel-config-page.tsx85function serializeGroupTriggerForSubmit(value: unknown): unknown {CODE
LOW…ntend/src/components/channels/channel-config-fields.ts76export function getFieldValueForValidation(CODE
LOW…ntend/src/components/channels/channel-config-fields.ts94export function getSecretInputPlaceholder(CODE
LOW…rontend/src/components/channels/channel-array-utils.ts50export function parseConservativeStringListInput(raw: string): string[] {CODE
LOW…rontend/src/components/channels/channel-array-utils.ts67export function serializeStringArrayForSubmit(value: unknown): unknown {CODE
LOWweb/frontend/src/hooks/use-highlight-theme.ts22function getOrCreateThemeStyleElement(): HTMLStyleElement {CODE
LOWweb/frontend/src/hooks/use-highlight-theme.ts22function getOrCreateThemeStyleElement(): HTMLStyleElement {CODE
LOWweb/frontend/src/hooks/use-sidebar-channels.ts46function getChannelImportanceOrder(language: string): string[] {CODE
LOWweb/frontend/src/lib/clipboard.ts33function getDefaultClipboardEnvironment(): ClipboardEnvironment {CODE
LOWweb/frontend/src/lib/restart-required.ts10export function showSaveSuccessOrRestartToast(CODE
LOWweb/frontend/src/api/launcher-auth.ts9export async function postLauncherDashboardLogin(CODE
LOWweb/frontend/src/api/launcher-auth.ts44export async function postLauncherDashboardLogout(): Promise<boolean> {CODE
LOWweb/frontend/src/api/launcher-auth.ts56export async function postLauncherDashboardSetup(CODE
LOWweb/frontend/src/store/gateway.ts45function clearGatewayStoppingTimeout() {CODE
LOWweb/frontend/src/store/gateway.ts52function normalizeGatewayStoreState(CODE
LOWweb/frontend/src/store/gateway.ts86export function beginGatewayStoppingTransition() {CODE
LOWweb/frontend/src/store/gateway.ts102export function cancelGatewayStoppingTransition() {CODE
LOWweb/frontend/src/store/gateway.ts109export function applyGatewayStatusToStore(CODE
LOWdocs/security/ANTIGRAVITY_AUTH.ja.md508export function sanitizeAntigravityThinkingBlocks(CODE
LOWdocs/security/ANTIGRAVITY_AUTH.vi.md508export function sanitizeAntigravityThinkingBlocks(CODE
LOWdocs/security/ANTIGRAVITY_AUTH.md506export function sanitizeAntigravityThinkingBlocks(CODE
LOWdocs/security/ANTIGRAVITY_AUTH.fr.md508export function sanitizeAntigravityThinkingBlocks(CODE
LOWdocs/security/ANTIGRAVITY_AUTH.zh.md508export function sanitizeAntigravityThinkingBlocks(CODE
LOWdocs/security/ANTIGRAVITY_AUTH.pt-br.md508export function sanitizeAntigravityThinkingBlocks(CODE
Verbosity Indicators39 hits · 61 pts
SeverityFileLineSnippetContext
LOWpkg/seahorse/store.go1202 // Step 1: Move all items to temp negative ordinalsCOMMENT
LOWpkg/seahorse/store.go1215 // Step 2: Insert new summary at the end with positive ordinalCOMMENT
LOWpkg/seahorse/store.go1227 // Step 3: Update each temp item to its final positive ordinalCOMMENT
LOWpkg/tools/fs/filesystem_test.go903 // Step 2: Read the second chunk (10 bytes) ---COMMENT
LOWpkg/tools/fs/filesystem_test.go922 // Step 3: Read the final chunk (remaining 6 bytes) ---COMMENT
LOWpkg/config/config_channel.go760 // Step 2: validate singleton constraintsCOMMENT
LOWpkg/config/config_channel_test.go471 // Step 1: Load from extend.jsonCOMMENT
LOWpkg/config/config_channel_test.go488 // Step 2: Load secure from security.ymlCOMMENT
LOWpkg/config/config_channel_test.go498 // Step 3: MergeCOMMENT
LOWpkg/config/config_channel_test.go501 // Step 4: Decode merged resultCOMMENT
LOWpkg/config/config_channel_test.go508 // Step 5: Save extend.json → token masked as [NOT_HERE]COMMENT
LOWpkg/config/config_channel_test.go516 // Step 6: Save security.yml → only tokenCOMMENT
LOWpkg/config/config_channel_test.go833 // Step 1: Load from extend.jsonCOMMENT
LOWpkg/config/config_channel_test.go846 // Step 2: Merge secure from security.ymlCOMMENT
LOWpkg/config/config_channel_test.go856 // Step 3: Decode — both SecureString and SecureStrings should be populatedCOMMENT
LOWpkg/config/config_channel_test.go865 // Step 4: Save extend.json — both secure fields removedCOMMENT
LOWpkg/config/config_channel_test.go875 // Step 5: Save security.yml — only secure fieldsCOMMENT
LOWpkg/config/config_channel_test.go976 // Step 2: Merge enc:// token from security.ymlCOMMENT
LOWpkg/config/config_channel_test.go979 // Step 3: Decode — SecureString.fromRaw resolves enc:// → plaintextCOMMENT
LOWpkg/config/config_channel_test.go988 // Step 4: Save extend.json → token masked as [NOT_HERE]COMMENT
LOWpkg/config/config_channel_test.go995 // Step 5: Save security.yml → token preserved as enc://COMMENT
LOWpkg/config/config_channel_test.go958 // Step 1: Load from extend.json (token is [NOT_HERE])COMMENT
LOWpkg/config/example_security_usage.go337## Step 1: Backup your configCOMMENT
LOWpkg/config/example_security_usage.go342## Step 2: Create .security.ymlCOMMENT
LOWpkg/config/example_security_usage.go347## Step 3: Fill in your API keysCOMMENT
LOWpkg/config/example_security_usage.go350## Step 4: Simplify config.json (Recommended)COMMENT
LOWpkg/config/example_security_usage.go357## Step 5: Set permissionsCOMMENT
LOWpkg/config/example_security_usage.go362## Step 6: TestCOMMENT
LOWpkg/utils/bm25.go123 // Step 4: score via posting listsCOMMENT
LOWpkg/utils/bm25.go145 // Step 5: top-K via fixed-size min-heapCOMMENT
LOWpkg/skills/clawhub_registry.go278 // Step 1: Fetch metadata (with fallback).COMMENT
LOWpkg/skills/clawhub_registry.go292 // Step 2: Resolve version.COMMENT
LOWpkg/skills/clawhub_registry.go302 // Step 3: Download ZIP to temp file (streams in ~32KB chunks).COMMENT
LOWpkg/skills/clawhub_registry.go321 // Step 4: Extract from file on disk.COMMENT
LOWpkg/channels/marker_test.go92 // Step 1: Marker split should give us 2 chunksCOMMENT
LOWpkg/channels/marker_test.go97 // Step 2: Length split should be applied to each marker chunkCOMMENT
LOWpkg/channels/manager.go1477 // Step 1: Try marker-based splitting if enabled.COMMENT
LOWpkg/channels/manager.go1493 // Step 2: Fallback to length-based splitting if no chunks from markerCOMMENT
LOWpkg/channels/manager.go1498 // Step 3: Send all chunksCOMMENT
Over-Commented Block56 hits · 56 pts
SeverityFileLineSnippetContext
LOWonboard_workspace_embed.go1package picoclawCOMMENT
LOWweb/backend/app_runtime.go21// - Disables HTTP keep-alive to prevent new connections during shutdownCOMMENT
LOWpkg/seahorse/fts5_sanitize.go1package seahorseCOMMENT
LOWpkg/seahorse/fts5_sanitize.go21// treats it as a literal phrase token. User-quoted phrases ("...") areCOMMENT
LOWpkg/seahorse/store_test.go741 //COMMENT
LOWpkg/seahorse/store_test.go761 {Ordinal: 104, ItemType: "message", MessageID: msgs[4], TokenCount: 2},COMMENT
LOWpkg/seahorse/store_test.go781 // After delete: 100, 104COMMENT
LOWpkg/seahorse/store_test.go821}COMMENT
LOWpkg/seahorse/short_engine_test.go1741 // Uses (role, content, token_count) multi-dimensional comparison.COMMENT
LOWpkg/credential/credential.go1// Package credential resolves API credential values for model_list entries.COMMENT
LOWpkg/credential/credential.go41)COMMENT
LOWpkg/tools/shell.go101COMMENT
LOWpkg/tools/shared/result.go41 // Used for internal error handling and logging.COMMENT
LOWpkg/tools/shared/result.go101// result := NewToolResult("File updated successfully")COMMENT
LOWpkg/tools/shared/result.go121 ForLLM: forLLM,COMMENT
LOWpkg/tools/shared/result.go161}COMMENT
LOWpkg/tools/shared/base.go161// AsyncExecutor is an optional interface that tools can implement to supportCOMMENT
LOWpkg/fileutil/file.go21// - Unchanged (if any step fails before rename)COMMENT
LOWpkg/fileutil/file.go41//COMMENT
LOWpkg/config/migration_integration_test.go721 }COMMENT
LOWpkg/config/migration_integration_test.go741// for _, m := range v1.ModelList {COMMENT
LOWpkg/config/migration_integration_test.go761//COMMENT
LOWpkg/config/migration_integration_test.go781//func TestMigrateModelEnabled_ExplicitEnabledPreserved(t *testing.T) {COMMENT
LOWpkg/config/migration_integration_test.go801// {ModelName: "gpt-4", Model: "openai/gpt-4", APIKeys: SimpleSecureStrings("sk-test"), Enabled: false},COMMENT
LOWpkg/config/migration_integration_test.go821// Model: "openai/gpt-4",COMMENT
LOWpkg/config/migration_integration_test.go841// assertEnabled("with-key", true)COMMENT
LOWpkg/config/migration_integration_test.go861// "group_trigger": map[string]any{"mention_only": true},COMMENT
LOWpkg/config/migration_integration_test.go881// ModelList: []*ModelConfig{COMMENT
LOWpkg/config/envkeys.go21const (COMMENT
LOWpkg/config/config_channel.go201}COMMENT
LOWpkg/providers/factory_provider.go41 }COMMENT
LOWpkg/providers/openai_compat/provider_test.go861}COMMENT
LOWpkg/utils/bm25.go1// Package utils provides shared, reusable algorithms.COMMENT
LOWpkg/agent/subturn.go81//COMMENT
LOWpkg/agent/subturn.go101// }COMMENT
LOWpkg/agent/subturn.go121 // When Async = true (asynchronous sub-turn):COMMENT
LOWpkg/agent/subturn.go141 // When parent finishes with hard abort (Finish(true)):COMMENT
LOWpkg/agent/subturn.go161 MaxContextRunes intCOMMENT
LOWpkg/agent/subturn.go521// IMPORTANT: This function is ONLY called for asynchronous sub-turns (Async=true).COMMENT
LOWpkg/agent/context_budget.go1// PicoClaw - Ultra-lightweight personal AI agentCOMMENT
LOWpkg/agent/steering.go561// - Automated workflows that need to chain multiple turnsCOMMENT
LOWpkg/agent/agent_media.go41 return currentTurnStartCOMMENT
LOWpkg/agent/agent.go301 // "scope": msg.MediaScope,COMMENT
LOWpkg/agent/agent.go501// SetReloadFunc sets the callback function for triggering config reload.COMMENT
LOWpkg/agent/agent.go641COMMENT
LOWpkg/agent/agent.go661// hasMediaRefs checks if any message has media references.COMMENT
LOWpkg/agent/context.go841COMMENT
LOWpkg/mcp/manager_real_server_integration_test.go21//COMMENT
LOWpkg/routing/classifier.go1package routingCOMMENT
LOWpkg/routing/classifier.go21// token > 200 (≈600 chars): 0.35 — very long prompts are almost always complexCOMMENT
LOWpkg/gateway/channel_matrix.go1//go:build !mipsle && !netbsd && !(freebsd && arm) && !androidCOMMENT
LOWpkg/channels/registry.go21COMMENT
LOWpkg/channels/marker.go1// PicoClaw - Ultra-lightweight personal AI agentCOMMENT
LOWpkg/channels/base.go141// A value of 0 means no limit.COMMENT
LOWpkg/channels/telegram/parse_markdown_to_md_v2.go81//COMMENT
LOWpkg/session/session_store.go1package sessionCOMMENT
Modern AI Meta-Vocabulary6 hits · 16 pts
SeverityFileLineSnippetContext
MEDIUMweb/backend/api/session_test.go598 t.Fatalf("thought message = %#v, want assistant thought/internal chain of thought", resp.Messages[1])CODE
MEDIUMpkg/routing/classifier.go24// tool calls > 3 (recent): 0.25 — dense tool usage signals an agentic workflowCOMMENT
MEDIUMpkg/routing/classifier.go61 // Recent tool call density — indicates an ongoing agentic workflowCOMMENT
MEDIUMpkg/routing/features.go28 // history entries. A high density indicates an active agentic workflow.COMMENT
MEDIUMpkg/channels/README.md54├── manager.go # Unified orchestration: Worker queues, rate limiting, retries, Typing/Placeholder, shared HTTPCODE
MEDIUMpkg/channels/README.md741### 3.4 Inbound-side Typing/Reaction/Placeholder Auto-orchestrationCOMMENT
Excessive Try-Catch Wrapping6 hits · 6 pts
SeverityFileLineSnippetContext
LOWdocs/architecture/hooks/README.zh.md577 except Exception as exc:CODE
LOWdocs/architecture/hooks/plugin-tool-injection.zh.md173 except Exception as exc:CODE
LOWdocs/architecture/hooks/plugin-tool-injection.zh.md445 except Exception as e:CODE
LOWdocs/architecture/hooks/README.md577 except Exception as exc:CODE
LOWdocs/architecture/hooks/plugin-tool-injection.md173 except Exception as exc:CODE
LOWdocs/architecture/hooks/plugin-tool-injection.md445 except Exception as e:CODE
AI Slop Vocabulary2 hits · 6 pts
SeverityFileLineSnippetContext
MEDIUMpkg/credential/credential.go242// Uses filepath.IsLocal on the relative path for robust cross-platform traversal detection.COMMENT
MEDIUMpkg/routing/features.go83// the content string, so it is robust to any message format.COMMENT
Self-Referential Comments1 hit · 2 pts
SeverityFileLineSnippetContext
MEDIUMpkg/skills/loader_test.go411 content := "<!--\n# COPYRIGHT NOTICE\n# This file is part of the \"Universal Biomedical Skills\" project.\n# Copyright CODE