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.

chrisguidry/docket

https://github.com/chrisguidry/docket · scanned 2026-06-17 01:48 UTC (1 month, 1 week ago)

84 raw signals (0 security + 84 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 month, 1 week ago · v2 · last Δ -5.8 (diff) · 48 actionable findings from 1 signal source. 36 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
Scan summary Repository scanned at 70.9/100 with 88.9% coverage. It contains 2114 nodes across 1 cross-layer flows, written primarily in mixed languages. Engine surfaced 84 findings — concentrated in quality (36), software (24), cicd (20). Risk profile is low: 0 critical, 0 high, 26 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 36 of 48 actionable findings. 84 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 Agent instructions conf 1.00 Agent authority lacks a verifier contract: .claude/skills/audit-docs/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/audit-docs/SKILL.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 hardware Security conf 1.00 Dockerfile runs as root: Dockerfile
No non-root USER set. Containers running as root expand the blast radius of any vulnerability inside the image.
Container
medium System graph hardware Security conf 1.00 Dockerfile runs as root: tests/cluster/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 19 occurrences GitHub Action is tag-pinned rather than SHA-pinned
astral-sh/setup-uv@v7 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
4 files, 19 locations
.github/workflows/ci.yml:83, 99, 106, 123, 148, 155, 172, 193, +6 more (14 hits)
.github/workflows/chaos.yml:25, 46 (2 hits)
.github/workflows/publish.yml:34, 44 (2 hits)
.github/workflows/docs.yml:28
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/publish.yml CI/CD securitySupply chainGithub actions
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing.
auth
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 51 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 hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: python:${PYTHON_VERSION}-slim
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
Dockerfile:2 containersPinned dependencies
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: src/docket/strikelist.py:strike_key, src/docket/strikelist.py:strike 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.
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 5 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: src/docket/docket.py:add, src/docket/docket.py:add, src/docket/docket.py:add 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.
5 occurrences
repo-level (5 hits)
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: arithmetic_fallback
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/fallback_arithmetic.py:56
low System graph software Dead code conf 1.00 Possibly dead Python function: backup_data
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/local_development.py:41
low System graph software Dead code conf 1.00 Possibly dead Python function: backup_database
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/concurrency_control.py:34
low System graph software Dead code conf 1.00 Possibly dead Python function: blmove
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:271
low System graph software Dead code conf 1.00 Possibly dead Python function: blpop
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:279
low System graph software Dead code conf 1.00 Possibly dead Python function: bouncey
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/self_perpetuating.py:16
low System graph software Dead code conf 1.00 Possibly dead Python function: brpop
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:284
low System graph software Dead code conf 1.00 Possibly dead Python function: do_GET
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/instrumentation.py:175
low System graph software Dead code conf 1.00 Possibly dead Python function: do_work
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/self_contained_service.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: flood
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/find_and_flood.py:23
low System graph software Dead code conf 1.00 Possibly dead Python function: health_check
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/local_development.py:48
low System graph software Dead code conf 1.00 Possibly dead Python function: lindex
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:289
low System graph software Dead code conf 1.00 Possibly dead Python function: linsert
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:290
low System graph software Dead code conf 1.00 Possibly dead Python function: log_message
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/instrumentation.py:181
low System graph software Dead code conf 1.00 Possibly dead Python function: long_task
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/task_progress.py:26
low System graph software Dead code conf 1.00 Possibly dead Python function: placeholder
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/docket.py:657
low System graph software Dead code conf 1.00 Possibly dead Python function: process_customer_data
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/concurrency_control.py:16
low System graph software Dead code conf 1.00 Possibly dead Python function: process_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/local_development.py:34
low System graph software Dead code conf 1.00 Possibly dead Python function: regular_task
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/concurrency_control.py:52
low System graph software Dead code conf 1.00 Possibly dead Python function: send_email
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/fastapi_background_tasks.py:83
low System graph software Dead code conf 1.00 Possibly dead Python function: send_notification
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
examples/agenda_scatter.py:28
low System graph software Dead code conf 1.00 Possibly dead Python function: setex
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:260
low System graph software Dead code conf 1.00 Possibly dead Python function: xack
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:422
low System graph software Dead code conf 1.00 Possibly dead Python function: xdel
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
src/docket/_redis.py:477
low System graph quality Complexity conf 1.00 Very large file: src/docket/worker.py (1260 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/da64ecf8-0c88-4e0d-a200-05b0f35ea826/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/da64ecf8-0c88-4e0d-a200-05b0f35ea826/

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.