Local AI and automation: agents, security, and real-world cases

Last update: May 17th 2026
  • Local AI enables autonomous agents to perform complex tasks on your own hardware while maintaining data privacy.
  • Stacks like NVIDIA NemoClaw integrate open models, sandboxing, and granular tool control for secure deployment.
  • Projects like OpenClaw, Jan AI, PocketBot or Ollama+Open WebUI bring local automation to PCs and mobiles without fees.
  • Screenshots, voice recording, web scraping, and structured personal folders allow you to automate much of your digital life.

Local AI and automation on the computer

La automation with local AI It's moving beyond being just for tech enthusiasts with home servers and becoming a real option for anyone who wants more control, privacy, and flexibility. Today, you're no longer entirely dependent on a large company's cloud to have agents capable of reading your screen, moving your mouse, working with your files, or running complex workflows in the background.

The situation has exploded: from full stacks like NVIDIA's NemoClaw From autonomous agents running on your own hardware to mobile apps like PocketBot that convert natural language into phone automations, and including open platforms like OpenClaw, assistants like Jan AI, and practical guides for setting up your own "homemade ChatGPT" with Ollama and Open WebUI, the goal is the same: to build an ecosystem where AI lives on your computer, interacts with your programs, and automates your daily tasks without taking your data out of your system.

What is local AI automation and why does it matter?

When we talk about Local AI for automationWe're referring to models and agents that run on your own device (PC, server, DGX, mobile) without sending sensitive data to external servers. The model makes decisions, executes code, reads files, calls APIs, and coordinates tools, but everything happens within your controlled environment.

The evolution has been dramatic: from simple chatbots that only answered questions we have moved on to AI agents capable of executing task chainsto orchestrate multiple steps, consult different data sources, and make autonomous decisions. That has completely changed how we understand automation: the model is no longer just "the one who answers," it's "the one who acts."

This change has one obvious consequence: More autonomy implies more riskIf you give an agent access to the file system, your credentials, your browser, or your development tools, you need a robust security design. This is where local approaches shine, because you can restrict permissions, isolate processes, and closely monitor what the model is doing at any given time.

In addition, open models with free licenses like Apache-2.0 or MIT (Like many Falcon, Bark, Jan, etc.) solutions, they allow you to build solutions without being tied to contracts or opaque usage policies. You can audit the code, adjust the model, apply fine-tuning, and even integrate it with specific hardware such as A100 GPUs or NVIDIA DGX workstations.

For many sectors (healthcare, banking, legal, public administration), where the Privacy and secure storage It is sacred, the combination of Local AI + autonomous agents + open models It's making a difference: you automate, but the data doesn't leave your perimeter.

Local AI stacks for advanced automation: NemoClaw, OpenShell, and OpenClaw

NVIDIA has entered this game strongly with NemoClawIt's an open-source stack designed to securely deploy autonomous agents locally and ensure they're always on. It's designed to run on powerful machines like NVIDIA DGX Spark, but the philosophy is applicable to other certified environments.

NemoClaw acts as orchestration layer: installs and coordinates OpenShell (the security runtime) and OpenClaw (the multi-channel agent framework), configures model inference (via Ollama or NVIDIA NIM) and applies security policies from the beginning, not as a last-minute patch.

At the heart of the stack is usually NVIDIA Nemotron 3 Super 120BA model with 120.000 billion parameters optimized for agents: very good at following complex instructions, handling tools, and multi-step reasoning. However, to run something of this size, you need a serious GPU and a lot of memory; around 87 GB is mentioned for the model alone.

Inference is normally served with Ollama as a local runtimewhich exposes a REST API on the machine itself. NemoClaw communicates with this API to send prompts, receive responses, and coordinate tool calls using the tool-calling pattern.

