nudocs

nudocs is a skill for Claude Code, Codex from jdrhyne/agent-skills. It costs 83 tokens per session (1,313 once invoked), scanned A, original, MIT.

A guide for uploading documents to Nudocs.ai, editing them through shareable private links, and exporting the results.

In plain words
What is it for?
Use it to send Markdown or document files for collaborative editing, retrieve edited content, list or export documents, and delete a selected remote document.
Why use it?
It explains how to use the Nudocs command-line tool while keeping API keys out of chat, commands, and printed configuration.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to send Markdown or document files for collaborative editing, retrieve edited content, list or export documents, and delete a selected remote document.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jdrhyne/agent-skills/nudocs
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.

Any agent
npx skills add jdrhyne/agent-skills --skill nudocs
Clone the repo
git clone --depth 1 https://github.com/jdrhyne/agent-skills

Made for: Claude Code, Codex.

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 nudocs

README.md
[![agentmods](https://agentmods.dev/badge/skills/jdrhyne/agent-skills/nudocs/github.svg)](https://agentmods.dev/skills/jdrhyne/agent-skills/nudocs)
Your own site
<a href="https://agentmods.dev/skills/jdrhyne/agent-skills/nudocs"><img src="https://agentmods.dev/badge/skills/jdrhyne/agent-skills/nudocs/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nudocs

Your own site · 80×15
<a href="https://agentmods.dev/skills/jdrhyne/agent-skills/nudocs"><img src="https://agentmods.dev/badge/skills/jdrhyne/agent-skills/nudocs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,313 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 41
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Excessive Agency · line 77
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00083 $0.01313
Opus 5 $0.00042 $0.00656
Sonnet 5 $0.00017 $0.00263
Haiku 4.5 $0.00008 $0.00131

Measured 11d ago against content hash 964e70bac856, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

nudocs 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/test_contract.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/nudocs/SKILL.md · 119 lines

How it starts

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

Nudocs

Use the authenticated Nudocs CLI to upload documents for hosted editing, retrieve private edit links, list or export documents, and delete a specific remote document.

Setup without exposing credentials

Inspect nudocs --help and nudocs config --help before setup because authentication UX can change by version.

Use one authentication method, not both:

  • Interactive personal setup: if the current CLI exposes an interactive login/config flow, complete it in the user's terminal. Otherwise have the user enter the key directly in a protected local editor or secret manager, outside the agent transcript. Keep ~/.config/nudocs mode 0700 and its API-key file mode 0600.
  • Protected environment setup: use NUDOCS_API_KEY only when it is already supplied through protected local or CI secret storage.

Never ask the user to paste the key into chat, put it in a command argument, echo it into a file, display it with nudocs config, or print environment/config contents. Verify authentication through behavior such as a bounded nudocs list, not by inspecting the secret.

Discover the installed CLI contract

Before an operation, inspect the relevant current help:

nudocs --help
nudocs upload --help
nudocs link --help
nudocs pull --help
nudocs delete --help

The maintained CLI currently documents upload, list, link, pull, delete, and config. Do not invent aliases or use the obsolete gimme command.

For current upload/export formats, read references/formats.md. Do not load that reference for listing, link lookup, or deletion. Service limits are account- and time-dependent: use the CLI/API response or current Nudocs account UI instead of a hard-coded document count.

Operation contract

Exact document identity

Every link, pull, and delete workflow must resolve and pass one exact document ID returned by the current nudocs list output or explicitly supplied by the user:

nudocs link <document-id>
nudocs pull <document-id> --format <format> --output <exact-output-path>
nudocs delete <document-id>

Read the full file on GitHub · 119 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 119 lines · 83 tokens per session scan A 964e70bac856

Subscribe to this mod's changes

nudocs is a skill published in the GitHub repository jdrhyne/agent-skills (241 stars, last pushed 11d ago), licensed MIT. It adds 83 tokens to every session and 1,313 once invoked, about $0.0004 per session on Opus 5. 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.

Related

Other skills, from other repositories

ospec

Document-driven OSpec workflow for initialization, change/goal routing, validation, archiving, and durable project knowledge.

clawplays/ospec · 26 tokens

openakita/skills@doc-coauthoring

Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, PRDs, RFCs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works…

openakita/openakita · 88 tokens

openakita/skills@docx

Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…

openakita/openakita · 173 tokens

openakita/skills@ppt-creator

Create professional presentations using the Pyramid Principle methodology. Supports PPTX generation, Marp/Reveal.js Markdown slides, chart creation, speaker notes, and self-evaluation rubrics. Minimal intake form to rapid output workflow.

openakita/openakita · 52 tokens

openakita/skills@pptx

Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying…

openakita/openakita · 157 tokens

openakita/skills@xlsx

Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or…

openakita/openakita · 206 tokens