Astrid is a portable, capability-secure operating system for composable software.
This report presents the forensic synthetic code analysis of astrid-runtime/astrid, a Rust project with 10,322 GitHub stars. SynthScan v2.0 examined 206,262 lines of code across 660 source files, recording 1607 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 10.5 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1607 distinct pattern matches across 11 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | Cargo.toml | 81 | # (`:id` → `{id}`) and we rely on the matching tower stack | COMMENT |
| LOW | Cargo.toml | 141 | # Metric recording facade + Prometheus exporter. The facade decouples | COMMENT |
| LOW | Cargo.toml | 161 | # contention. | COMMENT |
| LOW | Cargo.toml | 201 | # each consumer's own `features = [...]`, so any native-only feature listed | COMMENT |
| LOW | crates/astrid-capsule-types/src/memory_ledger.rs | 1 | //! Shared per-principal peak-memory accounting ledger. | COMMENT |
| LOW | crates/astrid-capsule-types/src/memory_ledger.rs | 21 | //! linear memory a *prior* leaseholder allocated. The peak is thus an upper | COMMENT |
| LOW | crates/astrid-capsule-types/src/memory_ledger.rs | 41 | COMMENT | |
| LOW | crates/astrid-capsule-types/src/memory_ledger.rs | 81 | // strictly above it. Evicting a bigger user to record a smaller one | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 1 | //! Host-derived runtime concurrency limits for the WASM capsule engine. | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 41 | /// concurrency ceiling for a capsule's interceptor invocations). | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 61 | /// Maximum redirect hops the host follows by default, and the caller ceiling a | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 81 | #[must_use] | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 101 | pub fn host_io_concurrency_default() -> usize { | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 141 | } | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 201 | } | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 221 | /// caller sets no corresponding `*-ms`. An explicit caller value OVERRIDES the | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 241 | /// `connect-ms` (a default, not a ceiling). Host const default: 30s. | COMMENT |
| LOW | crates/astrid-capsule-types/src/limits.rs | 361 | COMMENT | |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 1 | //! Shared per-principal CPU accounting ledger. | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 21 | //! ledger had to become cross-capsule first). The run-loop CPU bound remains | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 61 | impl FuelLedger { | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 101 | /// Read `principal`'s cumulative cross-capsule fuel total, or `0` if the | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 121 | /// | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 141 | COMMENT | |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 161 | /// **Fail-OPEN, by construction.** The per-principal cell is a | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 201 | COMMENT | |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 241 | let mut window = cell.lock(); | COMMENT |
| LOW | crates/astrid-capsule-types/src/fuel_ledger.rs | 281 | } | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 21 | /// | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 41 | #[serde(default, deserialize_with = "deserialize_imports_map")] | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 61 | /// Same shape as `publishes`. An entry with a `handler = "..."` field (and | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 81 | #[serde(default, rename = "context_file")] | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 141 | /// not publish to any topic (fail-closed). The order of the returned vector | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 201 | COMMENT | |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 341 | pub authors: Vec<String>, | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 361 | /// The required version of the Astrid OS (e.g., ">=0.1.0"). | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 381 | #[serde(rename = "file", alias = "entrypoint")] | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 401 | pub struct EnvDef { | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 421 | pub default: Option<serde_json::Value>, | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 441 | #[serde( | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 461 | /// shared ...`) at runtime, not from manifest declaration. | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 481 | /// to be collected before this field is prompted, so their values are | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 501 | pub bearer: Option<String>, | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 521 | /// when unset. | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 541 | /// (per-agent API keys, OAuth tokens, Telegram bot tokens). | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 581 | /// How the command is surfaced. `kind = "slash"` (the default when | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 601 | #[derive(Debug, Clone, Serialize, Deserialize)] | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 641 | /// A resolved interceptor binding. | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/mod.rs | 661 | /// react loop at 100). Sourced from the `[subscribe]` entry's optional | COMMENT |
| LOW | …ates/astrid-capsule-types/src/manifest/capabilities.rs | 1 | //! The `[capabilities]` block — what a capsule asks for from the OS. | COMMENT |
| LOW | …ates/astrid-capsule-types/src/manifest/capabilities.rs | 21 | /// is present for future cross-capsule KV request declarations. | COMMENT |
| LOW | …ates/astrid-capsule-types/src/manifest/capabilities.rs | 41 | /// child, so persistence is an additional operator-reviewed opt-in on top | COMMENT |
| LOW | …ates/astrid-capsule-types/src/manifest/capabilities.rs | 61 | pub net_connect: Vec<String>, | COMMENT |
| LOW | …ates/astrid-capsule-types/src/manifest/capabilities.rs | 101 | /// capability categories, NOT the scoped arguments within them | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/topics.rs | 1 | //! Cargo-shaped `[publish]` / `[subscribe]` tables. | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/topics.rs | 21 | /// Exactly one of `version` / `tag` / `rev` / `branch` / `path` may be set | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/topics.rs | 61 | // Accept either a bare WIT ref string (short form) or a full table. | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/topics.rs | 121 | /// A topic this capsule subscribes to (RFC: cargo-like-manifest). | COMMENT |
| LOW | crates/astrid-capsule-types/src/manifest/topics.rs | 141 | pub rev: Option<String>, | COMMENT |
| LOW | crates/astrid-workspace/examples/sandbox_probe.rs | 1 | //! Verification probe for the #655 sandbox-policy fix. | COMMENT |
| 1216 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | crates/astrid-capsule-types/src/fuel_ledger.rs | 404 | // ── FuelRateLimiter (PR2: the deny side) ───────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-capabilities/src/policy.rs | 613 | // ── Device-scope attenuation ────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-gateway/tests/router.rs | 810 | // ── Device-scoped bearer: key_id extraction + per-key revocation ────── | COMMENT |
| MEDIUM | crates/astrid-gateway/src/routes/distribution.rs | 118 | // ── parsing helpers ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-gateway/src/routes/principals.rs | 340 | // ── /api/sys/capabilities ──────────────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-gateway/src/routes/principals.rs | 431 | // ── Device management ──────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-gateway/src/routes/principals.rs | 549 | // ── Helpers ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-gateway/src/routes/env.rs | 224 | // ── helpers ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-gateway/src/routes/capsules.rs | 443 | // ── helpers (kernel client error mapping) ──────────────────────── | COMMENT |
| MEDIUM⚡ | crates/astrid-config/src/defaults.toml | 48 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | crates/astrid-config/src/defaults.toml | 50 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 13 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 15 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 68 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 70 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 96 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 98 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 142 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 144 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 157 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 159 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 171 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 173 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 206 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 208 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 220 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 222 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 234 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 236 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 270 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 272 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 288 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 290 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 318 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 320 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 339 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 341 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 368 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 370 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 393 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 395 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 413 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 415 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 428 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 430 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 454 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 456 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 480 | # ============================================================================ | COMMENT |
| MEDIUM | crates/astrid-config/src/defaults.toml | 482 | # ============================================================================ | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 39 | // ── Fixtures ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 128 | // ── Full cross-tenant matrix ───────────────────────────────────────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 191 | // ── Self-scope resolves from target principal ──────────────────────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 216 | // ── Agent built-in caps explicitly list self-admin entries ────────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 237 | // ── Audit method labels ────────────────────────────────────────────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 277 | // ── Wire-format round trips ───────────────────────────────────────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 375 | // ── ArcSwap hot-reload viewed from outside the kernel crate ───────── | COMMENT |
| MEDIUM | …integration-tests/tests/management_api_admin_topics.rs | 458 | // ── Built-in group write protection ───────────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-integration-tests/tests/gateway_e2e.rs | 241 | // ── Kernel boot artefacts on disk ─────────────────────────── | COMMENT |
| MEDIUM | crates/astrid-integration-tests/tests/gateway_e2e.rs | 254 | // ── Gateway state shares the same home ────────────────────── | COMMENT |
| MEDIUM | crates/astrid-integration-tests/tests/gateway_e2e.rs | 276 | // ── Unauthenticated routes against the live state ──────────── | COMMENT |
| 230 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | CHANGELOG.md | 147 | - **Capsule access is now per-principal, enforced kernel-side at dispatch — closing the gap where the capsule tool surfa | CODE |
| MEDIUM | CHANGELOG.md | 212 | - **`astrid capsule new <name>` scaffolds a complete, first-try-compiling tool capsule — with a toolchain preflight and | CODE |
| MEDIUM | CHANGELOG.md | 278 | - **Per-capsule WASM instance pool: principals' interceptors now run concurrently instead of serialising through one `St | CODE |
| MEDIUM | CHANGELOG.md | 408 | - **Per-capsule WASM instance pool: principals' interceptors now run concurrently instead of serialising through one `St | CODE |
| MEDIUM | CHANGELOG.md | 487 | - **Per-domain WIT review fixups (PR #752).** A multi-agent review surfaced fixes addressed in-branch before merge: | CODE |
| MEDIUM | README.md | 221 | astrid capsule new my-capsule # scaffold Capsule.toml, Cargo.toml, src/lib.rs, .cargo/config.toml | CODE |
| MEDIUM⚡ | crates/astrid-config/src/defaults.toml | 54 | # Maximum context window size in tokens (soft limit for summarization) | COMMENT |
| MEDIUM | crates/astrid-cli/src/commands/capsule/new.rs | 1 | //! `astrid capsule new <name>` — scaffold a complete, first-try-compiling | COMMENT |
| MEDIUM | crates/astrid-cli/src/commands/capsule/new.rs | 112 | /// Every check is fail-FRIENDLY: nothing here aborts the scaffold. A capsule | COMMENT |
| MEDIUM | crates/astrid-cli/src/commands/capsule/new.rs | 130 | // the caller scaffold). | COMMENT |
| MEDIUM | crates/astrid-cli/src/commands/capsule/new.rs | 358 | /// Print the friendly next-steps message after a successful scaffold. | COMMENT |
| MEDIUM | crates/astrid-capsule/src/engine/wasm/mod.rs | 2637 | // cross-principal race that #813 collapsed the orchestration cliff | COMMENT |
| MEDIUM | crates/astrid-capsule/src/engine/wasm/pool.rs | 6 | //! `astrid#813` orchestration cliff (one LLM turn every ~3s, invariant to | COMMENT |
| MEDIUM | crates/astrid-mcp/src/registry.rs | 5 | //! The runtime's agentic loop uses the registry instead of knowing about | COMMENT |
| MEDIUM | docs/config.md | 61 | # context_window = 200000 # Optional: override provider's context window size | COMMENT |
| MEDIUM | docs/metrics.md | 292 | ### 4.3 Capsule lifecycle & WASM sandbox (`astrid-capsule`, `astrid-capsule-install`, kernel orchestration) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | crates/astrid-cli/src/commands/daemon_control.rs | 26 | //! The identity check is also robust to an in-place upgrade replacing the | COMMENT |
| MEDIUM | crates/astrid-capsule/src/engine/wasm/mod.rs | 123 | /// upward, there is no robust primitive for "contains a repo below", and the | COMMENT |
| MEDIUM | crates/astrid-capsule/src/engine/wasm/mod.rs | 4941 | /// the trap's `Display` string — robust across wasmtime point releases and | COMMENT |
| MEDIUM | scripts/e2e/runtime-harness.sh | 328 | # the harness's published/runtime IDs remain `astrid-capsule-*`. Prefer the | COMMENT |
| MEDIUM | .github/workflows/runtime-e2e.yml | 65 | # Runtime budget: the harness has bounded daemon startup, curl/SSE, fake LLM, | COMMENT |
| MEDIUM | e2e/first-party-capsule-scenarios.toml | 8 | # family. status = "covered" means the current runtime harness executes it. | COMMENT |
| MEDIUM | e2e/capability-scenarios.toml | 7 | # - status = "covered": the current runtime harness asserts allow/deny behavior | COMMENT |
| MEDIUM | e2e/cli-scenarios.toml | 8 | # status = "covered" means the current runtime harness executes an assertion for | COMMENT |
| MEDIUM | e2e/http-scenarios.toml | 8 | # status = "covered" means the current runtime harness executes an assertion for | COMMENT |
| MEDIUM | e2e/runtime-scenario-specs.toml | 6 | # evidence the harness must assert. Drift tests reject mappings to scenarios | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/astrid-capsule/src/security/mod.rs | 115 | /// NOTE: This method currently takes no socket path argument because the | COMMENT |
| LOW | crates/astrid-approval/src/manager.rs | 217 | // Step 1: Check if an existing allowance covers this action (atomic find + consume). | COMMENT |
| LOW⚡ | crates/astrid-approval/src/manager.rs | 230 | // Step 2: No allowance — we need user approval | COMMENT |
| LOW⚡ | crates/astrid-approval/src/manager.rs | 233 | // Step 3: Check if handler is available | COMMENT |
| LOW | crates/astrid-approval/src/manager.rs | 252 | // Step 4: Send request to handler with timeout | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/astrid-approval/src/manager.rs | 217 | // Step 1: Check if an existing allowance covers this action (atomic find + consume). | COMMENT |
| LOW⚡ | crates/astrid-approval/src/manager.rs | 230 | // Step 2: No allowance — we need user approval | COMMENT |
| LOW⚡ | crates/astrid-approval/src/manager.rs | 233 | // Step 3: Check if handler is available | COMMENT |
| LOW | crates/astrid-approval/src/manager.rs | 252 | // Step 4: Send request to handler with timeout | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | scripts/e2e/fake-openai-compat.py | 175 | b'"delta":{"content":"still "},"finish_reason":null}]}\n\n' | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/e2e/check-first-party-capsule-commands.py | 4 | CODE | |
| LOW | scripts/e2e/fake-openai-compat.py | 15 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/astrid-hooks/src/handler/agent.rs | 16 | /// TODO: implement real agent handler. For now, it returns a stub response. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/astrid-gateway/src/routes/env.rs | 350 | .get("placeholder") | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | scripts/e2e/check-first-party-capsule-commands.py | 35 | def capsule_package_and_commands(manifest_path: Path) -> tuple[str, set[str]]: | CODE |