The component OpenShell is key in the security aspectIt enforces sandboxing, controls credentials, acts as a network proxy, and applies the principle of least privilege. It monitors the connections the agent attempts and allows you to approve or block endpoints from a TUI-like interface. This way, if the model tries to access a new service, nothing happens without your approval.

Inside the sandbox lives OpenClaw, the multi-channel agent layerIt handles communication with platforms like Telegram, Slack, and Discord, manages the agent's memory, connects tools (scripts, APIs, browsers), and maintains the conversation long-term. If you want an always-on assistant, accessible via messaging, and with persistent memory, this is the component that makes it possible.

Security, sandboxing, and local deployment step by step

One of the great strengths of this stack is that Safety is considered from the design stagenot added later. The typical mistake in agent projects is to first build all the functionalities and then try to "protect" what has already been built, creating holes everywhere.

  Log analysis: a complete guide for IT, security, and SEO

The central mechanism is the execution sandboxingAll code that the agent wants to execute runs within an isolated environment: it has no direct access to the host's file system, cannot make arbitrary network calls, and cannot escalate privileges beyond what is defined in the configuration.

This greatly mitigates the impact of prompt injection attacks or malicious instructions. If the model decides to do something unusual, the damage remains confined within the sandbox. Even so, NVIDIA itself acknowledges that no sandbox is perfect, so they recommend always testing new tools on isolated systems.

In addition, NemoClaw implements granular control of tools and policies in real timeBy default, the agent can only communicate with a limited number of network endpoints. When it attempts something new, OpenShell blocks it, and you can see exactly what it's trying to do (host, port, process). You can then approve it for that session or add a permanent policy on the host.

The deployment flow in a DGX Spark typically follows these steps: configure Ubuntu 24.04 LTS with NVIDIA drivers following a computer assembly guideInstall Docker 28.xo or higher with GPU runtime, install Ollama and download the Nemotron 3 Super 120B model, and finally launch the NemoClaw installation with a single command that triggers a configuration wizard.

This onboarding guides you through sandbox name, inference provider, chosen model, security presets And, if you want, Telegram integration. Active setup time is estimated at 20-30 minutes, plus another 15-30 minutes to download the template, depending on bandwidth.

In terms of performance, we have to be realistic: a response with a 120B parameter model can take between 30 and 90 seconds in a local context. It's not a problem in itself, but it needs to be taken into account when designing usage flows and the type of tasks you assign to the agent.

Remote access, web interface, and hardware designed for local AI

Once everything is set up, you can interact with the agent in several ways. The most common is via TelegramUsing a bot created with @BotFather, it's a practical choice: robust API, encryption, apps for all types of devices, and no need to expose your server ports to the outside world.

The bot receives your messages, forwards them to the agent on the DGX, and sends you back a reply. The interesting thing is that, although the conversation goes through Telegram's infrastructure, Inference and access to sensitive data remain 100% local on your machine.

In addition, NemoClaw offers a private web interface Accessible via a tokenized URL generated only once at the end of onboarding. It is crucial to save this URL immediately, as it will not be displayed again. To view it from another machine on the network, you must configure an SSH tunnel and port forwarding using OpenShell.

One small but important detail is that the URL must be opened with 127.0.0.1 instead of localhostUsing localhost can cause unauthorised origin (CORS) errors, which can waste your time if you're not aware of it.

For daily operations there are several useful CLI commands: open a shell inside the sandbox, view the status, follow logs in real time, list sandboxes, start or stop the Telegram bridge, activate port forwarding, or run a clean uninstall script that removes the entire stack.

As for the hardware, NVIDIA DGX Spark It's clearly designed for these use cases. It's a compact system with NVIDIA GPUs and high-bandwidth unified memory, ideal for running medium and large-sized models with low latency without having to set up a full data center.

La unified memory It helps especially with one of the classic bottlenecks: moving data between the CPU and GPU. By sharing memory space, the model accesses data much more efficiently, allowing models with tens of billions of parameters to be loaded in (almost) real time—unthinkable until recently in consumer hardware.

