Skip to main content

⚓ Drydock

A local-first, provider-agnostic terminal coding agent for your own LLM. No accounts, no telemetry, no cloud — the only outbound calls are to the model endpoint you configure and (optionally) the web-search tools you invoke. Primary target: dense Gemma-4-31B (QAT, 64K) served by llama.cpp on a single workstation.

v3 — clean-room rebuild. Drydock is being rebuilt as an original, Apache-2.0 codebase owned end to end (no upstream fork). Every release is gated by a credential-exfiltration scanner that blocks anything reaching off-box. See HARNESS_DESIGN.md and docs/PRD.md.

Why

A coding agent should build real projects from your machine without sending your code or credentials anywhere. Drydock runs entirely against a local model, feels like a first-class terminal agent, and keeps its data plane on your box.

Status

Shipping. Published on PyPI as drydock-cli (v3.x). The Textual TUI is the default surface: a scrolling transcript with streamed assistant text, collapsible tool cards, collapsible reasoning ("thinking") cards, a live nautical activity line, and a multi-line prompt. The agent loop, OpenAI-compatible provider, two-tier compaction, and the full agentic toolset (below) are in, with Gemma reliability hardening verified hands-on.

Capabilities

A full agentic CLI harness — every tool below is clean-room and dependency-free (nothing beyond openai + textual), and the model calls them autonomously:

  • Files & shellRead (with a structure index for huge files), Write, Edit, Bash, Glob, Grep.
  • Vision (multimodal) — reference an image path in your message (a .png/ .jpg screenshot, mockup, or diagram) and it's attached for a vision-capable model to see; the agent can also call the ViewImage tool to look at an image it discovers on its own — describe a UI, read text off a screenshot, debug a diagram. Works with any --mmproj server (e.g. llama.cpp + a vision model).
  • Version controlGitStatus, GitDiff, GitLog, GitCommit (structured + truncated; commit is local and reversible).
  • InternetWebSearch + WebFetch (DuckDuckGo; offline-safe).
  • Knowledge base (GraphRAG) — build a local entity-graph index from your docs/code with /graphrag build <path>; the agent retrieves from it via the read-only Knowledge tool.
  • Multi-agentDispatch runs several read-only sub-agents in parallel and task runs one (investigation); Worker delegates a self-contained chunk of WORK to a writable sub-agent. Each runs in a FRESH context and returns only a summary — so a big subtask never fills the main context window.
  • Second-model advisor — point /advisor at a stronger model on any OpenAI-compatible endpoint (e.g. Gemini, or a proxy on another box); the agent calls the Consult tool for a second opinion when stuck, and you can /ask <question> directly. Opt-in, user-configured — no extra dependency.
  • MCP — connect to Model Context Protocol servers (~/.drydock/mcp.json); their tools appear as mcp__<server>__<tool>. List them with /mcp. Works with third-party servers out of the box — e.g. Graphify for a queryable code knowledge graph: see docs/graphify.md and the copy-paste example config.
  • Skills — reusable /<name> commands authored as markdown in ~/.drydock/skills/ (or <project>/.drydock/skills/); $ARGS substitution. Bundled skill families: RMF (/rmf-*), STIG (/stig-*), NIST governance (/nist-ai-rmf, /nist-csf), and ML engineering (/ml-train, /ml-metrics, /ml-finetune, /ml-debug, /ml-rl, /ml-data).
  • Screen capture — the Screenshot tool grabs the screen and the vision model sees it (Windows/macOS/Linux) — review a GUI, read what's displayed, debug a render.
  • Governed reliability — a deterministic controller wraps the loop: the objective
    • acceptance criteria live in structured state that survives context compaction; explicit task phases (understand → implement → verify → complete) are owned by the controller, so the model can never self-declare "done" — a verification gate requires a test/check to actually run and pass. Every action is progress-scored; a stalled run (repeating equivalent actions, rerunning the same failing test) triggers graduated recovery — advisory → forced reflection → suppressing the looping call → strategy reset → an honest stop — visible live in the status line (⚠ recovery: …). Tool arguments are schema-validated and deterministically repaired before execution; the model sees only the ~12 tools relevant to the task and phase. Every run writes a durable event trace — digest with /events, timeline with /trace (JSONL or SQLite backend).
  • Interrupt & resume — every turn checkpoints the session (transcript + task state) atomically; if drydock is killed mid-task, the next launch offers /resume to continue exactly where it left off — with anything that was in-flight flagged (an interrupted external action is never blindly retried).
  • Model registry — keep several model servers configured (/model add qwen http://box2:8001/v1) and switch with /model qwen — each registered model routes to its own endpoint, with a configurable launch default.
  • Cross-platform — runs natively on Linux, macOS, and Windows via PowerShell/cmd (no WSL or Git-Bash required); /shell shows which shell your commands run in.
  • Loops/loop <count> <prompt> runs a prompt iteratively (Esc stops).
  • Ratchet/ratchet <goal> keeps solving across rounds, snapshotting the workspace whenever more tests pass and rolling back regressions, until it goes green. The verifier auto-detects (pytest/cargo/go/npm/make); --verify "<cmd>" overrides. Progress can't slip backward. --effort low|medium|high|xhigh|max is one dial from a cheap plain pawl (low) to full evolutionary search — fan-out and crossover of partial solutions — for the hardest tasks (high+).

Slash commands

Typed into the prompt. The agent also knows these, so you can just ask it ("how do I add my own docs?") and it'll point you to the right one.

Command What it does
/graphrag build <path> Build a knowledge base from a file or folder of docs/code
/graphrag add <path> Incrementally add more documents to the base
/graphrag query <q> Test what the base returns (no model)
/graphrag status · clear List indexed sources · wipe the base
/graphrag migrate Convert a legacy JSON index to the fast SQLite store
/skills List your skills
/skills new <name> <prompt> Create a reusable /<name> skill (use $ARGS for input)
/<name> Run a skill
/loop <count> <prompt> Repeat a prompt N times (Esc stops)
/ratchet <goal> Solve across rounds, snapshotting on verifier gains, rolling back regressions. --effort low..max scales plain-pawl→evolutionary; verifier auto-detects (--verify "<cmd>" to override; --rounds N, --fitness auto|exitcode|<regex>)
/mcp List connected MCP servers + their tools
/rmf bootstrap [families] Ingest the NIST SP 800-53 catalog (RMF automation)
/rmf-control · /rmf-categorize · /rmf-review · /rmf-poam Bundled RMF skills
/nist-ai-rmf · /nist-csf NIST AI RMF 1.0 · Cybersecurity Framework 2.0 (defensive governance)
/ml-train · /ml-metrics · /ml-finetune · /ml-debug · /ml-rl · /ml-data ML-engineering skills (PyTorch, full/LoRA fine-tune, metrics, RL, data prep)
/stig new <xccdf> Generate a blank .ckl from a DISA STIG benchmark
/stig <ckl> · /stig <ckl> open Summarize a checklist · list findings by status
/stig graph <ckl> Ingest a checklist into the RMF graph (auto-links rules→controls via CCI)
/stig-assess <ckl> · /stig-remediate <ckl> <rule> Assess a rule vs evidence · write a fix script
/model List registered models & switch — each routes to its own endpoint
/model add <name> <url> · default <name> Register a model server · set the launch default
/cwd Show/set the working directory
/undo · /back Revert the last write · rewind the last turn
/compact · /context [n] Shrink context now · view/set the context-window budget
/resume [id] Continue an interrupted session (offered automatically on launch)
/advisor · /ask <q> Set up a 2nd 'advisor' model (Gemini etc.) · consult it
/events · /trace [n] Trace digest (incl. governor activity) · ordered event timeline
/shell Which shell Bash uses (Win/macOS/Linux)
/status · /clear · /help · /quit Session stats · reset · help · exit

Knowledge base (GraphRAG) — ingesting your documents

/graphrag build ./docs        # index a file or a whole folder
/graphrag add ./more_docs     # add more later, incrementally
/graphrag query "how are refunds handled?"   # check retrieval
/graphrag status              # what's indexed

Once built, the agent automatically retrieves from it (read-only Knowledge tool) when a question touches your material. Ingests text formats (.md .txt .py .js .json .yaml .sql …), PDF and Word (.docx), and STIG checklists (.ckl/.cklb) — checklists are flattened to per-rule findings so you can ask "which findings are open?". .docx/.ckl need nothing extra; PDF uses the pdftotext binary (poppler) if present, else pip install drydock-cli[pdf] (pypdf). The index is a SQLite database at <project>/.drydock/graphrag.db (FTS5-indexed, so queries stay fast at multi-GB scale) — clean-room, no embeddings.

Custom skills

/skills new commitmsg  Write a concise conventional-commit message for: $ARGS
/commitmsg the staged auth changes      # runs the skill with $ARGS substituted

Skills are markdown files in ~/.drydock/skills/ (personal) or <project>/.drydock/skills/ (project); /skills new writes one for you.

Second-model advisor (a stronger model for a second opinion)

Drydock's primary model is a small local one. You can wire in a second, stronger model — e.g. Gemini — to consult when the local model is stuck or you want to sanity-check a design. It's just another OpenAI-compatible endpoint, so there's no extra dependency; it's opt-in and off until you configure it (the only call is the one you point it at — consistent with the no-phone-home stance).

Configure it (persists to ~/.drydock/config.toml):

/advisor url    http://<other-box>:4000/v1     # any OpenAI-compatible endpoint
/advisor model  gemini-2.5-pro
/advisor key    <api-key>                       # if the endpoint needs one
/advisor test                                   # ping it: reachable? which model? latency?
/advisor                                         # show current config (key masked)

Use it three ways:

  • You (private): /ask <question> — consults the advisor and shows its answer to you only (not added to the agent's context).
  • You (feed the agent): /ask! <question> — same, but also injects the answer into the agent's context and has the primary model process it, so a second opinion can steer the current task.
  • The agent: it can call the read-only Consult tool on its own when it hits something hard (the answer comes back as a tool result, so it's in context).

Pointing it at Gemini — two options:

  1. Gemini's official OpenAI-compatible endpoint (if this box has internet):
    /advisor url   https://generativelanguage.googleapis.com/v1beta/openai
    /advisor model gemini-2.5-pro
    /advisor key   <your-gemini-api-key>
    
  2. A proxy on another box (e.g. where your key lives). LiteLLM is one line:
    pip install 'litellm[proxy]'; export GEMINI_API_KEY=...
    litellm --model gemini/gemini-2.5-pro --host 0.0.0.0 --port 4000
    
    then /advisor url http://<that-box-ip>:4000/v1.

Any OpenAI-compatible model works here (another local server, a hosted model, etc.) — Gemini is just the common case.

RMF automation (NIST SP 800-53)

For Risk Management Framework work, Drydock can ingest the NIST SP 800-53 Rev 5 control catalog into the knowledge base and ships four RMF skills — all 100% local for CUI/sensitive systems.

/rmf bootstrap            # one-time: fetch + ingest the 800-53 catalog (offline after)
/graphrag build ./ssp     # ingest your own SSP/POA&M (PDF/Word/text)
/rmf-control AC-2         # look up a control
/rmf-categorize ...       # FIPS 199 categorization + tailored baseline
/rmf-review AC-2          # review an SSP implementation statement vs 800-53A
/rmf-poam <finding>       # generate a POA&M entry from a scan/STIG finding

Beyond text retrieval, /rmf bootstrap also builds a typed ontology graph (Control / Component / Vulnerability nodes; IMPLEMENTS / RESIDES_ON / ASSESSES edges). The agent records your system topology with GraphAdd and traces relationships with GraphQuery — including control inheritance ("which servers inherit physical controls from their enclave?"). Stdlib in-memory graph, no Neo4j.

STIG checklists (DISA .ckl/.cklb)

Take a raw DISA STIG benchmark all the way to a completed, eMASS/STIG-Viewer- compatible checklist — entirely local (hostnames, IPs, and findings are CUI):

/stig new U_ASD_STIG_V6R1_Manual-xccdf.xml app.ckl   # benchmark → blank .ckl
/graphrag build ./app                                 # pull in the app's evidence
/loop 286 /stig-assess app.ckl                        # assess each rule vs evidence
/stig app.ckl open                                    # list the open findings
/stig-remediate app.ckl SV-900010r1_rule              # write an idempotent fix script
/stig graph app.ckl                                   # ingest + auto-link rules → NIST controls
/stig poam app.ckl                                    # eMASS POA&M CSV of the open findings

/stig new parses the XCCDF benchmark (validated against the full 286-rule Application STIG); /stig-assess reads your evidence and writes status + finding-details back in place; /stig graph builds STIG/STIG-Rule nodes and auto-links each rule to its NIST 800-53 control through DISA's CCI map (Control —SATISFIED_BY→ rule), fetched once and cached offline. /stig poam exports the open findings to a deterministic eMASS POA&M CSV — Control (from the CCI map), Vulnerability Description, POA&M Status=Ongoing, Milestone (the Fix Text), and Severity (CAT I/II/III → High/Moderate/Low) — no LLM, stdlib only.

FIAR audit-readiness (DoD financial-statement audit)

Model a Financial Improvement and Audit Readiness engagement — a seeded key-control matrix per business cycle (FBWT, P2P, PP&E, INV, CIVPAY, REIM, FR, ITGC), the five FS assertions, a deterministic evidence-chain validator (a control can't be called effective on an incomplete population→sample→…→GL→assertion trace), findings (NFRs), and CAPs. python -m drydock.fiar new|controls|control|assess|reconcile|package; skills /fiar-assess /fiar-evidence /fiar-readiness /fiar-cap.

KSD evidence packaging. fiar package <engagement> <out> --evidence-dir <dir> assembles an audit binder — index.md + index.json mapping every control → assertions → KSDs → status → evidence-chain completeness → findings — and collects the actual evidence files each test cited, zipped. Add --redact "<term>" (repeatable) to red-box names/secrets in the evidence and the manifest for a releasable version (verified via the Document Canvas); the original engagement is never touched. Also exposed as the FiarPackage tool.

Document Canvas — editing documents far larger than the context window

Edit a 300-, 800-, 1000-page document the way you edit a large codebase: search, open a small region, apply a hash-guarded patch, validate, commit — the model never loads the whole document into context. Drydock parses the source into addressable blocks with stable ids (sec-0004, para-0182, …) and content hashes, and gives the model these tools:

Tool What it does
DocOpen Parse a document into the canvas and show its outline
DocOutline / DocSearch / DocRead Navigate + read small windows (never the whole file)
DocReplace Global search-and-replace across the whole document in one pass
DocPatch Hash-guarded, transactional edit of a block (replace / insert / delete)
DocRedact Permanently remove text and verify it can't be recovered ("red boxing")
DocDiff / DocValidate Preview staged changes; run structural + phrase checks
DocCommit / DocRollback Write the source (original kept as <file>.orig) or discard

You don't call these tools yourself — you describe the task in plain English and the model drives them (just like Read/Edit/Bash). It picks the canvas over Read/Edit automatically for documents too big to hold in context. For example, type into the TUI:

Open report.md and change every "single-factor authentication" to
"phishing-resistant MFA", then validate and commit.

Find the definition of "serendipity" in dictionary.pdf.

Redact every SSN and phone number in disclosure.md, then commit a release copy.

Or run the bundled skill: /document-canvas report.md redact all phone numbers.

Prefer to drive it yourself? The /doc slash command runs the canvas deterministically (no model), which is also the way to use it in the TUI regardless of what the model picks:

/doc open report.md
/doc search report.md single-factor
/doc replace report.md single-factor authentication :: phishing-resistant MFA
/doc redact report.md SECRET-CODE-4471
/doc diff report.md      # preview   ·   /doc validate report.md
/doc commit report.md    # write (keeps report.md.orig)

Formats: .md / .markdown / .txt are edited in place. .pdf / .docx are imported read-only (text extracted; edits written to a <file>.canvas.md sidecar so the binary original is never overwritten). Every edit is staged in a working copy and hash-guarded, so the model can never clobber stale content; DocCommit writes the file and preserves the untouched original as <file>.orig. Redaction is the one blocking check — it refuses if the removed text would still be recoverable.

Install

pip install drydock-cli
drydock

⚠️ The PyPI package is drydock-cli, not drydock. pip install drydock fetches an unrelated project (a Docker-cluster tool) that ships its own drydock/ package with no cli.py, so the drydock command then fails with No module named 'drydock.cli'. If that happened, run pip uninstall -y drydock drydock-cli && pip install drydock-cli.

Requires Python 3.11+. From source instead: git clone https://github.com/fbobe321/drydock.git && cd drydock && pip install -e .

On first launch with no config, Drydock probes localhost for a running local LLM (llama.cpp/vLLM :8000, Ollama :11434, LM Studio :1234) and wires up the first one it finds — no account or API-key prompt. If nothing is detected it asks for the server URL, model name, and context size (which must match your server's -c / --max-model-len — accepts 65536 or 64k). Override anytime with --model / --provider / --base-url or ~/.drydock/config.toml.

Docker

A prebuilt image is on Docker Hub. Drydock is just the agent — point it at your own OpenAI-compatible model server (e.g. one running on the host):

docker run -it --add-host=host.docker.internal:host-gateway \
  -v "$PWD:/work" fbobe3/drydock \
  --base-url http://host.docker.internal:8000/v1 --model gemma4

-v "$PWD:/work" mounts your project so the agent can read/edit it. Tags: fbobe3/drydock:latest and fbobe3/drydock:<version> (e.g. :3.0.135).

Serving Gemma-4-31B

Drydock is provider-agnostic, but its primary target is dense Gemma-4-31B. Two proven ways to serve it on a 2×GPU box, both exposing an OpenAI-compatible API on :8000 as model gemma4:

llama.cpp — QAT GGUF, flexible concurrency (more slots if you need them):

llama-server -m gemma-4-31B-it-qat-UD-Q4_K_XL.gguf \
  -c 65536 -np 2 --host 0.0.0.0 --port 8000 --alias gemma4

vLLM — w4a16 QAT, ~2× faster per request, 128K context:

docker run -d --name vllm-prod --gpus all --ipc=host --restart unless-stopped \
  -v /data3/Models:/models -p 8000:8000 \
  -e NCCL_P2P_DISABLE=1 \
  vllm/vllm-openai:v0.26.0 \
  --model /models/gemma-4-31B-it-qat-w4a16-ct \
  --served-model-name gemma4 \
  --tensor-parallel-size 2 \
  --max-model-len 131072 \
  --max-num-seqs 2 \
  --gpu-memory-utilization 0.97 \
  --kv-cache-dtype fp8 \
  --tool-call-parser gemma4 \
  --enable-auto-tool-choice

Point drydock at either with --provider vllm --base-url http://<host>:8000/v1 --model gemma4.

vLLM-on-Gemma-4 notes (drydock handles these for you as of 3.1.7):

  • skip_special_tokens: false is sent on every request — without it, a turn truncated at max_tokens (tool-call / reasoning tails) comes back with empty content, which looks like a refusal. If finish_reason == "length", retry with a larger max_tokens (≥ 2000 for reasoning-heavy calls).
  • Reasoning is off by default. Enable per-request via chat_template_kwargs.enable_thinking; the vLLM reasoning parser is disabled, so <|channel>thought … markers arrive inside content (stripped client-side).
  • --max-num-seqs 2 caps concurrency at 2 — the cost of fitting 128K context into the VRAM. Use llama.cpp if you need more concurrent sessions than context.
  • Tool-calling is the standard OpenAI format; /props is llama.cpp-only (vLLM 404s it — drydock falls back to /v1/models for the context length).

Using it

Type a task and press Enter. Drydock reads/writes/edits files and runs commands to do the work, showing each as a collapsible tool card.

  • Enter submits · Ctrl+J newline (multi-line prompts)
  • ↑ / ↓ recall command history (persists across sessions)
  • PgUp / PgDn (and Ctrl+Home/End) scroll the transcript
  • Ctrl+O expand/collapse tool output · drag + Ctrl+C copy a selection
  • Ctrl+C twice (or Ctrl+D, /quit) to exit
  • A live activity line shows progress while it works: ◡ Keelhauling… (12s · ↓ 6.2k tokens · thinking with high effort)
  • Submit while it's working and the prompt queues (drains in order)
  • Slash commands: /model (switch between registered model servers) · /cwd · /undo (revert last write) · /back (rewind last turn) · /resume (continue an interrupted session) · /status · /compact (shrink context) · /context (view/set the context-window budget) · /events & /trace (execution trace + governor activity) · /graphrag (build/query a knowledge base) · /skills (list your /<name> skills) · /loop (repeat a prompt) · /mcp (list MCP servers) · /rmf & /stig (NIST 800-53 / DISA STIG automation) · /clear · /help · /quit

It honors AGENTS.md / DRYDOCK.md in the working directory for project conventions.

Custom system prompt

For standing instructions applied on every turn (stronger than the per-project AGENTS.md, which is framed as optional background), edit a system_prompt.md file. Drydock creates a commented template for you, so you never have to know where it lives — just open it and write your instructions. It has no effect until you add text (the template is all comments, ignored).

Two scopes, most-specific wins:

  • Per-projectsystem_prompt.md in the folder you launch drydock from. Auto-created there on first launch (any folder except your home directory), so different projects get different standing orders. Overrides the global one.
  • Global~/.drydock/system_prompt.md. Auto-created on first run; applies to every project. A per-project file overrides it.
  • Or the config keysystem_prompt = "..." in ~/.drydock/config.toml (lowest precedence).

Contents are capped at 8000 chars, injected after drydock's base prompt and before any project AGENTS.md, and apply in both the TUI and CLI. Restart drydock after editing.

Safety

Two tiers, plus advisory guards — all designed so legitimate work is never blocked:

  • Catastrophic denylist — commands like rm -rf /, mkfs, raw block-device writes, and fork bombs are refused outright (never run).
  • Approval prompt — sensitive-but-legitimate commands (sudo, package installs, network fetches, git push) pause for Allow / Always / Deny. Non-Bash tools are gated the same way by effect: an external mutation (e.g. an MCP server's create_issue), credential access, or destructive action requires approval before it runs; local reads/edits stay automatic.
  • Advisory write guards — Drydock flags (never blocks) Python syntax errors, stub-only files, imports of sibling modules that don't exist yet, bare raise outside an except, and refuses to write git conflict-marker content.

Point it at a local OpenAI-compatible endpoint (e.g. llama.cpp's server-cuda serving Gemma-4-31B). The web tools (WebSearch/WebFetch) are read-only and degrade cleanly offline; the release scanner allowlists only the search backend.

Model server (reference setup)

Drydock is provider-agnostic, but it's tuned and measured against this rig:

  • Model: dense Gemma-4-31B (QAT Q4_K_XL GGUF), served by ghcr.io/ggml-org/llama.cpp:server-cuda with --jinja. Swapped from the 26B-A4B MoE, whose ~4B active params caused fatal agentic tool-loops; the dense 31B is loop-free (slower, but it finishes).
  • GPUs: 2× NVIDIA RTX 4060 Ti 16GB, tensor-split across both cards (--tensor-split 1,1) so the 31B weights fit.
  • Context: 64k (-c 65536) with q8_0 KV-cache quantization (-ctk q8_0 -ctv q8_0); set context_limit in ~/.drydock/config.toml to match your server's -c.
  • Throughput: ~15 tok/s decode (tensor-split 31B). Faster single-GPU options exist if you drop to a smaller model.
  • Provider-agnostic: any OpenAI-compatible endpoint (llama.cpp, vLLM, Ollama, LM Studio) works — point --base-url at it.

Principles

  • Clean provenance — original code only; nothing copied from any other project.
  • Local-only data plane — no telemetry, no phone-home, no hardcoded third-party hosts, no credential transmission.
  • Advisory, never blocking — loop/safety mechanisms inject better context; they never hard-stop legitimate work.
  • The scanner is lawscripts/security_scan.py gates every release.

Security scan

python3 scripts/security_scan.py drydock/      # scan the source tree
python3 scripts/security_scan.py dist/*.whl    # scan a built wheel

Exit 2 (HIGH finding) blocks a release.

License

Apache-2.0, © 2026 Frank Bobe III. See LICENSE and NOTICE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drydock_cli-3.1.17.tar.gz (396.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

drydock_cli-3.1.17-py3-none-any.whl (289.8 kB view details)

Uploaded Python 3

File details

Details for the file drydock_cli-3.1.17.tar.gz.

File metadata

  • Download URL: drydock_cli-3.1.17.tar.gz
  • Upload date:
  • Size: 396.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for drydock_cli-3.1.17.tar.gz
Algorithm Hash digest
SHA256 c20b392583119912953775a8aa098110b6b3df8ccf87b7e0aefb658b8c5c3839
MD5 1f7482cce16956d8494961344279a316
BLAKE2b-256 0e8c1155b657d9a1c98adf9e83149370584fd5a4c80a637c1a44dbeae3deed38

See more details on using hashes here.

File details

Details for the file drydock_cli-3.1.17-py3-none-any.whl.

File metadata

  • Download URL: drydock_cli-3.1.17-py3-none-any.whl
  • Upload date:
  • Size: 289.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for drydock_cli-3.1.17-py3-none-any.whl
Algorithm Hash digest
SHA256 d3c6302693e318740fd029a250c2242606e3f62f44679dd22cede0bc83e5f547
MD5 cc9f559fa62e7fbbc045d651facf2562
BLAKE2b-256 c6fcc01d3ac8625e90734730ec29b2788ae60d0f88bd36c2a1249516d5e91648

See more details on using hashes here.

Release history Release notifications | RSS feed

3.1.25

2 files

3.1.23

2 files

3.1.21

2 files

3.1.20

2 files

3.1.19

2 files

3.1.18

2 files

This release

3.1.17 This release

2 files

3.1.16

2 files

3.1.15

2 files

3.1.14

2 files

3.1.13

2 files

3.1.12

2 files

3.1.11

2 files

3.1.10

2 files

3.1.9

2 files

3.1.8

2 files

3.1.7

2 files

3.1.6

2 files

3.1.5

2 files

3.1.4

2 files

3.1.3

2 files

3.1.2

2 files

3.0.171

2 files

3.0.170

2 files

3.0.166

2 files

3.0.165

2 files

3.0.162

2 files

3.0.140

2 files

3.0.139

2 files

3.0.138

2 files

3.0.137

2 files

3.0.136

2 files

3.0.135

2 files

3.0.134

2 files

3.0.133

2 files

3.0.132

2 files

3.0.130

2 files

3.0.129

2 files

3.0.128

2 files

3.0.127

2 files

3.0.126

2 files

3.0.125

2 files

3.0.124

2 files

3.0.123

2 files

3.0.122

2 files

3.0.121

2 files

3.0.120

2 files

3.0.119

2 files

3.0.118

2 files

3.0.117

2 files

3.0.116

2 files

3.0.115

2 files

3.0.114

2 files

3.0.113

2 files

3.0.112

2 files

3.0.111

2 files

3.0.110

2 files

3.0.109

2 files

3.0.108

2 files

3.0.107

2 files

3.0.106

2 files

3.0.105

2 files

3.0.104

2 files

3.0.103

2 files

3.0.102

2 files

3.0.101

2 files

3.0.99

2 files

3.0.98

2 files

3.0.97

2 files

3.0.96

2 files

3.0.95

2 files

3.0.94

2 files

3.0.93

2 files

3.0.92

2 files

3.0.91

2 files

3.0.90

2 files

3.0.89

2 files

3.0.88

2 files

3.0.87

2 files

3.0.86

2 files

3.0.85

2 files

3.0.84

2 files

3.0.83

2 files

3.0.82

2 files

3.0.81

2 files

3.0.80

2 files

3.0.79

2 files

3.0.78

2 files

3.0.77

2 files

3.0.76

2 files

3.0.75

2 files

3.0.74

2 files

3.0.73

2 files

3.0.72

2 files

3.0.71

2 files

3.0.70

2 files

3.0.69

2 files

3.0.68

2 files

3.0.67

2 files

3.0.66

2 files

3.0.65

2 files

3.0.64

2 files

3.0.63

2 files

3.0.62

2 files

3.0.61

2 files

3.0.60

2 files

3.0.59

2 files

3.0.58

2 files

3.0.57

2 files

3.0.56

2 files

3.0.55

2 files

3.0.54

2 files

3.0.53

2 files

3.0.52

2 files

3.0.51

2 files

3.0.50

2 files

3.0.49

2 files

3.0.47

2 files

3.0.46

2 files

3.0.32

2 files

3.0.31

2 files

3.0.30

2 files

3.0.29

2 files

3.0.28

2 files

3.0.27

2 files

3.0.26

2 files

3.0.25

2 files

3.0.24

2 files

3.0.23

2 files

3.0.22

2 files

3.0.21

2 files

3.0.20

2 files

3.0.19

2 files

3.0.18

2 files

3.0.17

2 files

3.0.16

2 files

3.0.15

2 files

3.0.14

1 file

3.0.13

1 file

3.0.12

1 file

3.0.11

1 file

3.0.10

1 file

3.0.9

1 file

3.0.8

1 file

3.0.7

1 file

3.0.6

1 file

3.0.5

1 file

3.0.4

1 file

3.0.3

1 file

3.0.2

1 file

3.0.1

1 file

3.0.0

1 file

2.11.1

1 file

2.11.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page