Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.

valon-technologies/gestalt

https://github.com/valon-technologies/gestalt · scanned 2026-06-16 00:47 UTC (2 months, 1 week ago)

116 raw signals (0 security + 116 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 89 actionable findings from 1 signal source. 27 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 78.8/100 with 100.0% coverage. It contains 6237 nodes across 3 cross-layer flows, written primarily in mixed languages. Engine surfaced 116 findings — concentrated in quality (80), software (13), cicd (10). Risk profile is high: 1 critical, 2 high, 27 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 83 of 89 actionable findings. 116 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical System graph security Secrets conf 1.00 Possible secret in gestalt/cli/Cargo.toml
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
gestalt/cli/Cargo.toml:25
high System graph security security conf 1.00 Insecure pattern 'exec_used' in gestaltd/services/apps/apiexec/pagination.go:91
Found a known-risky pattern (exec_used). Review and replace if possible.
gestaltd/services/apps/apiexec/pagination.go:91 Exec used
high System graph security security conf 1.00 Insecure pattern 'new_function_used' in docs/scripts/check-registry-docs-render.mjs:203
Found a known-risky pattern (new_function_used). Review and replace if possible.
docs/scripts/check-registry-docs-render.mjs:203 New function used
medium System graph frontend Frontend quality conf 1.00 `dangerouslySetInnerHTML` used in a React component — docs/app/(registry)/registry/shiki-code.tsx:116
Open XSS surface unless the input is provably trusted. Replace with explicit JSX or sanitize via a vetted library. Why: OWASP basics. Already partially flagged by the security analyzer. Rule id: fq.dangerous-html
Fq dangerous html
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/scripts/check-registry-docs-render.mjs:74
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — docs/scripts/check-registry-static.mjs:442
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph hardware Supply chain conf 1.00 Dockerfile ADD downloads remote content without checksum
Remote build inputs can change or be replaced upstream. Use Dockerfile ADD --checksum or download with an explicit digest/signature verification step.
docs/Dockerfile:9 containersChecksum
medium System graph hardware Security conf 1.00 Dockerfile runs as root: docs/Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph cicd CI/CD security conf 1.00 GitHub Action is tag-pinned rather than SHA-pinned
pypa/gh-action-pypi-publish@release/v1 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
.github/workflows/release-sdk.yml:269 CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 9 occurrences GitHub Actions workflow grants broad write permissions
CI tokens with write permissions increase blast radius when an action, dependency, or PR workflow is compromised. Prefer job-level least-privilege permissions.
9 files, 9 locations
.github/workflows/bootstrap-sdk-api-docs.yml
.github/workflows/build-gestaltd.yml
.github/workflows/deploy-gestalt-docs.yml
.github/workflows/deploy-gestaltd-artifacts.yml
.github/workflows/publish-dockerhub-image.yml
.github/workflows/publish-scoped-github-release.yml
.github/workflows/release-gestalt-cli.yml
.github/workflows/release-gestaltd.yml
CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in docs/scripts/check-registry-docs-render.mjs:122
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
docs/scripts/check-registry-docs-render.mjs:122 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'dangerous_innerhtml' in docs/app/(registry)/registry/shiki-code.tsx:116
Found a known-risky pattern (dangerous_innerhtml). Review and replace if possible.
docs/app/(registry)/registry/shiki-code.tsx:116 Dangerous innerhtml
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in docs/scripts/build-versioned-site.mjs:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
docs/scripts/build-versioned-site.mjs:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in docs/scripts/check-nginx-routing.mjs:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
docs/scripts/check-nginx-routing.mjs:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in docs/scripts/check-sdk-api-docs-publish.mjs:1
Found a known-risky pattern (node_child_process). Review and replace if possible.
docs/scripts/check-sdk-api-docs-publish.mjs:1 Node child process
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in sdk/typescript/src/build.ts:13
Found a known-risky pattern (node_child_process). Review and replace if possible.
sdk/typescript/src/build.ts:13 Node child process
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — .github/scripts/generate-release-notes.py:40
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — sdk/python/gestalt/_build.py:101
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — sdk/python/scripts/generate_stubs.py:100
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 70 placeholder/mock markers across 15 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
medium System graph network Security conf 1.00 Privileged port 256 in use
Port 256 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
gestaltd/Dockerfile Ports
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 21 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph quality Integrity conf 1.00 20 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: sdk/tools/sdkgen/internal/emit/python/invoke_support.py:ok, sdk/python/gestalt/invoke_support.py:ok This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're…
20 occurrences
repo-level (20 hits)
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: coerce_model
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_protocol.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: copy_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_protocol.py:142
low System graph software Dead code conf 1.00 Possibly dead Python function: emit
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_runtime_log_host.py:202
low System graph software Dead code conf 1.00 Possibly dead Python function: input_data
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_protocol.py:113
low System graph software Dead code conf 1.00 Possibly dead Python function: intercept_stream_stream
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_grpc_transport.py:53
low System graph software Dead code conf 1.00 Possibly dead Python function: intercept_stream_unary
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_grpc_transport.py:48
low System graph software Dead code conf 1.00 Possibly dead Python function: intercept_unary_stream
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_grpc_transport.py:43
low System graph software Dead code conf 1.00 Possibly dead Python function: intercept_unary_unary
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_grpc_transport.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: list_definitions_raw
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/workflow.py:666
low System graph software Dead code conf 1.00 Possibly dead Python function: message_from_dict
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_protocol.py:86
low System graph software Dead code conf 1.00 Possibly dead Python function: message_to_dict
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_protocol.py:73
low System graph software Dead code conf 1.00 Possibly dead Python function: set_response_metadata
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/gestalt/_telemetry.py:216
low System graph software Dead code conf 1.00 Possibly dead Python function: setup
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
sdk/python/docs/conf.py:86
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph quality Complexity conf 1.00 Very large file: gestalt/cli/src/commands/agents/tui.rs (1626 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestalt/cli/tests/agents_cli.rs (3654 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/bootstrap/agent_runtime_test.go (2782 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/bootstrap/bootstrap.go (2094 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/bootstrap/bootstrap_test.go (6072 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/bootstrap/executable_app_test.go (8275 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/bootstrap/hosted_agent_pool.go (2116 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/bootstrap/provider_build.go (2202 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/config/config.go (4075 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/config/config_test.go (6771 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/config/config_validate.go (2633 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/daemon/e2e_test.go (2420 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/operator/lifecycle.go (5344 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/operator/lifecycle_source_test.go (6283 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/operator/lifecycle_test.go (4065 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/server/agent_session_turn_test.go (1980 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/server/handlers_agent.go (1794 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/internal/server/server_test.go (15123 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/agent.pb.go (4252 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/app.pb.go (2738 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/authorization.pb.go (2351 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/external_credential.pb.go (1723 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/indexeddb.pb.go (3429 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/runtime_provider.pb.go (1388 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/s3.pb.go (1668 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/rpc/protov1/v1/workflow.pb.go (4318 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/services/agents/agentmanager/manager.go (4313 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: gestaltd/services/agents/agentmanager/manager_test.go (3304 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/python/gestalt/_agent.py (1616 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/python/gestalt/_indexeddb.py (1594 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/python/gestalt/_runtime.py (2041 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/python/gestalt/_workflow.py (3172 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/python/tests/test_runtime.py (1589 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/rust/src/agent.rs (1530 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/rust/src/agent_provider.rs (1987 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/rust/src/generated/gestalt/provider/v1/gestalt.provider.v1.rs (3963 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/rust/src/generated/gestalt/provider/v1/gestalt.provider.v1.tonic.rs (10238 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/rust/src/indexeddb_provider.rs (2759 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/rust/src/workflow.rs (1433 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/typescript/src/internal/gen/v1/agent_pb.ts (1932 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/typescript/src/internal/gen/v1/indexeddb_pb.ts (1440 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/typescript/src/internal/gen/v1/workflow_pb.ts (1874 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/typescript/src/providers/indexeddb.ts (1902 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/typescript/src/providers/workflow.ts (2205 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: sdk/typescript/tests/runtime.test.ts (2161 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/161bdf24-561c-4740-b48a-ffb06ad433bb/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/161bdf24-561c-4740-b48a-ffb06ad433bb/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.