Popular local AI agents: examples and use cases

Beyond the NVIDIA ecosystem, there are quite a few AI agents and automation-oriented platforms on your own team which are worth knowing. Each one targets a different type of user and a different set of tasks.

OpenClaw, for example, has become popular as open source agent platform which acts as a personal assistant. It allows you to create custom agents to clean your inbox, send messages, manage your calendar, organize trips, or automate repetitive tasks in your digital life.

Can be installed in Windows, macOS and LinuxIt's also designed to work with LLM models locally, which improves privacy and reduces cloud reliance. Furthermore, it integrates with messaging apps like WhatsApp, Telegram, Discord, Slack, Signal, and Apple Messages, so your agent runs "behind the scenes" of the chats you already use.

Through plugins, you can give it access to the browser, social networks, email clients, and other applications, as well as allow it interact with the file system, execute commands and scriptsor automate typical office and productivity tasks. All this with a clear focus on letting the user choose which folders, apps, and services are available to the agent.

  Janus Pro: DeepSeek's AI model revolutionizing image generation

In the more general ecosystem, platforms such as Perplexity ComputerThis transforms Perplexity from a simple conversational search engine into an assistant capable of executing complex workflows. This Computer mode allows you to browse the web, create and manage documents, write code, process data, and coordinate with services like Gmail, Slack, GitHub, and Notion.

Its strength lies in leveraging models like Claude, GPT, Gemini, or Perplexity's own Sonar to manage large volumes of data and divide complex tasks into subtasks that can be executed serially or in parallel. While not always entirely local, the agent pattern and integration with tools are very similar to those of agents running on your machine.

In the purely open source and local realm, Jan AI It's presented as a ChatGPT replacement that can be installed on Windows, Mac, and Linux. It allows you to use local models like Llama (Meta) or Gemma (Google), or connect to online models like ChatGPT, Claude, Gemini, Mistral, Qwen, or DeepSeek if you're interested in a mix.

Jan AI works both as classic conversational assistant (ask, draft, summarize, translate, rewrite, explain) as an agent capable of processing files and documents, executing commands, and generating code in various languages. Furthermore, its customization focus makes it easy to create your own agent with specific instructions and switch between different "profiles" depending on what you're doing.

Agents on the device: PocketBot and mobile automation

The concept of Local AI doesn't stay on the PCIt is also making a strong impact on mobile phones, where more and more projects are opting for small but specialized models to automate the phone without going through the cloud.

A clear example is PocketBot, an agent that runs directly on iPhone using flame.cpp on MetalIts mission is to convert natural language into phone automations: instead of tapping through a thousand menus or shortcuts, you describe what you want and the agent takes care of translating it into actions.

PocketBot uses a quantized model of 3.000 billion parametersRunning entirely locally and without sending data to external servers. The available memory on an iPhone 15 Pro is typically 3-4 GB usable before iOS starts killing processes, so model size and quantization are critical.

One of the challenges its creators mention is finding Reliable small models for tool-calling and structured outputs in JSON. Using Qwen3, for example, they encounter problems such as made-up parameter names, malformed JSON (missing brackets) and inconsistent schema adherence, forcing the implementation of self-correction and retry layers.

There is also much debate about the optimum point of quantization To achieve the best quality/memory ratio, consider options like q4_K_M or q5_K_S depending on the chip generation and available memory. Each less bit in the quantization means more manageable models, but it can negatively impact reasoning and accuracy in tool calls.

Another front is the adjustment of sampling parameters depending on the task. Typical configurations include temperature 0,7, top_p 0,8, top_k 20 and repeat_penalty 1,1, but there is interest in separating generation strategies for free conversation versus tool-calling, where more determinism and less creativity are of interest.

Finally, on the mobile phone context management It is especially delicate: the system prompt is usually cached in the KV cache to avoid reprocessing it, and sliding windows are used to avoid exceeding capacity; that's why it's useful to know how save and organize your prompts.

