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.

Circle-Cat/purrf

https://github.com/Circle-Cat/purrf · scanned 2026-06-17 01:23 UTC (1 month, 2 weeks ago)

67 raw signals (0 security + 67 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 2 weeks ago · v2 · last Δ +6.4 (diff) · 57 actionable findings from 1 signal source. 10 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 83.1/100 with 100.0% coverage. It contains 3281 nodes across 30 cross-layer flows, written primarily in mixed languages. Engine surfaced 67 findings — concentrated in quality (35), software (19), frontend (5). Risk profile is low: 0 critical, 0 high, 13 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 48 of 57 actionable findings. 67 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.

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 quality Integrity conf 1.00 Frontend route `/profile` has no Link/navigate to it — tests/frontend_test/layout_test/Header.test.jsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
Orphan pageWiring
medium System graph quality Integrity conf 1.00 Frontend route `/verify-required` has no Link/navigate to it — tests/frontend_test/pages_test/VerifyRequired.test.jsx
The route is registered but no `<Link to=…>` or `navigate(…)` in the codebase navigates here. Either it's reachable only via direct URL (intentional), it's dead, or the link broke during a refactor.
Orphan pageWiring
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — backend/backfill/backfill_mentorship_records.py:97
`requests.get(...)` 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 — backend/backfill/backfill_pairs_records.py:49
`requests.get(...)` 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 32 placeholder/mock markers across 14 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 10 in use
Port 10 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
helm/purrf/values.yaml Ports
medium System graph network Security conf 1.00 Privileged port 20 in use
Port 20 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
helm/purrf/values.yaml Ports
medium System graph network Security conf 1.00 Privileged port 30 in use
Port 30 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
helm/purrf/values.yaml Ports
medium System graph network Security conf 1.00 Privileged port 40 in use
Port 40 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
helm/purrf/values.yaml Ports
medium System graph network Security conf 1.00 Privileged port 50 in use
Port 50 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
helm/purrf/values.yaml Ports
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 27 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 10 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: backend/utils/microsoft_chat_message_util.py:to_dict, backend/utils/microsoft_chat_message_util.py:to_dict 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 …
10 occurrences
repo-level (10 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 2 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: backend/consumers/pubsub_sync_pull_service.py:process_fn, backend/consumers/pubsub_sync_pull_service.py:process_fn, backend/consumers/pubsub_sync_pull_service.py:process_fn This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos …
2 occurrences
repo-level (2 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `get_meetings_by_user_and_round_v2` in backend/mentorship/meeting_service.py:410
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 `get_meetings_by_user_and_round_v2` in tests/backend_test/mentorship_test/meeting_service_test.py:496
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 `get_meetings_by_user_and_round_v2` in tests/backend_test/mentorship_test/mentorship_controller_test.py:36
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 `get_meetings_for_user_v2` in backend/mentorship/mentorship_controller.py:131
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 `meet_v2` in backend/service/google_service.py:3
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 `meet_v2` in tests/backend_test/service_test/google_service_test.py:623
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 `pubsub_v1` in backend/common/google_client.py:2
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 `pubsub_v1` in backend/consumers/google_chat_processor_service.py:99
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 `pubsub_v1` in backend/producers/gerrit_producer/main.py:5
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 `pubsub_v1` in backend/producers/microsoft_chat_producer/main.py:5
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 `pubsub_v1` in tests/backend_test/common_test/google_client_test.py:5
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: all_microsoft_chat_topics
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/internal_activity_service/internal_activity_controller.py:278
low System graph software Dead code conf 1.00 Possibly dead Python function: backfill_gerrit_changes
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:233
low System graph software Dead code conf 1.00 Possibly dead Python function: backfill_gerrit_projects
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:247
low System graph software Dead code conf 1.00 Possibly dead Python function: backfill_jira_issues
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:164
low System graph software Dead code conf 1.00 Possibly dead Python function: backfill_microsoft_chat_messages
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:186
low System graph software Dead code conf 1.00 Possibly dead Python function: backfill_microsoft_ldaps
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:176
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/utils/permission_decorators.py:64
low System graph software Dead code conf 1.00 Possibly dead Python function: handle_response
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/service/google_service.py:556
low System graph software Dead code conf 1.00 Possibly dead Python function: insert_google_meeting
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/service/google_service.py:307
low System graph software Dead code conf 1.00 Possibly dead Python function: pull_calendar_history
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/google_calendar_sync_service.py:643
low System graph software Dead code conf 1.00 Possibly dead Python function: pull_calendar_history_api
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:210
low System graph software Dead code conf 1.00 Possibly dead Python function: revoke_by_source
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/repository/user_permissions_repository.py:69
low System graph software Dead code conf 1.00 Possibly dead Python function: subscribe_google_chat_space
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/notification_management/notification_controller.py:105
low System graph software Dead code conf 1.00 Possibly dead Python function: subscribe_microsoft_chat_messages
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/notification_management/notification_controller.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: sync_google_chat_history_messages
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:129
low System graph software Dead code conf 1.00 Possibly dead Python function: sync_jira_projects
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:198
low System graph software Dead code conf 1.00 Possibly dead Python function: sync_meet_attendance
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/mentorship/mentorship_controller.py:170
low System graph software Dead code conf 1.00 Possibly dead Python function: update_jira_issues
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/historical_data/historical_controller.py:141
low System graph software Dead code conf 1.00 Possibly dead Python function: update_my_profile
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
backend/profile/profile_controller.py:86
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/src/components/common/DataSourceSelector.jsx:38
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/src/components/common/Table.jsx:31
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/src/pages/Dashboard.jsx:240
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — frontend/src/utils/auth.js:12
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
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/cc4e3be3-ddfc-4fe8-8286-6e823f988fc8/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/cc4e3be3-ddfc-4fe8-8286-6e823f988fc8/

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.