Repository Analysis

warpdotdev/Warp

Warp is an agentic development environment, born out of the terminal.

2.3 Likely human-written View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of warpdotdev/Warp, a Rust project with 63,156 GitHub stars. SynthScan v2.0 examined 1,634,006 lines of code across 4703 source files, recording 2635 pattern matches distributed across 20 syntactic categories. The overall adjusted score of 2.3 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).

2.3
Adjusted Score
2.3
Raw Score
100%
Time Factor
2026-07-14
Last Push
63.2K
Stars
Rust
Language
1.6M
Lines of Code
4.7K
Files
2.6K
Pattern Hits
2026-07-14
Scan Date
0.01
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 1HIGH 31MEDIUM 426LOW 2177

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 2635 distinct pattern matches across 20 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.

Over-Commented Block1831 hits · 1672 pts
SeverityFileLineSnippetContext
LOWCargo.toml421# traces with file/line info, but they omit the per-variable/type DWARF thatCOMMENT
LOWabout.toml41# invocation.COMMENT
LOWcrates/vim/src/find_char.rs1use warpui_core::text::TextBuffer;COMMENT
LOWcrates/vim/src/vim.rs81/// or enter ":help word" in Vim.COMMENT
LOWcrates/vim/src/vim.rs321/// This enum mirrors Vim's "MotionType", see:COMMENT
LOWcrates/settings/src/lib.rs321COMMENT
LOWcrates/settings/src/lib.rs341 fn toml_key() -> &'static str {COMMENT
LOWcrates/settings/src/lib.rs361 /// variants.COMMENT
LOWcrates/settings/src/manager.rs41 /// The key used in the TOML settings file (last segment of `toml_path`).COMMENT
LOWcrates/settings/src/macros.rs1//! This module defines a set of macros to standardize and simplify the processCOMMENT
LOWcrates/settings/src/macros.rs21//! define_settings_group!(ExampleGroup, settings: [COMMENT
LOWcrates/settings/src/macros.rs41//! ```COMMENT
LOWcrates/settings/src/macros.rs61//! [`Default`], [`PartialEq`], [`serde::Serialize`], andCOMMENT
LOWcrates/settings/src/macros.rs81//! define_settings_group!(EnumSettingsGroup, settings: [COMMENT
LOWcrates/settings/src/macros.rs101//! supported_platforms: SupportedPlatforms::ALL,COMMENT
LOWcrates/settings/src/macros.rs121//! define_settings_group!(ExampleGroup, settings: [COMMENT
LOWcrates/settings/src/macros.rs141//! });COMMENT
LOWcrates/settings/src/macros.rs161//! });COMMENT
LOWcrates/settings/src/macros.rs181//! struct MyView {}COMMENT
LOWcrates/syntax_tree/src/queries/indent_query.rs61 let mut previous_line = None;COMMENT
LOWcrates/repo_metadata/src/local_model.rs81///COMMENT
LOWcrates/repo_metadata/src/local_model.rs181enum RootWatchMode {COMMENT
LOWcrates/repo_metadata/src/local_model.rs201/// Linux. The root itself is never stored here — it is unregistered directly byCOMMENT
LOWcrates/repo_metadata/src/local_model.rs221 repositories: HashMap<StandardizedPath, IndexedRepoState>,COMMENT
LOWcrates/repo_metadata/src/local_model.rs241 ///COMMENT
LOWcrates/repo_metadata/src/local_model.rs1001 path: repo_root.clone(),COMMENT
LOWcrates/repo_metadata/src/watcher.rs141 pub fn is_directory_watched(&self, path: &StandardizedPath) -> bool {COMMENT
LOWcrates/repo_metadata/src/repository.rs61 root_dir: StandardizedPath,COMMENT
LOWcrates/repo_metadata/src/entry.rs241 ) -> Result<Self, BuildTreeError> {COMMENT
LOWcrates/repo_metadata/src/entry.rs941 }COMMENT
LOWcrates/repo_metadata/src/entry.rs1001 gitignores,COMMENT
LOWcrates/repo_metadata/src/repositories.rs41 repository_roots: HashSet<LocalOrRemotePath>,COMMENT
LOWcrates/repo_metadata/src/repositories.rs321struct GitRepoInfo {COMMENT
LOWcrates/repo_metadata/src/file_tree_update.rs1//! Serializable incremental file tree update types.COMMENT
LOWcrates/repo_metadata/src/file_tree_update.rs21COMMENT
LOWcrates/repo_metadata/src/file_tree_update.rs41/// Describes a subtree patch rooted at a specific parent directory.COMMENT
LOWcrates/websocket/src/lib.rs1//! A common websocket API that works for native and `wasm` targets.COMMENT
LOWcrates/watcher/src/lib.rs301COMMENT
LOWcrates/warp_web_event_bus/src/lib.rs21 use wasm_bindgen::prelude::*;COMMENT
LOWcrates/simple_logger/src/lib.rs21/// rotation happens *after* the write that crosses the threshold so log linesCOMMENT
LOWcrates/simple_logger/src/lib.rs61/// Shared state for a [`SimpleLogger`].COMMENT
LOWcrates/simple_logger/src/lib.rs261/// - each remaining `.N` has been renamed to `.{N+1}`COMMENT
LOWcrates/simple_logger/src/manager.rs121 /// Registers a logger with optional size-based rotation.COMMENT
LOWcrates/simple_logger/src/manager_tests.rs81 drop(logger);COMMENT
LOWcrates/simple_logger/src/manager_tests.rs221 }COMMENT
LOWcrates/simple_logger/src/lib_tests.rs1//! Tests for the size-based rotation helpers in `lib.rs`.COMMENT
LOWcrates/warp_server_auth/src/credentials.rs1//! Representation of Warp user credentials.COMMENT
LOWcrates/warp_server_auth/src/user.rs81/// This does not include authentication credentials, which are stored separatelyCOMMENT
LOWcrates/warp_server_auth/src/user.rs101 /// Type of principal (user or service account). Fetched fresh from the serverCOMMENT
LOWcrates/warp_server_auth/src/user.rs121COMMENT
LOWcrates/warp_server_auth/src/user/persistence.rs21 #[serde(rename = "id_token")]COMMENT
LOWcrates/asset_macro/src/lib.rs1//! This module defines a set of macros used to reference assets in Warp.COMMENT
LOWcrates/warp_server_client/src/iap.rs41 Missing,COMMENT
LOWcrates/warp_server_client/src/iap.rs241 let service_account_email = state.service_account_email().to_string();COMMENT
LOWcrates/warp_server_client/src/auth/mod.rs81#[cfg_attr(any(test, feature = "test-util"), automock)]COMMENT
LOWcrates/warp_completer/src/lib.rs21 pub buffer_text: String,COMMENT
LOWcrates/warp_completer/src/lib.rs41/// ...COMMENT
LOWcrates/warp_completer/src/parsers/hir/mod.rs221 /// specific completion spec.COMMENT
LOWcrates/warp_completer/src/parsers/simple/mod.rs261}COMMENT
LOWcrates/warp_completer/src/signatures/legacy/registry.rs21/// A simple structure to cache parsed command signatures. These are stored asCOMMENT
1771 more matches not shown…
Decorative Section Separators342 hits · 1118 pts
SeverityFileLineSnippetContext
MEDIUMcrates/repo_metadata/src/wrapper_model.rs98 // ── Event forwarding ─────────────────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/wrapper_model.rs193 // ── Unified query API ────────────────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/wrapper_model.rs304 // ── Local-specific operations ────────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/wrapper_model.rs394 // ── Remote-specific operations ─────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/remote_model.rs78 // ── Read-only query API ──────────────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/remote_model.rs152 // ── Write API (for future sync + test use) ───────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/file_tree_update_tests.rs10// ── Helpers ──────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/file_tree_update_tests.rs68// ── flatten_entry_metadata tests ─────────────────────────────────────COMMENT
MEDIUMcrates/repo_metadata/src/file_tree_update_tests.rs130// ── apply_file_tree_mutations update-generation tests ─────────────────COMMENT
MEDIUMcrates/repo_metadata/src/file_tree_update_tests.rs551// ── Lazy-load filtering test ─────────────────────────────────────────COMMENT
MEDIUMcrates/warp_files/src/text_file_reader_tests.rs23// ── Whole-file (no ranges) ──────────────────────────────────────────COMMENT
MEDIUMcrates/warp_files/src/text_file_reader_tests.rs67// ── Line ranges ─────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_files/src/text_file_reader_tests.rs177// ── Truncation with ranges ──────────────────────────────────────────COMMENT
MEDIUMcrates/warp_files/src/text_file_reader_tests.rs251// ── Trailing newline preservation ───────────────────────────────────COMMENT
MEDIUMcrates/warp_files/src/text_file_reader_tests.rs319// ── FileModel::read_text_file (async, real file) ───────────────COMMENT
MEDIUMcrates/warp_util/src/worktree_names.rs9 // ── Landforms & Terrain ─────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/worktree_names.rs60 // ── Desert Plants ───────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/worktree_names.rs96 // ── Desert Animals ──────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/worktree_names.rs133 // ── Minerals, Rocks & Metals ────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/worktree_names.rs164 // ── Southwest Culture & Spanish ─────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/worktree_names.rs189 // ── Weather & Sky ───────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/standardized_path.rs32 // ── Construction APIs ─────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/standardized_path.rs118 // ── Query APIs ───────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/standardized_path.rs216 // ── Conversion APIs ──────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/standardized_path.rs276// ── Helpers ──────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warp_util/src/path_tests.rs705// ── group_roots_by_common_ancestor tests ─────────────────────────────COMMENT
MEDIUMcrates/managed_secrets_wasm/src/lib.rs121// ── BYO (bring-your-own) credential sealing ─────────────────────────────────COMMENT
MEDIUMcrates/managed_secrets/src/envelope/hpke_impl.rs20// ── Cipher suite ────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/managed_secrets/src/envelope/hpke_impl.rs104// ── Public key manager (encryption) ─────────────────────────────────────────COMMENT
MEDIUMcrates/managed_secrets/src/envelope/hpke_impl.rs164// ── Private key manager (decryption) ────────────────────────────────────────COMMENT
MEDIUMcrates/managed_secrets/src/envelope/hpke_impl.rs253// ── Validation helpers ──────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warpui_core/examples/tui_file_viewer.rs101 // ── Header ──────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/warpui_core/examples/tui_file_viewer.rs118 // ── Body: lines from scroll offset ─────────────────────────────────COMMENT
MEDIUMcrates/warpui_core/examples/tui_file_viewer.rs132 // ── Wire up key handlers ────────────────────────────────────────────COMMENT
MEDIUM…re/src/elements/gui/new_scrollable/scrollable_tests.rs1306/// 100px┌──────┴───────┐COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs86// ┌──────┴───────┐COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs87// ┌─────┲━━━━━━━━━━━━━━┱────────┐ ┐COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs97// │ ┗━━━━━━━━━━━━━━┛ │ ┘COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs101// └─────────────────────────────┘COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs103// ┌──────┴───────┐COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs106// ┌───────────┲━━━━━━━━━━━━━━┱──┐ ┐COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs116// │ ┗━━━━━━━━━━━━━━┛ │ ┘COMMENT
MEDIUM…es/warpui_core/src/elements/gui/new_scrollable/util.rs120// └─────────────────────────────┘COMMENT
MEDIUMcrates/warpui/src/rendering/atlas/allocator.rs22/// ┌─────┬─────┬─────┬─────┬─────┐COMMENT
MEDIUMcrates/warpui/src/rendering/atlas/allocator.rs25/// ├─────┼─────┼─────┼─────┼─────┤COMMENT
MEDIUMcrates/warpui/src/rendering/atlas/allocator.rs28/// ├─────┼─────┼─────┼─────┴─────┤ <- Row height is tallest element in row; this isCOMMENT
MEDIUMcrates/warpui/src/rendering/atlas/allocator.rs31/// └─────┴─────┴─────┴───────────┘ fit in the row.COMMENT
MEDIUMcrates/remote_server/src/lib.rs20 // ── ClientMessage constructors ──────────────────────────────────COMMENT
MEDIUMcrates/remote_server/src/manager.rs913 // ── Typed host-scoped requests ──────────────────────────────────COMMENT
MEDIUMcrates/remote_server/src/manager.rs1071 // ── Code-review git operations ──────────────────────────────────COMMENT
MEDIUMcrates/remote_server/src/repo_metadata_proto.rs16// ── Rust → Proto ────────────────────────────────────────────COMMENT
MEDIUMcrates/remote_server/src/repo_metadata_proto.rs174// ── Proto → Rust ──────────────────────────────────────────────────COMMENT
MEDIUMcrates/remote_server/src/codebase_index_proto.rs31// ── Rust → Proto ────────────────────────────────────────────COMMENT
MEDIUMcrates/remote_server/src/codebase_index_proto.rs71// ── Proto → Rust ──────────────────────────────────────────────────COMMENT
MEDIUMcrates/ai/src/api_keys_tests.rs115// ── serde round-trip ────────────────────────────────────────────COMMENT
MEDIUMcrates/ai/src/api_keys_tests.rs169// ── has_any_key ─────────────────────────────────────────────────COMMENT
MEDIUMcrates/ai/src/api_keys_tests.rs203// ── provider_key_count ─────────────────────────────────────────COMMENT
MEDIUMcrates/ai/src/api_keys_tests.rs236// ── custom_model_providers_for_request ──────────────────────────COMMENT
MEDIUMcrates/ai/src/api_keys_tests.rs344// ── display_label fallback ─────────────────────────────────────COMMENT
MEDIUMcrates/ai/src/api_keys_tests.rs376// ── api_keys_for_request ────────────────────────────────────────COMMENT
282 more matches not shown…
Structural Annotation Overuse150 hits · 261 pts
SeverityFileLineSnippetContext
LOWcrates/integration/src/test/settings_file_errors.rs121 // Step 1: No banner initially.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs134 // Step 2: Overwrite with invalid TOML to trigger the error banner.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs155 // Step 3: Fix the file — banner should disappear.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs200 // Step 1: Verify no banner with valid settings.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs215 // Step 2: Change the value to something invalid.COMMENT
LOWcrates/integration/src/test/remote_server.rs255 // Step 1: Write a file using RemoteServerClient::write_file proto APICOMMENT
LOWcrates/integration/src/test/remote_server.rs266 // Step 2: Verify the file was written by reading it via shell commandCOMMENT
LOWcrates/integration/src/test/remote_server.rs274 // Step 3: Clean upCOMMENT
LOWcrates/integration/src/test/settings_private.rs40 // Step 1: Set a public setting (FontSize) and a private settingCOMMENT
LOWcrates/integration/src/test/settings_private.rs58 // Step 2: Verify TOML file contains the public setting but not theCOMMENT
LOWcrates/integration/src/test/settings_private.rs78 // Step 3: Verify JSON prefs contain the private setting.COMMENT
LOWcrates/integration/src/test/settings_private.rs89 // Step 4: Set a second pair — public CodeAsDefaultEditor, privateCOMMENT
LOWcrates/integration/src/test/settings_private.rs105 // Step 5: Verify second public setting is in TOML, second private isCOMMENT
LOWcrates/integration/src/test/settings_private.rs157 // Step 1: Verify the app loaded the pre-populated private settings.COMMENT
LOWcrates/integration/src/test/settings_private.rs177 // Step 2: Write a public setting so the TOML file has content.COMMENT
LOWcrates/integration/src/test/settings_private.rs190 // Step 3: Verify TOML has the public setting but not the private ones.COMMENT
LOWcrates/integration/src/test/settings_private.rs211 // Step 4: Verify JSON prefs still have both private settings.COMMENT
LOWcrates/integration/src/test/settings_file_hot_reload.rs46 // Step 1: Confirm the initial value was loaded on startup. ThisCOMMENT
LOWcrates/integration/src/test/settings_file_hot_reload.rs62 // Step 2: Rewrite the file with a different valid value and wait forCOMMENT
LOWcrates/integration/src/test/settings_file_hot_reload.rs83 // Step 3: Rewrite a second time to confirm the reload is repeatableCOMMENT
LOWcrates/editor/src/content/buffer_tests.rs14180 // Step 1: Simulate initial file load — populate buffer and set version.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14186 // Step 2: User edits the buffer.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14199 // Step 3: Simulate save — capture the current buffer version as the base.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14203 // Step 4: Simulate post-save server push with NO edits.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14210 // Step 5: The caller (GlobalBufferModel) would set base_content_version = push_version.COMMENT
LOWcrates/onboarding/src/callout/model.rs69 /// Step 1: terminal input with natural language support.COMMENT
LOWapp/assets/bundled/bootstrap/bash.sh73 # WARNING: This variable is no longer used and should not be relied upon.COMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1326 // Step 1: create a real temp settings.toml. The file's hash isCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1335 // Step 2: seed the stored hash with a DIFFERENT value so theCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1341 // Step 3: simulate the user's in-memory local values matchingCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1353 // Step 4: seed the fake cloud with a stale value. If theCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1364 // Step 5: construct the syncer via the production entry pointCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1378 // Step 6: trigger the initial load with the fake's currentCOMMENT
LOWapp/src/auth/login_slide.rs501 // Step 1: Select auth pathwayCOMMENT
LOWapp/src/auth/login_slide.rs713 // Step 2: Browser openCOMMENT
LOWapp/src/auth/login_slide.rs879 // Step 3: Privacy settings (inline in left column)COMMENT
LOWapp/src/terminal/input.rs2436 // NOTE: This method is the SINGLE point that wires a (lazily- or eagerly-created) ambientCOMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs720 // Step 1: register a child (the registration step the streamer-sideCOMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs734 // Step 2: a ChildStatusChanged event lands for the same run_id.COMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs1133 // Step 1: register a child while the parent has no orchestrationCOMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs1160 // Step 2: assign the parent's run id. `assign_run_id_for_conversation`COMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs1182 // Step 3: the child's `parent_agent_id` is now stamped with theCOMMENT
LOWapp/src/terminal/model/blockgrid.rs513 /// NOTE: This function does not respect displayed/filtered content and returns allCOMMENT
LOWapp/src/terminal/model/blockgrid.rs535 /// NOTE: This function does not obfuscate secrets.COMMENT
LOWapp/src/terminal/model/blockgrid.rs556 /// NOTE: This function forces all secrets in grids to be obfuscated. We need thisCOMMENT
LOWapp/src/autoupdate/mod_tests.rs464 // Step 1: Successful download of v2.COMMENT
LOWapp/src/autoupdate/mod_tests.rs474 // Step 2: Failed download of v3 — v2 preserved.COMMENT
LOWapp/src/autoupdate/mod_tests.rs484 // Step 3: Retry v3 succeeds — replaces v2.COMMENT
LOWapp/src/ai/bedrock_credentials.rs47 // Step 1: Mint a new OIDC identity token via the model context.COMMENT
LOWapp/src/ai/bedrock_credentials.rs65 // Step 2: Exchange the OIDC token for fresh STS temporary credentials.COMMENT
LOWapp/src/ai/bedrock_credentials.rs94 // Step 3: Update ApiKeyManager with the fresh credentials.COMMENT
LOWapp/src/ai/agent_sdk/driver/bedrock_credentials.rs47 // Step 1: Mint a new OIDC identity token via the model context.COMMENT
LOWapp/src/ai/agent_sdk/driver/bedrock_credentials.rs65 // Step 2: Exchange the OIDC token for fresh STS temporary credentials.COMMENT
LOWapp/src/ai/agent_sdk/driver/bedrock_credentials.rs86 // Step 3: Update ApiKeyManager with the fresh credentials.COMMENT
LOWapp/src/ai/agent_management/telemetry.rs14 /// Step 1: Create environment (slash command)COMMENT
LOWapp/src/ai/agent_management/telemetry.rs16 /// Step 1: Create environment (CLI command)COMMENT
LOWapp/src/ai/agent_management/telemetry.rs18 /// Step 2: Create Slack integrationCOMMENT
LOWapp/src/ai/agent_management/telemetry.rs20 /// Step 2: Create Linear integrationCOMMENT
LOWapp/src/ai/blocklist/block/secret_redaction_tests.rs600 // Step 1: Detect secrets in the textCOMMENT
LOWapp/src/ai/blocklist/block/secret_redaction_tests.rs616 // Step 2: Prepare for redaction by inserting the detected secretsCOMMENT
90 more matches not shown…
AI Slop Vocabulary39 hits · 120 pts
SeverityFileLineSnippetContext
MEDIUMcrates/http_client/src/lib.rs90 // single-threaded (and we don't leverage WebWorkers for async execution in WoW).COMMENT
MEDIUMcrates/warp_completer/src/parsers/mod.rs84/// A `LiteRootNode` is the root node of the parsed AST. Essentially a series of `LiteGroup`s,COMMENT
MEDIUMcrates/warp_completer/src/signatures/legacy/mod.rs78 /// and generators. This does not utilize any data from theCOMMENT
MEDIUMcrates/integration/src/test/typeahead.rs310 // The most robust way of handling this is to just treat it as a flake.COMMENT
MEDIUMcrates/markdown_parser/src/markdown_parser.rs1519 // text parser more robust to new kinds of Markdown syntax, which should all be indicated withCOMMENT
MEDIUMcrates/local_control/src/discovery.rs269 // `list_instances_from_dir` is the robust cleanup path: it removes staleCOMMENT
MEDIUMcrates/warpui_core/src/ui_components/button.rs17/// robust to RTL languages.COMMENT
MEDIUMcrates/warpui_core/src/elements/gui/stack/mod.rs193 // (Absolutely positioned elements must have an `OffsetPositioning` parent_data.COMMENT
MEDIUM…s/warpui/src/windowing/winit/fonts/swash_rasterizer.rs108 // TODO(alokedesai): Ensure our font rasterization code is robust to returned formats thatCOMMENT
MEDIUM…ates/warpui_extras/src/user_preferences/file_backed.rs12/// Note that this is currently not robust to external modifications toCOMMENT
MEDIUMcrates/warp_cli/src/lib.rs64 /// IDs can be reused, so a process handle is more robust.COMMENT
MEDIUMcrates/warp_cli/src/agent.rs453 #[arg(long = "harness", value_name = "HARNESS", default_value_t = Harness::Oz, hide = true)]COMMENT
MEDIUMcrates/warp_cli/src/agent.rs607 #[arg(long = "harness", value_name = "HARNESS", default_value_t = Harness::Oz)]COMMENT
MEDIUMcrates/editor/test_data/test_rust_file.rs6946 /// # process_data("rust").expect("why is the test harness OOMing on 4 bytes?");COMMENT
MEDIUMcrates/editor/test_data/test_rust_file.rs6987 /// # process_data("rust").expect("why is the test harness OOMing on 4 bytes?");COMMENT
MEDIUMcrates/editor/src/render/model/table_offset_map.rs291 /// which makes it robust to:COMMENT
MEDIUMapp/Cargo.toml356# targeting wasm and leverage the fact that cargo enables the superset of enabled features for a given crate.COMMENT
LOWapp/assets/bundled/bootstrap/bash_body.sh398 # we swapped empty/no-arguments to current background process), so we can just use thatCOMMENT
LOWapp/assets/bundled/bootstrap/bash_body.sh1262 # still work, just create a length 1 array.COMMENT
MEDIUMapp/assets/bundled/bootstrap/fish.sh96 # strings on $IFS into lists). Essentially, setting IFS to the empty stringCOMMENT
MEDIUMapp/assets/bundled/bootstrap/bash.sh427 # the side effects of doing this to give the user a seamless experience.COMMENT
MEDIUMapp/src/crash_recovery.rs351 // more robust than passing a process ID, as Windows can reuseCOMMENT
MEDIUMapp/src/settings/ai.rs1933 // servers should surface an explicit, auditable opt-in. A more robustCOMMENT
MEDIUMapp/src/settings/cloud_preferences_syncer.rs585 // guard makes this a genuine one-time override — robustCOMMENT
MEDIUMapp/src/integration_testing/terminal/assertion.rs499 // but ongoing work to consolidate PTY writes should be a more robustCOMMENT
MEDIUMapp/src/util/windows.rs171 // We could be more robust in our search by iterating over all subdirectoriesCOMMENT
MEDIUMapp/src/auth/auth_manager.rs454 // TODO(alokedesai): Investigate a more robust way of handling eventsCOMMENT
MEDIUMapp/src/terminal/input_tests.rs2675/// BlockList, it was easier to utilize the boilerplate local to this module. Long-term, some ofCOMMENT
MEDIUMapp/src/terminal/local_tty/unix.rs360 // Set whether or not we should utilize the SSH wrapper in this shell.COMMENT
MEDIUMapp/src/terminal/writeable_pty/pty_controller.rs470 // TODO(CORE-2099): Figure out a more robust solution here. Fish usersCOMMENT
MEDIUMapp/src/terminal/warpify/success_block.rs267 // yet have a robust way of ensuring that every aspect of text selection is implementedCOMMENT
MEDIUMapp/src/terminal/model/grid/filtering.rs829 /// variants are added, a more robust algorithm is needed.COMMENT
MEDIUMapp/src/ai/cloud_agent_settings.rs24#[schemars(description = "Selected third-party harness model.")]COMMENT
MEDIUMapp/src/ai/agent_sdk/driver.rs564 #[error("Harness '{harness}' setup failed: {reason}")]COMMENT
MEDIUMapp/src/ai/agent_sdk/driver.rs566 #[error("Harness '{harness}' config setup failed")]COMMENT
MEDIUMapp/src/ai/agent_sdk/driver.rs572 #[error("Harness '{harness}' auth preflight failed")]COMMENT
MEDIUMapp/src/ai/agent_sdk/driver.rs578 #[error("Harness '{harness}' reported a runtime failure matching '{pattern}'")]COMMENT
MEDIUMapp/src/ai/agent/api.rs145// targeting wasm because the browser is single-threaded (and we don't leverage WebWorkers for asyncCOMMENT
MEDIUMapp/src/notebooks/editor/notebook_command.rs560 /// Returns whether or not we should display the dropdown selector for this block. Essentially, we want to displayCOMMENT
Synthetic Comment Markers16 hits · 118 pts
SeverityFileLineSnippetContext
HIGHapp/src/util/git.rs1070/// Trims an AI-generated PR title to a single line and caps its length.COMMENT
HIGHapp/src/workflows/workflow_view.rs2425 // AI-generated workflow metadata is only supported for Command workflows currently.COMMENT
HIGHapp/src/workflows/workflow_view.rs2775 // Since suggestion generated by AI is non-deterministic, we should make sure to handle eachCOMMENT
HIGHapp/src/search/command_search/searcher.rs21/// `cloud_workflows_data_source`). Local/AI-generated workflows are producedCOMMENT
HIGHapp/src/search/command_search/warp_ai.rs143/// - asynchronous: the asynchronous results are AI generated workflowsCOMMENT
HIGH…earch/command_search/workflows/workflow_search_item.rs27/// AI-generated) don't live in CloudModel, so they must carry owned data.COMMENT
HIGHapp/src/ai_assistant/mod.rs95 // Note that we use the AI generated description as the _title_ of the workflow.COMMENT
HIGHapp/src/ai/agent/mod.rs58/// A server supplied ID for a specific AI generated output.COMMENT
HIGHapp/src/ai/blocklist/block.rs5337 // Auto expansion timers only apply to requested commands, as requested actions thatCOMMENT
HIGHapp/src/ai/blocklist/block.rs6081 /// selections made within inline action views (such as requested edits, embedded code blocks,COMMENT
HIGH…ocklist/inline_action/requested_command_attribution.rs1//! Module to attribute AI-generated requested commandsCOMMENT
HIGHapp/src/drive/workflows/ai_assist.rs229 // Since suggestion generated by AI is non-deterministic, we should make sure to handle eachCOMMENT
HIGHapp/src/code_review/git_dialog/commit.rs239/// Populates the commit message editor from an AI-generated message. SharedCOMMENT
HIGHapp/src/code_review/diff_state/mod.rs406 /// An AI-generated commit message arrived from the remote daemon (issuedCOMMENT
HIGHapp/src/code_review/diff_state/mod.rs817 /// When `autogenerate_content` is set, the PR title/body are AI-generated,COMMENT
HIGH…igma-generate-library/references/code-connect-setup.md2424. In the Inspect panel, the code snippet should show the Code Connect output instead of auto-generated code.CODE
Verbosity Indicators60 hits · 104 pts
SeverityFileLineSnippetContext
LOWcrates/integration/src/test/settings_file_errors.rs121 // Step 1: No banner initially.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs134 // Step 2: Overwrite with invalid TOML to trigger the error banner.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs155 // Step 3: Fix the file — banner should disappear.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs200 // Step 1: Verify no banner with valid settings.COMMENT
LOWcrates/integration/src/test/settings_file_errors.rs215 // Step 2: Change the value to something invalid.COMMENT
LOWcrates/integration/src/test/remote_server.rs255 // Step 1: Write a file using RemoteServerClient::write_file proto APICOMMENT
LOWcrates/integration/src/test/remote_server.rs266 // Step 2: Verify the file was written by reading it via shell commandCOMMENT
LOWcrates/integration/src/test/remote_server.rs274 // Step 3: Clean upCOMMENT
LOWcrates/integration/src/test/settings_private.rs40 // Step 1: Set a public setting (FontSize) and a private settingCOMMENT
LOWcrates/integration/src/test/settings_private.rs58 // Step 2: Verify TOML file contains the public setting but not theCOMMENT
LOWcrates/integration/src/test/settings_private.rs78 // Step 3: Verify JSON prefs contain the private setting.COMMENT
LOWcrates/integration/src/test/settings_private.rs89 // Step 4: Set a second pair — public CodeAsDefaultEditor, privateCOMMENT
LOWcrates/integration/src/test/settings_private.rs105 // Step 5: Verify second public setting is in TOML, second private isCOMMENT
LOWcrates/integration/src/test/settings_private.rs157 // Step 1: Verify the app loaded the pre-populated private settings.COMMENT
LOWcrates/integration/src/test/settings_private.rs177 // Step 2: Write a public setting so the TOML file has content.COMMENT
LOWcrates/integration/src/test/settings_private.rs190 // Step 3: Verify TOML has the public setting but not the private ones.COMMENT
LOWcrates/integration/src/test/settings_private.rs211 // Step 4: Verify JSON prefs still have both private settings.COMMENT
LOWcrates/integration/src/test/settings_file_hot_reload.rs46 // Step 1: Confirm the initial value was loaded on startup. ThisCOMMENT
LOWcrates/integration/src/test/settings_file_hot_reload.rs62 // Step 2: Rewrite the file with a different valid value and wait forCOMMENT
LOWcrates/integration/src/test/settings_file_hot_reload.rs83 // Step 3: Rewrite a second time to confirm the reload is repeatableCOMMENT
LOW…ai/src/index/full_source_code_embedding/sync_client.rs219 // We need to check if nodes are synced in incremental sync since the to-be-updateCOMMENT
LOWcrates/editor/src/content/buffer_tests.rs14180 // Step 1: Simulate initial file load — populate buffer and set version.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14186 // Step 2: User edits the buffer.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14199 // Step 3: Simulate save — capture the current buffer version as the base.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14203 // Step 4: Simulate post-save server push with NO edits.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs14210 // Step 5: The caller (GlobalBufferModel) would set base_content_version = push_version.COMMENT
LOWcrates/onboarding/src/callout/model.rs69 /// Step 1: terminal input with natural language support.COMMENT
LOWcrates/onboarding/src/callout/model.rs71 /// Step 2: "Agent Mode" (Agent intention only).COMMENT
LOWapp/src/vim_registers.rs72 // If this is coming from the system clipboard, we need to check if the content was yankedCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1326 // Step 1: create a real temp settings.toml. The file's hash isCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1335 // Step 2: seed the stored hash with a DIFFERENT value so theCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1341 // Step 3: simulate the user's in-memory local values matchingCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1353 // Step 4: seed the fake cloud with a stale value. If theCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1364 // Step 5: construct the syncer via the production entry pointCOMMENT
LOWapp/src/settings/cloud_preferences_syncer_tests.rs1378 // Step 6: trigger the initial load with the fake's currentCOMMENT
LOWapp/src/auth/login_slide.rs501 // Step 1: Select auth pathwayCOMMENT
LOWapp/src/auth/login_slide.rs713 // Step 2: Browser openCOMMENT
LOWapp/src/auth/login_slide.rs879 // Step 3: Privacy settings (inline in left column)COMMENT
LOWapp/src/terminal/history.rs871 // Otherwise, we need to check if the history entry is from this session.COMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs720 // Step 1: register a child (the registration step the streamer-sideCOMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs734 // Step 2: a ChildStatusChanged event lands for the same run_id.COMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs1133 // Step 1: register a child while the parent has no orchestrationCOMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs1160 // Step 2: assign the parent's run id. `assign_run_id_for_conversation`COMMENT
LOW…red_session/viewer/orchestration_viewer_model_tests.rs1182 // Step 3: the child's `parent_agent_id` is now stamped with theCOMMENT
LOWapp/src/autoupdate/mod_tests.rs464 // Step 1: Successful download of v2.COMMENT
LOWapp/src/autoupdate/mod_tests.rs474 // Step 2: Failed download of v3 — v2 preserved.COMMENT
LOWapp/src/autoupdate/mod_tests.rs484 // Step 3: Retry v3 succeeds — replaces v2.COMMENT
LOWapp/src/ai/bedrock_credentials.rs47 // Step 1: Mint a new OIDC identity token via the model context.COMMENT
LOWapp/src/ai/bedrock_credentials.rs65 // Step 2: Exchange the OIDC token for fresh STS temporary credentials.COMMENT
LOWapp/src/ai/bedrock_credentials.rs94 // Step 3: Update ApiKeyManager with the fresh credentials.COMMENT
LOWapp/src/ai/agent_sdk/driver/bedrock_credentials.rs47 // Step 1: Mint a new OIDC identity token via the model context.COMMENT
LOWapp/src/ai/agent_sdk/driver/bedrock_credentials.rs65 // Step 2: Exchange the OIDC token for fresh STS temporary credentials.COMMENT
LOWapp/src/ai/agent_sdk/driver/bedrock_credentials.rs86 // Step 3: Update ApiKeyManager with the fresh credentials.COMMENT
LOWapp/src/ai/agent_management/telemetry.rs14 /// Step 1: Create environment (slash command)COMMENT
LOWapp/src/ai/agent_management/telemetry.rs16 /// Step 1: Create environment (CLI command)COMMENT
LOWapp/src/ai/agent_management/telemetry.rs18 /// Step 2: Create Slack integrationCOMMENT
LOWapp/src/ai/agent_management/telemetry.rs20 /// Step 2: Create Linear integrationCOMMENT
LOWapp/src/ai/blocklist/block/secret_redaction_tests.rs600 // Step 1: Detect secrets in the textCOMMENT
LOWapp/src/ai/blocklist/block/secret_redaction_tests.rs616 // Step 2: Prepare for redaction by inserting the detected secretsCOMMENT
LOWapp/src/ai/blocklist/block/secret_redaction_tests.rs636 // Step 3: Redact the secrets in the textCOMMENT
Modern AI Meta-Vocabulary30 hits · 93 pts
SeverityFileLineSnippetContext
MEDIUMREADME.md34[Warp](https://www.warp.dev) is an agentic development environment, born out of the terminal. Use Warp's built-in codingCODE
MEDIUMcrates/warp_multi_agent_client/src/lib.rs13 #[error("Failed to authenticate multi-agent request")]COMMENT
MEDIUMcrates/warp_multi_agent_client/src/lib.rs16 #[error("Failed to resolve ambient headers for multi-agent request")]COMMENT
MEDIUMcrates/warp_multi_agent_client/src/lib.rs19 #[error("Failed to decode base64 multi-agent response event")]COMMENT
MEDIUMcrates/warp_multi_agent_client/src/lib.rs22 #[error("Failed to decode protobuf multi-agent response event")]COMMENT
MEDIUMcrates/warp_cli/src/lib.rs117 about = r#"The orchestration platform for cloud agentsCODE
MEDIUMapp/src/terminal/shared_session/share_modal/body.rs117 // the size here accordingly. That being said, we still have guardrails on bothCOMMENT
MEDIUMspecs/QUALITY-701/PRODUCT.md64### Coordination with the rest of the orchestration UICOMMENT
MEDIUMspecs/QUALITY-701/TECH.md58### 2. Shared orchestration helpersCOMMENT
MEDIUMspecs/APP-4365/TECH.md86### Prompt display mismatch for `/plan` and `/orchestrate`COMMENT
MEDIUMspecs/QUALITY-715/TECH.md1# QUALITY-715: Do not auto-open details panel for orchestration child shared sessionsCOMMENT
MEDIUMspecs/QUALITY-715/TECH.md18## Option A: Explicit per-view auto-open policy set by parent orchestration UI pathsCOMMENT
MEDIUMspecs/APP-3743/TECH.md56### 4. Hover-driven sidecar orchestrationCOMMENT
MEDIUMspecs/QUALITY-671/TECH.md1# Tech spec: roll up orchestration credit usage in the agent-mode footerCOMMENT
MEDIUMspecs/replay-agent-events-on-restore/PRODUCT.md30### V1 orchestration (local lifecycle dispatch)COMMENT
MEDIUMspecs/APP-4318/TECH.md98### PR 1: feature flag, API client, and run/execution-aware model scaffoldingCOMMENT
MEDIUMspecs/APP-4318/TECH.md101### PR 2: ambient follow-up orchestration without the visible entrypointCOMMENT
MEDIUMspecs/APP-4386/TECH.md170#### 2d. Modify `SshTransport::install_binary` to orchestrate the fallbackCOMMENT
MEDIUMspecs/APP-4579/PRODUCT.md20### Cloud agent is told it lost its orchestration context, on the first turn onlyCOMMENT
MEDIUMspecs/APP-4579/PRODUCT.md26### Invariant: orchestration and snapshot prompts compose cleanlyCOMMENT
MEDIUMspecs/QUALITY-768/TECH.md1# QUALITY-768: Restore orchestration session stateCOMMENT
MEDIUMspecs/QUALITY-768/TECH.md37### 1. Eager orchestration-child hydration in `initialize_historical_conversations`COMMENT
MEDIUMspecs/APP-4319/TECH.md25### Feature flag scaffoldingCOMMENT
MEDIUMspecs/QUALITY-919/TECH.md1# TECH: wait_for_events parent registration for owner-side orchestration eventsCOMMENT
MEDIUMspecs/QUALITY-780/TECH.md187#### 8.4 Inbound orchestration events while waitingCOMMENT
MEDIUMspecs/orch-viewer-polling/TECH.md21### Other orchestration delivery for referenceCOMMENT
MEDIUM…undled/skills/claude-api/python/claude-api/tool-use.md28# The tool runner handles the agentic loop automaticallyCOMMENT
MEDIUM…ed/skills/claude-api/typescript/claude-api/tool-use.md31// The tool runner handles the agentic loop and returns the final messageCOMMENT
MEDIUM…/bundled/skills/claude-api/shared/tool-use-concepts.md69# Handle pause_turn in your agentic loopCOMMENT
MEDIUMresources/bundled/skills/claude-api/shared/models.md13m.max_input_tokens # context window (int)CODE
Magic Placeholder Names14 hits · 70 pts
SeverityFileLineSnippetContext
HIGHresources/bundled/skills/claude-api/go/claude-api.md24 option.WithAPIKey("your-api-key"),CODE
HIGH…/bundled/skills/claude-api/go/managed-agents/README.md28 option.WithAPIKey("your-api-key"),CODE
HIGH…/bundled/skills/claude-api/python/claude-api/README.md18client = anthropic.Anthropic(api_key="your-api-key")CODE
HIGH…dled/skills/claude-api/python/managed-agents/README.md22client = anthropic.Anthropic(api_key="your-api-key")CODE
HIGH…dled/skills/claude-api/typescript/claude-api/README.md18const client = new Anthropic({ apiKey: "your-api-key" });CODE
HIGH…/skills/claude-api/typescript/managed-agents/README.md22const client = new Anthropic({ apiKey: "your-api-key" });CODE
HIGHresources/bundled/skills/claude-api/java/claude-api.md34 .apiKey("your-api-key")CODE
HIGH…bundled/skills/claude-api/php/managed-agents/README.md22$client = new Client(apiKey: 'your-api-key');CODE
HIGHresources/bundled/skills/claude-api/curl/examples.md8export ANTHROPIC_API_KEY="your-api-key"CODE
HIGH…urces/bundled/skills/claude-api/curl/managed-agents.md8export ANTHROPIC_API_KEY="your-api-key"CODE
HIGHresources/bundled/skills/claude-api/ruby/claude-api.md20client = Anthropic::Client.new(api_key: "your-api-key")CODE
HIGH…undled/skills/claude-api/ruby/managed-agents/README.md22client = Anthropic::Client.new(api_key: "your-api-key")CODE
HIGHresources/bundled/skills/oz-platform/SKILL.md94 --header 'Authorization: Bearer YOUR_API_KEY' \CODE
HIGHresources/bundled/skills/oz-platform/SKILL.md106 --header 'Authorization: Bearer YOUR_API_KEY' \CODE
Hyper-Verbose Identifiers59 hits · 53 pts
SeverityFileLineSnippetContext
LOW…enerate-library/scripts/createComponentWithVariants.js36async function createComponentWithVariants(config, runId) {CODE
LOW…kills/figma/figma-use/references/component-patterns.md425async function getLocalComponentMetadata(componentId) {CODE
LOW…kills/figma/figma-use/references/component-patterns.md448async function getPublishedComponentMetadata(componentKey) {CODE
LOW…ls/figma/figma-use/references/effect-style-patterns.md107function applyEffectStyleToMatchingNodes(styleId, nodeNamePattern) {CODE
LOW…/figma/figma-use/references/plugin-api-standalone.d.ts210 * function someNestedFunctionCallThatClosesThePlugin() {COMMENT
LOW…skills/figma/figma-use/references/variable-patterns.md285async function listVariableCollectionsAndVariables() {CODE
LOW…ills/figma/figma-use/references/text-style-patterns.md187async function applyTextStyleToMatchingNodes(styleId, nodeNamePattern) {CODE
LOW…dled/skills/claude-api/shared/managed-agents-events.md84def connect_with_consolidation(client, session_id):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py49 def test_line_mismatches_original_matches(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py52 def test_both_mismatch_falls_back_to_last_reachable(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py56 def test_empty_hunk_returns_none(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py59 def test_none_candidates_falls_back_to_last_reachable(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py76 def test_line_mismatches_original_matches(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py81 def test_both_mismatch_returns_last_reachable(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py87 def test_both_mismatch_no_reachable_lines_returns_none(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py93 def test_empty_hunk_returns_none(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py98 def test_both_line_and_original_none_falls_back(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py109 def test_start_line_falls_back_to_original(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py117 def test_side_defaults_to_right(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py125 def test_start_line_cleared_when_inverted(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py144 def test_start_line_kept_when_not_inverted(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py154 def test_start_line_cleared_when_equal_to_end(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py164 def test_start_fallback_exceeds_end_on_left_side(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py214 def test_fork_pr_resolves_to_base_repo(self):CODE
LOW…dled/skills/pr-comments/scripts/test_fetch_comments.py181 def test_regression_outdated_comment_falls_back(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py31 def test_splits_and_strips_trailing_empties(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py52 def test_header_with_context_text(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py56 def test_omitted_counts_default_to_one(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py64 def test_only_old_count_omitted(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py67 def test_only_new_count_omitted(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py84 def test_small_hunk_unchanged(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py88 def test_invalid_header_unchanged(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py92 def test_target_not_found_unchanged(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py102 def test_trims_to_context_window(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py150 def test_preserves_header_context_text(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py159 def test_trailing_empty_lines_stripped(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py170 def test_right_side_skips_deletions(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py221 def test_keeps_full_range_plus_context(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py235 def test_range_start_at_hunk_boundary(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py279 def test_no_newline_marker_does_not_shift_line_numbers(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py329 def test_isolates_single_context_line(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py393 def test_target_within_range_left(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py514 def test_target_in_first_hunk(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py523 def test_multi_hunk_line_in_hunk(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py572 def test_trim_preserves_plus_dash_line(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py577 def test_trim_header_counts_plus_dash_as_new(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py587 def test_line_in_hunk_finds_plus_dash_line(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py591 def test_last_reachable_line_includes_plus_dash(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py137 def test_preserves_whitespace(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py188 def test_left_side_skips_additions(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py201 def test_left_targets_deletion(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py294 def test_no_newline_marker_excluded_from_counts(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py372 def test_multiline_range_no_context(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py405 def test_right_target_in_deletion_only_hunk(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py416 def test_target_past_hunk_end(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py430 def test_target_before_hunk_start(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py503 def test_target_in_second_hunk(self):CODE
LOW…dled/skills/pr-comments/scripts/test_trim_diff_hunk.py561 def test_annotate_hunk_body_classifies_plus_dash_as_addition(self):STRING
LOWscript/run-clang-format.py116def run_clang_format_diff_wrapper(args, file):CODE
Self-Referential Comments11 hits · 33 pts
SeverityFileLineSnippetContext
MEDIUMcrates/settings/src/macros.rs13//! ## Defining a new setting groupCOMMENT
MEDIUMcrates/integration/tests/data/test_launch_config.yaml7# This file defines your launch configurationCOMMENT
MEDIUMcrates/warp_search_core/src/macros.rs44/// ## Defining a new search schemaCOMMENT
MEDIUMapp/assets/bundled/bootstrap/fish.sh272 # This function is triggered by both "fish_prompt" and "fish_posterror" events. If it wasCOMMENT
MEDIUMapp/assets/bundled/bootstrap/bash.sh15 # This function defines all the bash-preexec functions and sets up a bunch of the environment variables.COMMENT
MEDIUMapp/assets/bundled/bootstrap/bash.sh152 # This function is installed as part of the PROMPT_COMMAND;COMMENT
MEDIUMapp/assets/bundled/bootstrap/bash.sh160 # This function is installed as part of the PROMPT_COMMAND.COMMENT
MEDIUMapp/assets/bundled/bootstrap/bash.sh220 # This function is installed as the DEBUG trap. It is invoked before eachCOMMENT
MEDIUMapp/src/user_config/mod.rs33# This file defines your launch configuration.COMMENT
MEDIUMscript/sentry_create_release.sh14 # Create the new release.COMMENT
MEDIUM.github/workflows/create_release.yml248 # Create a tar archive instead of simply using upload-artifact so we canCOMMENT
Redundant / Tautological Comments13 hits · 22 pts
SeverityFileLineSnippetContext
LOWapp/assets/bundled/bootstrap/bash_body.sh939 # Check if the warp apt source file has been renamed to `warpdotdev.list.distUpgrade` due to an ubuntu version updatCOMMENT
LOWapp/assets/bundled/bootstrap/bash_body.sh1385 # Check if Starship is active for Bash. Note that another prompt could still be overriding Starship, however,COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh1252 # Check if the shell's native "vi" option has been set.COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh1256 # Check if nvim has been set as the default editor.COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh1263 # Check if the zsh line editor bindings include vi-related commands.COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh1267 # Check if the zsh-vi-mode plugin is being used.COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh664 # Check if the warp apt source file has been renamed to `warpdotdev.list.distUpgrade` due to an ubuntu version update.COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh1309 # Set history to flush after every commandCOMMENT
LOWapp/assets/bundled/bootstrap/fish.sh7# Set fish_private_mode to prevent saving to history.COMMENT
LOWapp/assets/bundled/bootstrap/fish.sh227 # Check if warp_original_fish_right_prompt was backed up before redefining fish_right_promptCOMMENT
LOWapp/assets/bundled/bootstrap/fish.sh580# Check if the warp apt source file has been renamed to `warpdotdev.list.distUpgrade` due to an ubuntu version update.COMMENT
LOWapp/assets/bundled/bootstrap/zsh.sh2 # Set PS2 to an empty string to prevent zsh from printing a secondary promptCOMMENT
LOW.github/workflows/delete_release.yml77 # Check if any key in the changelogs section for this channel starts with the version baseCOMMENT
Fake / Example Data21 hits · 22 pts
SeverityFileLineSnippetContext
LOWcrates/simple_logger/src/manager_tests.rs246 std::fs::write(blocked_target.join("placeholder"), b"sentinel").expect("populate blocking dir");CODE
LOWcrates/simple_logger/src/manager_tests.rs284 blocked_target.join("placeholder").is_file(),CODE
LOWcrates/warp_server_auth/src/user/persistence_tests.rs113 email: "test@test.com".to_string(),CODE
LOWcrates/warpui/examples/table-sample/root_view.rs597 ("Very Long Title Here", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod teCODE
LOWcrates/warpui/examples/table-sample/root_view.rs597 ("Very Long Title Here", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod teCODE
LOWcrates/warpui/examples/table-sample/root_view.rs1056 2 => format!("Row {} - Very long description here. Lorem ipsum dolor sit amet, consectetur adipiscinCODE
LOWcrates/warpui/examples/table-sample/root_view.rs1056 2 => format!("Row {} - Very long description here. Lorem ipsum dolor sit amet, consectetur adipiscinCODE
LOWcrates/warpui/examples/table-sample/root_view.rs1133 2 => format!("Row {} - Very long description here. Lorem ipsum dolor sit amet, consectetur adipiscinCODE
LOWcrates/warpui/examples/table-sample/root_view.rs1133 2 => format!("Row {} - Very long description here. Lorem ipsum dolor sit amet, consectetur adipiscinCODE
LOWcrates/ipc/src/wasm.rs1//! This module provides a fake, "placeholder" implementation of IPC transport for wasm targets.COMMENT
LOWcrates/editor/src/content/buffer_tests.rs3361 buffer.insert_placeholder(3.into(), "placeholder", selection.clone(), ctx);CODE
LOWcrates/editor/src/content/buffer_tests.rs5114 .insert_placeholder(5.into(), "placeholder", selection.clone(), ctx)CODE
LOWcrates/editor/src/content/buffer_tests.rs5133 run: "placeholder".into(),CODE
LOWcrates/editor/src/content/buffer_tests.rs5171 buffer.insert_placeholder(5.into(), "placeholder", selection.clone(), ctx);CODE
LOWcrates/editor/src/content/buffer_tests.rs5201 run: "placeholder".into(),CODE
LOWapp/src/util/git_tests.rs111 git(&path, &["config", "user.email", "test@test.com"]).await;CODE
LOWapp/src/ai/agent_sdk/driver/git_credentials_tests.rs112 email: Some("user@example.com".to_string()),CODE
LOWapp/src/ai/agent_sdk/driver/git_credentials_tests.rs122 assert!(!diagnostics.contains("user@example.com"));CODE
LOWapp/src/ai/agent_sdk/driver/git_credentials_tests.rs134 email: Some("user@example.com".to_string()),CODE
LOW…undled/skills/claude-api/python/claude-api/tool-use.md491print(contact.name) # "Jane Doe"CODE
LOW…ed/skills/claude-api/typescript/claude-api/tool-use.md491console.log(response.parsed_output!.name); // "Jane Doe"CODE
Example Usage Blocks11 hits · 20 pts
SeverityFileLineSnippetContext
LOWapp/assets/bundled/bootstrap/bash_body.sh158 # Usage:COMMENT
LOWapp/assets/bundled/bootstrap/bash_body.sh243 # Usage:COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh142 # Usage:COMMENT
LOWapp/assets/bundled/bootstrap/zsh_body.sh220 # Usage:COMMENT
LOWapp/assets/bundled/bootstrap/fish.sh80# Usage:COMMENT
LOWapp/assets/bundled/bootstrap/fish.sh150# Usage:COMMENT
LOW…/figma/figma-use/references/plugin-api-standalone.d.ts2392 * ## Example usageCOMMENT
LOW.github/workflows/close_stale_fix_prs.yml5# Usage:COMMENT
LOW.github/workflows/label_external_contributors.yml4# Usage:COMMENT
LOW.github/workflows/stale_requested_changes_prs.yml5# Usage:COMMENT
LOW.github/workflows/warp_cleanup_fix_prs.yml5# Usage:COMMENT
Deep Nesting16 hits · 16 pts
SeverityFileLineSnippetContext
LOW…s/bundled/skills/pr-comments/scripts/trim_diff_hunk.py29CODE
LOW…s/bundled/skills/pr-comments/scripts/trim_diff_hunk.py188CODE
LOW…led/skills/create-skill/eval-viewer/generate_review.py85CODE
LOW…led/skills/create-skill/eval-viewer/generate_review.py149CODE
LOW…led/skills/create-skill/eval-viewer/generate_review.py288CODE
LOW…ources/bundled/skills/create-skill/scripts/run_eval.py35CODE
LOW…s/bundled/skills/create-skill/scripts/package_skill.py42CODE
LOW…led/skills/create-skill/scripts/improve_description.py49CODE
LOW…led/skills/create-skill/scripts/aggregate_benchmark.py67CODE
LOW…bundled/skills/create-skill/scripts/generate_report.py16CODE
LOWresources/bundled/skills/create-skill/scripts/utils.py7CODE
LOW.agents/skills/changelog-draft/scripts/fetch_prs.py288CODE
LOW…kills/changelog-draft/scripts/classify_contributors.py62CODE
LOWscript/run-clang-format.py43CODE
LOWscript/run-clang-format.py61CODE
LOWscript/run-clang-format.py209CODE
Excessive Try-Catch Wrapping9 hits · 15 pts
SeverityFileLineSnippetContext
MEDIUM…undled/skills/claude-api/python/claude-api/tool-use.md400 print(f"Error: {result.stderr}")CODE
MEDIUM…led/skills/create-skill/eval-viewer/generate_review.py408 print(f"Error: {workspace} is not a directory", file=sys.stderr)CODE
LOW…ources/bundled/skills/create-skill/scripts/run_eval.py223 except Exception as e:CODE
MEDIUM…ources/bundled/skills/create-skill/scripts/run_eval.py276 print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr)CODE
LOW…s/bundled/skills/create-skill/scripts/package_skill.py106 except Exception as e:CODE
MEDIUM…led/skills/create-skill/scripts/improve_description.py204 print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr)CODE
MEDIUM…ources/bundled/skills/create-skill/scripts/run_loop.py265 print(f"Error: No SKILL.md found at {skill_path}", file=sys.stderr)CODE
LOWscript/run-clang-format.py122 except Exception as e:CODE
MEDIUMscript/run-clang-format.py116def run_clang_format_diff_wrapper(args, file):CODE
Hallucination Indicators1 hit · 10 pts
SeverityFileLineSnippetContext
CRITICALapp/src/terminal/local_tty/terminal_view_adaptor.rs1106 participant_list.sharer.info.profile_data.firebase_uid.as_str();CODE
AI Response Leakage1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHcrates/editor/test_data/test_rust_file.rs8243/// In this implementation, the `to_string` method panicsCOMMENT
Slop Phrases5 hits · 6 pts
SeverityFileLineSnippetContext
LOWapp/src/changelog_model.rs170 markdown_sections[0].markdown.push_str("* *Don't forget to put changelog information in your PR descriptCODE
LOWapp/src/changelog_model.rs179 markdown_sections[0].markdown.push_str("* *Don't forget to put changelog information in your PR descriptCODE
LOW…l/session/command_executor/in_band_command_executor.rs398 // If the future is aborted (via a call to `AbortHandle#abort`) we need to make sure toCOMMENT
LOW…terminal/view/inline_banner/notifications_discovery.rs121 "Don't forget to 'Allow' the permissions request to finish setting up notifications.",CODE
LOWapp/src/ai/blocklist/history_model.rs886 /// This helper ensures we don't forget to emit the event when updating metadata.COMMENT
Unused Imports5 hits · 5 pts
SeverityFileLineSnippetContext
LOW…/bundled/skills/create-skill/scripts/quick_validate.py7CODE
LOW…lls/changelog-draft/scripts/convert_to_release_json.py23CODE
LOW…/skills/changelog-draft/scripts/build_slack_payload.py4CODE
LOWscript/run-clang-format.py11CODE
LOWscript/run-clang-format.py11CODE
TODO Padding1 hit · 2 pts
SeverityFileLineSnippetContext
LOWcrates/warp_completer/src/parsers/simple/parser.rs71 // TODO: Add errors if there is a command in the list and the token isn't a logicalCOMMENT