Beyond that, there is room for incremental summarization tricks, selective memory, or hybrid schemes that combine compressed history and immediate context.

Set up your own “local ChatGPT” with Ollama and Open WebUI

For those who don't need a stack as complex as NemoClaw, but do want a ChatGPT-type assistant running on your computerA very practical approach based on Ollama and Open WebUI has become popular.

The idea is simple: Don't It is responsible for downloading and serving models (Llama, Gemma, Qwen, etc.) on your machine via a local API, and Open WebUI offers a web interface very similar to ChatGPT but running entirely on your machine. All traffic between the UI and the model goes over localhost.

A very straightforward step-by-step guide details how, with a few 15 terminal commandsYou can have this setup up and running in under an hour. It includes Python 3.11 installation, basic system configuration, Ollama installation, and Open WebUI deployment, along with screenshots and troubleshooting tips.

The result is an environment where you enjoy zero cost on subscriptionsTotal privacy (data never leaves your computer), competitive response times (no shared server queues), and complete freedom to customize specialized assistants to suit your own needs.

In addition, Open WebUI integrates advanced features such as Web search, code interpreter, custom model creation Based on specific configurations, it is preparing advanced RAG capabilities to build personal knowledge bases. The idea is that you can have a trained "co-pilot" familiar with your documents and workflows without relying on third parties.

  SELinux Security: Control your Linux system down to the millimeter

After a few months of use, many users report that this combination has completely replaced [the previous product/service]. their paid subscriptions to cloud solutionswhile improving integration with their own local data and tools. The next natural step is to connect this "homemade ChatGPT" with agents, scripts, and services to coordinate more complex automations.

Automate your digital life: practical examples with local AI

All of this sounds great on a technical level, but what can you actually do in everyday life with it? well-trained local agentsThe possibilities are quite broad if you combine multimodal models, screen access, tools, and structured storage.

There are proposals designed for automate the use of your own computer with agents that receive screenshots and act on them. The flow would be something like this: the system takes a screenshot, the agent processes it with a model capable of working with images, understands which application is open, what buttons are present, what text appears, and based on your prompt, decides what to do next.

With this idea you could, for example, set up specialized translation agentsThe system captures the part of the screen you want to translate, enlarges it in a "magnifying glass translator" window, and generates an almost instant translation using a small model (e.g., 4B parameters) fine-tuned for translation, like a fine-tuned variant of PHI.

Another interesting front is that of Visual models that transform screenshots into PDFsImagine a tool that, from screenshots of presentations, dashboards, or documents, generates well-formatted PDFs that you can then refine or use directly in your presentations. By integrating Python with Acrobat, you could automate the entire pipeline.

