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.
npx skills add bolivian-peru/os-moda --skill natural-language-configgit clone --depth 1 https://github.com/bolivian-peru/os-modaWrote 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.
[](https://agentmods.dev/skills/bolivian-peru/os-moda/natural-language-config)<a href="https://agentmods.dev/skills/bolivian-peru/os-moda/natural-language-config"><img src="https://agentmods.dev/badge/skills/bolivian-peru/os-moda/natural-language-config/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.
<a href="https://agentmods.dev/skills/bolivian-peru/os-moda/natural-language-config"><img src="https://agentmods.dev/badge/skills/bolivian-peru/os-moda/natural-language-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.00749 |
| Opus 5 | $0.00019 | $0.00375 |
| Sonnet 5 | $0.00008 | $0.00150 |
| Haiku 4.5 | $0.00004 | $0.00075 |
Grade A, and why
natural-language-config 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Natural Language NixOS Config Skill
Users describe what they want in plain English. You write the NixOS config.
Workflow
-
Understand the request "Set up PostgreSQL with nightly backups" "Install and configure Caddy as a reverse proxy for port 3000" "Enable fail2ban to block brute force SSH"
-
Read current config
file_read({ path: "/etc/nixos/configuration.nix" }) -
Generate the NixOS module Write idiomatic NixOS configuration. Use
services.*,networking.*,security.*etc. Prefer declarative NixOS options over imperative scripts. -
Show the diff to the user Present EXACTLY what will change. Use a code block with +/- diff markers. Explain each change in plain English.
-
Wait for approval NEVER apply changes without user confirmation. "Here's what I'll add to your NixOS config. Apply it? [Y/n]"
-
Apply atomically
shell_exec({ command: "nixos-rebuild switch" }) -
Verify Check the service started correctly.
service_status({ service: "postgresql" }) -
Log everything
memory_store({ summary: "Installed PostgreSQL with nightly pg_dump backups", detail: "Added services.postgresql, services.postgresqlBackup to configuration.nix. Generation 49.", category: "system.config", tags: "nixos,postgresql,config-change" })
NixOS Config Conventions
- Configuration goes in
/etc/nixos/configuration.nixor imported modules - Use
mkIf,mkOption,mkDefaultwhen extending existing config - Prefer
services.X.enable = true;patterns - For packages: add to
environment.systemPackages - For firewall:
networking.firewall.allowedTCPPorts - For users:
users.users.X
Example Interaction
User: "Set up nginx to serve a static site from /var/www"
Response:
I'll add nginx to your NixOS config. Here's the change:
services.nginx = {
enable = true;
virtualHosts."default" = {
root = "/var/www";
locations."/" = {
index = "index.html";
};
};
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
This will:
- Install and start nginx
- Serve /var/www on port 80
- Open ports 80 and 443 in the firewall
Apply this? The change is atomic and rollbackable.
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.
- 12d ago First seen · 117 lines · 39 tokens per session scan A 0ae6e5b09d7d
natural-language-config is a skill published in the GitHub repository bolivian-peru/os-moda (117 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 39 tokens to every session and 749 once invoked, about $0.0002 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.
Other skills, from other repositories
cloudflare-router
Use when manage Cloudflare DNS, CDN, and security rules via API. Use when configuring domains, SSL, WAF, or edge caching.
devops-specialist
DevOps agent specializing in deployment, monitoring, and infrastructure automation.
terraform-infrastructure-as-code
Comprehensive Terraform Infrastructure as Code skill covering resources, modules, state management, workspaces, providers, and advanced patterns for cloud-agnostic infrastructure deployment.
gandi
Gère les domaines, DNS et emails via l'API Gandi v5. Permet de lister les domaines, consulter/modifier les enregistrements DNS, gérer les boîtes mail et configurer les redirections.
cloud-architect
Use when you need to design, evaluate, or optimize cloud infrastructure architecture at scale. Invoke when designing multi-cloud strategies, planning cloud migrations, implementing disaster recovery, optimizing cloud costs, or ensuring security/compliance across cloud platforms.
kubernetes-specialist
Use when you need to design, deploy, configure, or troubleshoot Kubernetes clusters and workloads in production environments.