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.

xpShawky/BeQuite

https://github.com/xpShawky/BeQuite · scanned 2026-06-16 01:03 UTC (2 months, 1 week ago)

45 raw signals (0 security + 45 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 40 actionable findings from 1 signal source. 5 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 70.5/100 with 88.9% coverage. It contains 1098 nodes across 0 cross-layer flows, written primarily in mixed languages. Engine surfaced 45 findings — concentrated in quality (20), software (11), cicd (8). Risk profile is high: 0 critical, 4 high, 13 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 35 of 40 actionable findings. 45 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.

high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/commands/bq-hooks.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/commands/bq-hooks.md:32 SecretsClaude instruction
high System graph security Agent instructions conf 1.00 Agent instruction/config may expose a secret: .claude/skills/bequite-devops-cloud/SKILL.md
Agent-facing files are routinely pasted into LLM/tool contexts. Move literal tokens, keys, and passwords into a secret manager or document them as placeholders only.
.claude/skills/bequite-devops-cloud/SKILL.md:132 SecretsClaude instruction
high System graph security security conf 1.00 Insecure pattern 'eval_used' in .claude/skills/bequite-security-reviewer/SKILL.md:177
Found a known-risky pattern (eval_used). Review and replace if possible.
.claude/skills/bequite-security-reviewer/SKILL.md:177 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in .claude/skills/bequite-security-reviewer/SKILL.md:27
Found a known-risky pattern (exec_used). Review and replace if possible.
.claude/skills/bequite-security-reviewer/SKILL.md:27 Exec used
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/bq-existing.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/bq-existing.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/commands/bq-new.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/commands/bq-new.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/bequite-frontend-design-system/references/visual-qa-checklist.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/skills/bequite-frontend-design-system/references/visual-qa-checklist.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/bequite-skill-auditor/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
.claude/skills/bequite-skill-auditor/SKILL.md VerificationClaude instruction
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: skill/skills-bundled/impeccable/SKILL.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
skill/skills-bundled/impeccable/SKILL.md VerificationSkill file
medium System graph quality Agent instructions conf 1.00 Agent authority lacks a verifier contract: template/.claude/skills/bequite/README.md
This agent instruction grants code or shell authority but does not state the verification gate that decides promotion. The recurring safe pattern is: LLM proposes; deterministic tests/build/security checks verify; only verified code promotes.
template/.claude/skills/bequite/README.md VerificationClaude instruction
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 cicd CI/CD security conf 1.00 2 occurrences 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.
lines 76, 101
.github/workflows/release.yml:76, 101 (2 hits)
CI/CD securitySupply chainGithub actions
medium System graph cicd CI/CD security conf 1.00 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.
.github/workflows/release.yml CI/CD securitySupply chainGithub actions
medium System graph security security conf 1.00 Insecure pattern 'node_child_process' in .claude/skills/bequite-backend-architect/SKILL.md:212
Found a known-risky pattern (node_child_process). Review and replace if possible.
.claude/skills/bequite-backend-architect/SKILL.md:212 Node child process
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — cli/bequite/receipts.py:212
`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
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 104 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 cicd CI/CD security conf 1.00 5 occurrences GitHub Action is tag-pinned rather than SHA-pinned
actions/setup-python@v5 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
3 files, 5 locations
.github/workflows/audit.yml:49, 77, 91 (3 hits)
.github/workflows/ci.yml:118
.github/workflows/examples-e2e.yml:122
CI/CD securitySupply chainGithub actions
low System graph quality Agent instructions conf 1.00 Multiple root agent instruction files without precedence
The repo has multiple top-level AI-coder instruction files. Without precedence rules, different agents may follow different policies.
Governance
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: cli/bequite/receipts.py:roll_up_by_phase, cli/bequite/receipts.py:roll_up_by_day 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 separate.
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 4 places
Functions with the same first-5-line body hash: cli/bequite/providers/openai.py:estimate_cost_usd, cli/bequite/providers/anthropic.py:estimate_cost_usd, cli/bequite/providers/deepseek.py:estimate_cost_usd, cli/bequite/providers/google.py:estimate_cost_usd This is *the* AI-coder failure mode (4× mo…
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 6 places
Functions with the same first-5-line body hash: cli/bequite/providers/openai.py:complete, cli/bequite/providers/anthropic.py:complete, cli/bequite/providers/__init__.py:complete, cli/bequite/providers/manual_paste.py:complete This is *the* AI-coder failure mode (4× more duplication in vibe-coded r…
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `is_deprecated` in cli/bequite/freshness.py:189
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_pricing_for_marks_stale_when_cache_old` in tests/integration/pricing/test_pricing_smoke.py:85
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: heartbeat
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/auto.py:168
low System graph software Dead code conf 1.00 Possibly dead Python function: list_hooks
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/hooks.py:46
low System graph software Dead code conf 1.00 Possibly dead Python function: load_config
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/config.py:137
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_ai_automation_secrets_in_flow_json
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:333
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_ai_automation_workflows_committed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:372
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_default_web_saas_inter_without_reason
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:213
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_default_web_saas_nested_cards
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:258
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_iron_law_iv_env_reads
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:177
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_iron_law_iv_secrets
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:148
low System graph software Dead code conf 1.00 Possibly dead Python function: rule_library_package_telemetry_opt_in
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/audit.py:295
low System graph software Dead code conf 1.00 Possibly dead Python function: run_hook
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
cli/bequite/hooks.py:56
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
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/5e3c0ed8-4bbf-4db8-b1b0-cdc24b891d5a/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/5e3c0ed8-4bbf-4db8-b1b0-cdc24b891d5a/

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.