To work with the web without depending on external services, veteran technologies such as BeautifulSoup are still very usefulYou can set up a lightweight scraper that crawls several pages and keeps only the necessary HTML (for example, extracting only , p, h1, h2, h3) and pass only the filtered text to the model. This reduces noise, gives you complete control over what the AI ​​sees, and eliminates reliance on third-party APIs. If the agent also has access to the cursor and video editing tools , it opens the door to automating tasks in programs like DaVinci Resolve or Adobe After Effects. The agent would compare the last screenshot with the next one, infer where it needs to place the mouse and what action to perform to progress towards the result you requested. In terms of audio, you can integrate a voice system with human evaluation : the agent generates a phrase (for example, "Good morning, my love"), you give it a score from 1 to 10 and decide whether to save it. This rating can be used to adjust parameters such as the generation temperature, or you can manually regulate it from a dedicated window. By saving the voiceovers in files like {phrase}-{number}.mp3 or .wav , you can reuse and recombine voices in future sessions. Models like Bark, licensed by MIT, lend themselves very well to this almost infinite customization, even adding emotional nuances when it makes sense. To organize all this information, it is essential to provide the agent with a structured personal folder on your machine: user-info/, search-data/, screenshots/, screenshots-for-translate/, voices/, lang/, code-spaces/… Instead of uploading your code to GitHub, you can save projects locally and choose which repositories or folders the agent uses as context in each session. Finally, if you want the model to adapt to you for a certain period of time, you can explore light fine-tuning techniques such as LoRA or QLoRA . These approaches allow you to adjust the model to your style or your domain without having to retrain everything from scratch, although in environments where pure productivity is paramount it may not be worthwhile to have it always active; ideally you should be able to activate or deactivate that customization. In this context, the choice of base model also becomes important: many developers look for Apache-2.0 or MIT models , both in small sizes (2-4B parameters) for prototypes and modest devices, and in 30B models trained with high-end hardware (e.g., A100 GPUs) for large-scale fine-tuning. It is estimated that a few months of serious work in this field can yield very competitive results. Looking at the entire ecosystem as a whole, on-premises AI automation is moving from an experiment to a solid infrastructure , both for individual users fed up with monthly fees and for companies that cannot afford to take sensitive data off-premises. Desde stacks listos para producción como NemoClaw hasta configuraciones caseras con Ollama y Open WebUI, pasando por agentes de escritorio y móviles como OpenClaw, Jan AI o PocketBot, el denominador común es el mismo: más control, más privacidad y una autonomía de la IA que, por primera vez, puedes gobernar tú.</p> <div class="post-relacionado-wrapper"><a href="https://informatecdigital.com/microsoft-mu-la-nueva-ia-local-que-revoluciona-la-configuracion-en-windows-11/?utm_source=destacado-inside" class="post-relacionado"><picture fetchpriority="high" decoding="async" class="attachment-medium size-medium wp-post-image"> <source type="image/webp" data-lazy-srcset="https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-400x225.jpg.webp 400w, https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-768x432.jpg.webp 768w, https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0.jpg.webp 1200w" sizes="(max-width: 400px) 100vw, 400px"/> <img fetchpriority="high" decoding="async" width="400" height="225" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20400%20225'%3E%3C/svg%3E" alt="microsoft mu ia-0" data-lazy-srcset="https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-400x225.jpg 400w, https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-768x432.jpg 768w, https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0.jpg 1200w" data-lazy-sizes="(max-width: 400px) 100vw, 400px" data-lazy-src="https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-400x225.jpg"/><noscript><img fetchpriority="high" decoding="async" width="400" height="225" src="https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-400x225.jpg" alt="microsoft mu ia-0" srcset="https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-400x225.jpg 400w, https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0-768x432.jpg 768w, https://informatecdigital.com/wp-content/uploads/2025/06/microsoft-mu-ia-0.jpg 1200w" sizes="(max-width: 400px) 100vw, 400px"/></noscript> </picture> <div><div>Related article:</div><div class="post-relacionado-title">Microsoft Mu: la nueva IA local que revoluciona la configuración en Windows 11</div></div></a></div> <div id="toc_container" class="no_bullets"><p class="toc_title">Tabla de Contenidos</p><ul class="toc_list"><li><a href="#Que_es_la_automatizacion_con_IA_local_y_por_que_importa">Qué es la automatización con IA local y por qué importa</a></li><li><a href="#Stacks_de_IA_local_para_automatizacion_avanzada_NemoClaw_OpenShell_y_OpenClaw">Stacks de IA local para automatización avanzada: NemoClaw, OpenShell y OpenClaw</a></li><li><a href="#Seguridad_sandboxing_y_despliegue_local_paso_a_paso">Seguridad, sandboxing y despliegue local paso a paso</a></li><li><a href="#Acceso_remoto_interfaz_web_y_hardware_pensado_para_IA_local">Acceso remoto, interfaz web y hardware pensado para IA local</a></li><li><a href="#Agentes_de_IA_locales_populares_ejemplos_y_casos_de_uso">Agentes de IA locales populares: ejemplos y casos de uso</a></li><li><a href="#Agentes_en_el_dispositivo_PocketBot_y_automatizacion_en_el_movil">Agentes en el dispositivo: PocketBot y automatización en el móvil</a></li><li><a href="#Montar_tu_propio_ChatGPT_local_con_Ollama_y_Open_WebUI">Montar tu propio “ChatGPT local” con Ollama y Open WebUI</a></li><li><a href="#Automatizar_tu_vida_digital_ejemplos_practicos_con_IA_local">Automatizar tu vida digital: ejemplos prácticos con IA local</a></li></ul></div> </div> <footer class="entry-meta" aria-label="Meta de entradas"> <span class="cat-links"><span class="gp-icon icon-categories"><svg viewBox="0 0 512 512" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path d="M0 112c0-26.51 21.49-48 48-48h110.014a48 48 0 0143.592 27.907l12.349 26.791A16 16 0 00228.486 128H464c26.51 0 48 21.49 48 48v224c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112z" /></svg></span><span class="screen-reader-text">Categorías </span><a href="https://informatecdigital.com/inteligencia-artificial/" rel="category tag">Inteligencia Artificial</a>, <a href="https://informatecdigital.com/seguridad/" rel="category tag">Seguridad</a></span> <nav id="nav-below" class="post-navigation" aria-label="Entradas"> <div class="nav-previous"><span class="gp-icon icon-arrow-left"><svg viewBox="0 0 192 512" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M178.425 138.212c0 2.265-1.133 4.813-2.832 6.512L64.276 256.001l111.317 111.277c1.7 1.7 2.832 4.247 2.832 6.513 0 2.265-1.133 4.813-2.832 6.512L161.43 394.46c-1.7 1.7-4.249 2.832-6.514 2.832-2.266 0-4.816-1.133-6.515-2.832L16.407 262.514c-1.699-1.7-2.832-4.248-2.832-6.513 0-2.265 1.133-4.813 2.832-6.512l131.994-131.947c1.7-1.699 4.249-2.831 6.515-2.831 2.265 0 4.815 1.132 6.514 2.831l14.163 14.157c1.7 1.7 2.832 3.965 2.832 6.513z" fill-rule="nonzero" /></svg></span><span class="prev"><a href="https://informatecdigital.com/personalidad-en-smart-home-del-hogar-conectado-al-hogar-que-te-entiende/" rel="prev">Personalidad en smart home: del hogar conectado al hogar que te entiende</a></span></div> </nav> </footer> </div> </article> </main> </div> <div data-rocket-location-hash="0b9fe17c76c2e58ac880f2c41872dd87" class="widget-area sidebar is-right-sidebar" id="right-sidebar"> <div class="inside-right-sidebar"> </div> </div> </div><!-- #content --> </div><!-- #page --> <div class="no-wpr-lazyrender site-footer"> <footer class="gb-container gb-container-925a2a1e"> <div class="gb-container gb-container-cbee1dca"> <div class="gb-grid-wrapper gb-grid-wrapper-51f71b20"> <div class="gb-grid-column gb-grid-column-4f4cf5cf"><div class="gb-container gb-container-4f4cf5cf"> <h2 class="gb-headline gb-headline-5c3b3482 gb-headline-text">Informática y Tecnología Digital</h2> <p class="gb-headline gb-headline-e29c0825 gb-headline-text">En <strong>InformaTecDigital</strong> nos dedicamos a proporcionarte las noticias más recientes y sugerencias efectivas, para que estés siempre al día y bien informado. Nuestro objetivo es ser tu socio de confianza en este emocionante recorrido tecnológico, haciendo más fácil tu experiencia con cada nuevo descubrimiento.</p> </div></div> <div class="gb-grid-column gb-grid-column-04e24954"><div class="gb-container gb-container-04e24954"> <h2 class="gb-headline gb-headline-3e937023 gb-headline-text">Categorías</h2> <p class="gb-headline gb-headline-3f1b1c14 gb-headline-text"><a href="https://informatecdigital.com/tecnologia/">Tecnología</a></p> <p class="gb-headline gb-headline-6500416f gb-headline-text"><a href="https://informatecdigital.com/inteligencia-artificial/">Inteligencia Artificial</a></p> <p class="gb-headline gb-headline-86bfcc6a gb-headline-text"><a href="https://informatecdigital.com/programacion/">Programación</a></p> <p class="gb-headline gb-headline-f9d791fe gb-headline-text"><a href="https://informatecdigital.com/algoritmos/">Algoritmos</a></p> <p class="gb-headline gb-headline-1d5a060c gb-headline-text"><a href="https://informatecdigital.com/informatica/">Informática</a></p> <p class="gb-headline gb-headline-ebbabf05 gb-headline-text"><a href="https://informatecdigital.com/internet/">Internet</a></p> </div></div> <div class="gb-grid-column gb-grid-column-1d8f8f12"><div class="gb-container gb-container-1d8f8f12"> <h2 class="gb-headline gb-headline-529b3704 gb-headline-text">síguenos</h2> <div class="gb-container gb-container-8d3b0714"> <a class="gb-button gb-button-8a872c76" href="https://x.com/informatecd" target="_blank" rel="noopener noreferrer" aria-label="Follow Us on Twitter"><span class="gb-icon"><svg aria-hidden="true" role="img" height="1em" width="1em" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path></svg></span></a> </div> </div></div> </div> <div class="gb-container gb-container-68b619a0"> <p class="gb-headline gb-headline-368a465b gb-headline-text">© 2026 InformaTecDigital</p> <div class="gb-container gb-container-26043e29"> <p class="gb-headline gb-headline-fcb53bf6 gb-headline-text"><a href="https://informatecdigital.com/quienes-somos/">Quienes Somos</a></p> <p class="gb-headline gb-headline-e38f9197 gb-headline-text"><a href="https://informatecdigital.com/aviso-legal/" data-type="page" data-id="24">Aviso Legal</a></p> <p class="gb-headline gb-headline-f9af17bf gb-headline-text"><a href="https://informatecdigital.com/formulario-de-contacto/">Contacto</a></p> </div> </div> </div> </footer> <p></p> </div><!-- .site-footer --> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/abn-generatepress-adsense/*","/wp-content/themes/generatepress/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script type="text/rocketlazyloadscript" id="generate-a11y"> !function(){"use strict";if("querySelector"in document&&"addEventListener"in window){var e=document.body;e.addEventListener("pointerdown",(function(){e.classList.add("using-mouse")}),{passive:!0}),e.addEventListener("keydown",(function(){e.classList.remove("using-mouse")}),{passive:!0})}}(); </script> <div data-rocket-location-hash="9089b6fff3545f5f3220e195bce56095" class="gp-modal gp-search-modal" id="gp-search" role="dialog" aria-modal="true" aria-label="Buscar"> <div data-rocket-location-hash="e7419566db319650b22985a79bd613d4" class="gp-modal__overlay" tabindex="-1" data-gpmodal-close> <div data-rocket-location-hash="17238aeffc6392939f4952b095835f70" class="gp-modal__container"> <form role="search" method="get" class="search-modal-form" action="https://informatecdigital.com/"> <label for="search-modal-input" class="screen-reader-text">Buscar:</label> <div class="search-modal-fields"> <input id="search-modal-input" type="search" class="search-field" placeholder="Buscar..." value="" name="s" /> <button aria-label="Buscar"><span class="gp-icon icon-search"><svg viewBox="0 0 512 512" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em"><path fill-rule="evenodd" clip-rule="evenodd" d="M208 48c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160S296.366 48 208 48zM0 208C0 93.125 93.125 0 208 0s208 93.125 208 208c0 48.741-16.765 93.566-44.843 129.024l133.826 134.018c9.366 9.379 9.355 24.575-.025 33.941-9.379 9.366-24.575 9.355-33.941-.025L337.238 370.987C301.747 399.167 256.839 416 208 416 93.125 416 0 322.875 0 208z" /></svg></span></button> </div> </form> </div> </div> </div> <script type="text/rocketlazyloadscript" data-rocket-src="https://informatecdigital.com/wp-content/plugins/gp-premium/menu-plus/functions/js/sticky.min.js?ver=2.5.5" id="generate-sticky-js" data-rocket-defer defer></script> <script id="toc-front-js-extra"> var tocplus = {"visibility_show":"mostrar","visibility_hide":"ocultar","visibility_hide_by_default":"1","width":"100%"}; //# sourceURL=toc-front-js-extra </script> <script type="text/rocketlazyloadscript" data-rocket-src="https://informatecdigital.com/wp-content/plugins/table-of-contents-plus/front.min.js?ver=2411.1" id="toc-front-js" data-rocket-defer defer></script> <script type="text/rocketlazyloadscript" id="generate-menu-js-before"> var generatepressMenu = {"toggleOpenedSubMenus":true,"openSubMenuLabel":"Abrir el submen\u00fa","closeSubMenuLabel":"Cerrar el submen\u00fa"}; //# sourceURL=generate-menu-js-before </script> <script type="text/rocketlazyloadscript" data-rocket-src="https://informatecdigital.com/wp-content/themes/generatepress/assets/js/menu.min.js?ver=3.6.1" id="generate-menu-js" data-rocket-defer defer></script> <script type="text/rocketlazyloadscript" data-minify="1" data-rocket-src="https://informatecdigital.com/wp-content/cache/min/1/wp-content/themes/generatepress/assets/dist/modal.js?ver=1777299219" id="generate-modal-js" data-rocket-defer defer></script> <script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue} if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue} images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1} if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://informatecdigital.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script type="text/rocketlazyloadscript"> /** * Des-Re-Valorizador * Código para hackear valoraciones * Quita el contenido de la columna Valoración de la tabla generada * por el plugin AAWP y asigna una valoración aleatoria entre 4, 4.5 y 5 estrellas. * */ let colRatings = document.querySelectorAll( 'td.aawp-table__td-rating' ); colRatings.forEach( col => col.innerHTML = addRating() ); let colRatings2 = document.querySelectorAll( 'span.aawp-product__no-rating' ); colRatings2.forEach( col => col.innerHTML = addRating() ); function addRating() { const ratings = [ 80, 90, 100 ]; const randomRating = ratings[ Math.floor( Math.random() * ratings.length ) ]; return ' '; } var rocket_beacon_data = {"ajax_url":"https:\/\/informatecdigital.com\/wp-admin\/admin-ajax.php","nonce":"44866e9d8e","url":"https:\/\/informatecdigital.com\/ia-local-y-automatizacion-agentes-seguridad-y-casos-reales","is_mobile":false,"width_threshold":1600,"height_threshold":700,"delay":500,"debug":null,"status":{"atf":true,"lrc":true,"preload_fonts":true,"preconnect_external_domain":true},"elements":"img, video, picture, p, main, div, li, svg, section, header, span","lrc_threshold":1800,"preload_fonts_exclusions":["api.fontshare.com","cdn.fontshare.com"],"processed_extensions":["woff2","woff","ttf"],"external_font_exclusions":[],"preconnect_external_domain_elements":["link","script","iframe"],"preconnect_external_domain_exclusions":["informatecdigital.com","com","hreflang","static.cloudflareinsights.com","rel=\"profile\"","rel=\"preconnect\"","rel=\"dns-prefetch\"","rel=\"icon\""]} Performance optimized by WP Rocket. Learn more: https://wp-rocket.me -->