nlweb-deployment

nlweb-deployment is a skill for Claude Code from OrcaQubits/agentic-commerce-skills-plugins. It costs 91 tokens per session (1,984 once invoked), scanned A, original, MIT.

A deployment guide for running NLWeb, a system for asking natural-language questions over website content, in production. It covers Azure, Snowflake, Cloudflare, Docker, and self-hosted setups.

In plain words
What is it for?
Use it to deploy NLWeb, set production environment variables, enable production lockdown, configure HTTPS and OAuth, and set up continuous integration for data reloads.
Why use it?
It helps move an NLWeb project beyond local development while addressing configuration, scaling, TLS, login protection, and automated data reloads.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the nlweb-protocol plugin — 13 skills, 1 agent shipped together

Good fit Use it to deploy NLWeb, set production environment variables, enable production lockdown, configure HTTPS and OAuth, and set up continuous integration for data reloads.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment
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 OrcaQubits/agentic-commerce-skills-plugins --skill nlweb-deployment
Clone the repo
git clone --depth 1 https://github.com/OrcaQubits/agentic-commerce-skills-plugins

Made for: Claude Code.

Or install nlweb-protocol, the plugin that ships this one along with the rest of its 13 skills, 1 agent.

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 nlweb-deployment

README.md
[![agentmods](https://agentmods.dev/badge/skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment/github.svg)](https://agentmods.dev/skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment)
Your own site
<a href="https://agentmods.dev/skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment"><img src="https://agentmods.dev/badge/skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment/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 nlweb-deployment

Your own site · 80×15
<a href="https://agentmods.dev/skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment"><img src="https://agentmods.dev/badge/skills/orcaqubits/agentic-commerce-skills-plugins/nlweb-deployment.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,984 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.00091 $0.01984
Opus 5 $0.00046 $0.00992
Sonnet 5 $0.00018 $0.00397
Haiku 4.5 $0.00009 $0.00198

Measured 2d ago against content hash 274213d0bad0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-16, from the pricing page.

Security

Grade A, and why

nlweb-deployment 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 2d 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.

nlweb-protocol/skills/nlweb-deployment/SKILL.md · 171 lines

How it starts

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

NLWeb Deployment

Before writing code

Fetch live docs:

  1. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/setup-azure.md for Azure App Service deployment.
  2. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/setup-snowflake.md for Snowflake Container Services.
  3. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/setup-cloudflare-autorag.md for Cloudflare Worker + AutoRAG.
  4. Fetch https://developers.cloudflare.com/ai-search/how-to/nlweb/ for Cloudflare's hosted NLWeb documentation.
  5. Inspect deploy_azure_webapp.sh, setup.sh, startup_aiohttp.sh in the live repo for current commands.
  6. Web-search the latest release notes for breaking deployment changes.

Conceptual Architecture

Deployment Targets Supported

Target Notes Setup doc
Azure App Service Reference deployment; ships shell scripts docs/setup-azure.md
Snowflake Container Services NLWeb runs inside Snowflake compute, closest to data docs/setup-snowflake.md
Cloudflare Worker + AutoRAG Edge deployment; CF manages indexing docs/setup-cloudflare-autorag.md
Docker Bring-your-own host Build from Dockerfile if shipped, else manual
Bare Python systemd + venv on a VM Use app-aiohttp.py directly
WordPress plugin For WP sites code/wordpress/nlweb/

Production Hardening Checklist

Before exposing /ask or /mcp to the internet:

  1. Set mode: production in config_webserver.yaml — disables query-string config overrides.
  2. Lock down the sites: allowlist in config_nlweb.yaml — only the sites you want public.
  3. Disable who_endpoint_enabled if you don't want federated traffic going to nlwm.azurewebsites.net.
  4. Turn off unused retrieval backends in config_retrieval.yaml (nlweb_west, shopify_mcp unless needed).
  5. Configure OAuth if you need auth (see nlweb-auth-multitenancy).
  6. Set TLS at the edge (App Service, CF, ALB, etc.).
  7. Set rate limits — NLWeb itself has limited built-in protection; do it at the edge.
  8. Configure CORS if a browser client calls /ask directly.
  9. Persist conversations to a real storage provider (config_storage.yaml), not in-memory.
  10. Configure observability — logs, /mcp/health checks, latency metrics.

Read the full file on GitHub · 171 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. 2d ago First seen · 171 lines · 0 tokens per session scan A 274213d0bad0

Subscribe to this mod's changes

nlweb-deployment is a skill published in the GitHub repository OrcaQubits/agentic-commerce-skills-plugins (39 stars, last pushed 2d ago), licensed MIT. It adds 91 tokens to every session and 1,984 once invoked, about $0.0005 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-09-15.

Related

Other skills, from other repositories

archestra-dev-investigate

Use when investigating Archestra bugs or incidents — staging issues, backend 50x errors, Drizzle failed queries, DB connection pressure, deploy regressions, or Kubernetes/runtime symptoms. Orientation only; defers the process to /investigate.

archestra-ai/archestra · 54 tokens

devops-engineer

Becomes a senior DevOps engineer who designs and implements CI/CD pipelines, infrastructure as code, monitoring systems, and deployment strategies. Use when the user needs build pipelines, container orchestration, cloud infrastructure, deployment automation, or observability setup. Do NOT use when writing application…

FerroxLabs/wayland · 77 tokens

arwp-evidence-ci

Add ARWP verification, regression contracts, evidence receipts, scheduled audits, and CI to a website repository. Use when asked to continuously check ARWP quality, prevent agent/search regressions, monitor public interfaces, generate evidence, or prove that an ARWP implementation remains consistent over time. Keep…

dkharlanau/agent-ready-web-profile · 79 tokens

platform-engineering

Use this skill when building or operating internal developer platforms: infrastructure as code, CI/CD, container orchestration, service networking, secrets, and observability, or when shaping platform products, self-service interfaces, adoption evidence, and policy guardrails. Do not use it to define release process…

magnus919/agent-skills · 105 tokens

archestra-dev-e2e

Use when writing, debugging, or running Archestra Playwright e2e tests, API/UI fixtures, WireMock-backed tests, local/CI e2e setup, or test selectors.

archestra-ai/archestra · 45 tokens

archestra-dev-migrations

Use when changing Drizzle schemas, generating migrations, editing migration SQL, creating data-only migrations, diagnosing drizzle-kit check failures, or resolving migration/generated-client conflicts.

archestra-ai/archestra · 38 tokens