file_download.rs

file_download.rs is a command for Claude Code from NetMindAI-Open/NarraNexus. It costs 0 tokens per session (1,209 once invoked), scanned A, original, Apache-2.0.

A Rust command that downloads a file from a local backend and saves it in the computer's Downloads folder.

In plain words
What is it for?
Use it to download authenticated backend files from a desktop app or local browser interface and show the user where each file was saved.
Why use it?
Normal browser download links can fail across different local origins and cannot attach the authentication headers needed for protected workspace files.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit Use it to download authenticated backend files from a desktop app or local browser interface and show the user where each file was saved.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/netmindai-open/narranexus/file_download.rs
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/NetMindAI-Open/NarraNexus

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for file_download.rs

README.md
[![agentmods](https://agentmods.dev/badge/commands/netmindai-open/narranexus/file_download.rs.svg)](https://agentmods.dev/commands/netmindai-open/narranexus/file_download.rs)
Your own site
<a href="https://agentmods.dev/commands/netmindai-open/narranexus/file_download.rs"><img src="https://agentmods.dev/badge/commands/netmindai-open/narranexus/file_download.rs.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,209 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01209
Opus 5 $0.00000 $0.00605
Sonnet 5 $0.00000 $0.00242
Haiku 4.5 $0.00000 $0.00121

Measured 8d ago against content hash b2b70cc0ad44, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

file_download.rs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.mindflow/mirror/tauri/src-tauri/src/commands/file_download.rs.md · 116 lines

How it starts

The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.

file_download.rs — Save a backend file to the OS Downloads folder

Why it exists

Two local download surfaces were broken with the standard <a href download> approach:

  1. Tauri DMG: the webview origin is https://tauri.localhost (HTTPS) while the backend serves on http://localhost:8000 (HTTP). WKWebView classifies HTTP navigations from an HTTPS document as "active mixed content" and blocks them silently. The download attribute is also ignored for cross-origin URLs in all modern browsers.

  2. Local browser (bash run.sh, Vite :5173 → backend :8000): cross-origin, so the download attribute is silently ignored. Workspace files additionally require X-User-Id / Authorization headers that <a> elements cannot send.

HTTP requests originated by Rust are not subject to WKWebView's mixed-content rules. This command fetches file bytes via reqwest, optionally attaching auth headers, writes them to the OS Downloads directory, and returns the absolute saved path so the frontend can display a "Saved to: …" confirmation.

This file does not do

  • Streaming large files progressively — bytes are buffered in memory before writing. This is acceptable for the artifact and workspace file sizes this command targets.
  • Serving bytes back to the JS side for in-page rendering — that is artifact_fetch.rs's job (returns base64 for iframe display). This command always writes to disk.

Upstream / Downstream

  • Registered in: lib.rs invoke_handler! macro as commands::file_download::download_file_via_backend.
  • Called by: frontend/src/lib/tauri.ts::downloadFileViaTauri(), which is in turn called by frontend/src/lib/download.ts::downloadFile() when running inside Tauri.
  • Depends on: reqwest (HTTP), dirs crate (resolves ~/Downloads without a new Tauri plugin), url (URL parsing for the SSRF validator).

Security: SSRF guard

Mirrors the guard in artifact_fetch.rs. Before reqwest sees the URL the validate() function enforces:

Read the full file on GitHub · 116 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 116 lines · 0 tokens per session scan A b2b70cc0ad44

Subscribe to this mod's changes

file_download.rs is a command published in the GitHub repository NetMindAI-Open/NarraNexus (86 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,209 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.