
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@ar-agents/gde-tad
Advanced tools
TAD (Trámites a Distancia) + GDE (Gestión Documental Electrónica) as drop-in tools for the Vercel AI SDK. Notification ingestion via Domicilio Electrónico, trámite tracking, IGJ inscription pre-flight. The 4th pieza for sociedades-IA (RFC-001 § 3.4.)
TAD (Trámites a Distancia) + GDE (Gestión Documental Electrónica) primitives for the Vercel AI SDK. The 4th pieza for sociedades-IA — RFC-001 § 3.4.
Trámites a Distancia is the AR national portal where citizens and businesses file federal-government forms — IGJ inscriptions, AFIP padron updates, ministry-level authorizations, etc.
GDE (Gestión Documental Electrónica) is the back-office system that holds the resulting expediente. From an agent's POV the relevant surfaces are:
Write-side operations (filing trámites programmatically) are intentionally NOT exposed yet. The legal liability surface is too large until RFC-001 § 3.4 lands. This package is the moat: nobody else has even shipped this much.
pnpm add @ar-agents/gde-tad
import { Experimental_Agent as Agent } from "ai";
import { gdeTadTools } from "@ar-agents/gde-tad";
const agent = new Agent({
model: "anthropic/claude-sonnet-4.5",
tools: { ...gdeTadTools() },
});
await agent.generate({
prompt:
"Validá esta inscripción IGJ antes de mandarla: SAS llamada 'ACME-AI', " +
"sede en Florida 100 CABA C1005AAA, capital 200000, objeto 'desarrollo " +
"de software propio', un constituyente con CUIT 20-12345678-9 que aporta 200000.",
});
The validate_igj_inscription tool runs locally — no network, no auth. It catches:
When you have a TAD-issued cert + the appropriate per-organism contract:
import { gdeTadTools } from "@ar-agents/gde-tad";
import { MyDomicilioAdapter, MyTramitesAdapter } from "./my-adapters";
const tools = gdeTadTools({
domicilio: new MyDomicilioAdapter({ cert, key }),
tramites: new MyTramitesAdapter({ cert, key }),
});
await agent.generate({
prompt: "Cuáles son las notificaciones críticas que necesito responder esta semana?",
});
Built-in computeSeverity heuristic flags:
import { MockDomicilioAdapter, mockCriticalIntimacionArca } from "@ar-agents/gde-tad/testing";
import { gdeTadTools } from "@ar-agents/gde-tad";
const domicilio = new MockDomicilioAdapter().seedNotifications("20111111119", [
mockCriticalIntimacionArca(),
]);
const tools = gdeTadTools({ domicilio });
Full pieza-4 governance plan in RFC-001 § 3.4.
MIT © Nazareno Clemente
FAQs
TAD (Trámites a Distancia) + GDE (Gestión Documental Electrónica) as drop-in tools for the Vercel AI SDK. Notification ingestion via Domicilio Electrónico, trámite tracking, IGJ inscription pre-flight. The 4th pieza for sociedades-IA (RFC-001 § 3.4.)
We found that @ar-agents/gde-tad demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.