Skills Agentes

Security And Hardening

Endurece el código contra vulnerabilidades. Úsalo al manejar entrada de usuario, autenticación, almacenamiento de datos, integraciones externas o datos personales (GDPR, CCPA).

Estrellas
87.7k

en todo el repo

Actividad
67

0–100, la ruta de este skill

Actualizado
anteayer

último commit aquí

Commits
7

últimos 90 días

Contexto
6k tok

79 tok en reposo

Paquete
1 archivo

24 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add addyosmani/agent-skills --skill security-and-hardening --agent claude-code

Se instala solo en este repositorio.

Este skill needs API credentials.

Qué hace

  • Aplica prácticas de seguridad: validación de entrada, queries parametrizadas, hashing de contraseñas, cabeceras de seguridad y cookies seguras
  • Ejecuta un threat model rápido (STRIDE) antes de endurecer una función
  • Provee patrones de prevención OWASP Top 10 incluyendo XSS, SSRF, inyección y control de acceso roto
  • Da pautas de triage de auditorías de dependencias y de higiene de la cadena de suministro
  • Cubre privacidad de datos (GDPR/CCPA) y seguridad de features con LLM/RAG

Úsalo cuando

  • Se construye algo que acepta entrada de usuario
  • Se implementa autenticación o autorización
  • Se almacena o transmite datos sensibles
  • Se integra con APIs externas, webhooks, uploads o pagos/PII

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Revisa la seguridad de este endpoint de login
    • Ayúdame a validar este formulario contra inyección SQL
    • Necesito proteger este webhook de SSRF
    • Cómo manejo de forma segura el output de un LLM en mi app

    SKILL.md

    En inglés

    Security and Hardening

    Overview

    Security-first development practices for web applications. Treat every external input as hostile, every secret as sacred, and every authorization check as mandatory. Security isn't a phase — it's a constraint on every line of code that touches user data, authentication, or external systems.

    When to Use

    • Building anything that accepts user input
    • Implementing authentication or authorization
    • Storing or transmitting sensitive data
    • Integrating with external APIs or services
    • Adding file uploads, webhooks, or callbacks
    • Handling payment or PII data

    Process: Threat Model First

    Controls bolted on without a threat model are guesses. Before hardening, spend five minutes thinking like an attacker:

    1. Map the trust boundaries. Where does untrusted data cross into your system? HTTP requests, form fields, file uploads, webhooks, third-party APIs, message queues, and LLM output. Every boundary is attack surface.
    2. Name the assets. What's worth stealing or breaking? Credentials, PII, payment data, admin actions, money movement.
    3. Run STRIDE over each boundary — a quick lens, not a ceremony:
    Threat Ask Typical mitigation
    Spoofing Can someone impersonate a user/service? Authentication, signature verification
    Tampering Can data be altered in transit or at rest? Integrity checks, parameterized queries, HTTPS
    Repudiation Can an action be denied later? Audit logging of security events
    Information disclosure Can data leak? Encryption, field allowlists, generic errors
    Denial of service Can it be overwhelmed? Rate limiting, input size caps, timeouts
    Elevation of privilege Can a user gain rights they shouldn't? Authorization checks, least privilege
    1. Write abuse cases next to use cases. For each feature, ask "how would I misuse this?" — then make that your first test.

    If you can't name the trust boundaries for a feature, you're not ready to secure it. This is OWASP A04: Insecure Design — most breaches begin in design, not code.

    The Three-Tier Boundary System

    Always Do (No Exceptions)

    • Validate all external input at the system boundary (API routes, form handlers)
    • Parameterize all database queries — never concatenate user input into SQL
    • Encode output to prevent XSS (use framework auto-escaping, don't bypass it)
    • Use HTTPS for all external communication
    • Hash passwords with bcrypt/scrypt/argon2 (never store plaintext)
    • Set security headers (CSP, HSTS, X-Frame-Options, X-Content-Type-Options)
    • Use httpOnly, secure, sameSite cookies for sessions
    • Run the detected package manager's native audit against the committed lockfile before every release

    Ask First (Requires Human Approval)

    • Adding new authentication flows or changing auth logic
    • Storing new categories of sensitive data (PII, payment info)
    • Adding new external service integrations
    • Changing CORS configuration
    • Adding file upload handlers
    • Modifying rate limiting or throttling
    • Granting elevated permissions or roles

    Never Do

    • Never commit secrets to version control (API keys, passwords, tokens)
    • Never log sensitive data (passwords, tokens, full credit card numbers)
    • Never trust client-side validation as a security boundary
    • Never disable security headers for convenience
    • Never use eval() or innerHTML with user-provided data
    • Never store sessions in client-accessible storage (localStorage for auth tokens)
    • Never expose stack traces or internal error details to users

    OWASP Top 10 Prevention Patterns

    These are prevention patterns, not a ranking. For the 2021 ordering, see the quick-reference table in ../../references/security-checklist.md.

    Injection (SQL, NoSQL, OS Command)

    // BAD: SQL injection via string concatenation
    const query = `SELECT * FROM users WHERE id = '${userId}'`;
    
    // GOOD: Parameterized query
    const user = await db.query('SELECT * FROM users WHERE id = $1', [userId]);
    
    // GOOD: ORM with parameterized input
    const user = await prisma.user.findUnique({ where: { id: userId } });
    

    Broken Authentication

    // Password hashing
    import { hash, compare } from 'bcrypt';
    
    const SALT_ROUNDS = 12;
    const hashedPassword = await hash(plaintext, SALT_ROUNDS);
    const isValid = await compare(plaintext, hashedPassword);
    
    // Session management
    app.use(session({
      secret: process.env.SESSION_SECRET,  // From environment, not code
      resave: false,
      saveUninitialized: false,
      cookie: {
        httpOnly: true,     // Not accessible via JavaScript
        secure: true,       // HTTPS only
        sameSite: 'lax',    // CSRF protection
        maxAge: 24 * 60 * 60 * 1000,  // 24 hours
      },
    }));
    

    Cross-Site Scripting (XSS)

    // BAD: Rendering user input as HTML
    element.innerHTML = userInput;
    
    // GOOD: Use framework auto-escaping (React does this by default)
    return <div>{userInput}</div>;
    
    // If you MUST render HTML, sanitize first
    import DOMPurify from 'dompurify';
    const clean = DOMPurify.sanitize(userInput);
    

    Broken Access Control

    // Always check authorization, not just authentication
    app.patch('/api/tasks/:id', authenticate, async (req, res) => {
      const task = await taskService.findById(req.params.id);
    
      // Check that the authenticated user owns this resource
      if (task.ownerId !== req.user.id) {
        return res.status(403).json({
          error: { code: 'FORBIDDEN', message: 'Not authorized to modify this task' }
        });
      }
    
      // Proceed with update
      const updated = await taskService.update(req.params.id, req.body);
      return res.json(updated);
    });
    

    Security Misconfiguration

    // Security headers (use helmet for Express)
    import helmet from 'helmet';
    app.use(helmet());
    
    // Content Security Policy
    app.use(helmet.contentSecurityPolicy({
      directives: {
        defaultSrc: ["'self'"],
        scriptSrc: ["'self'"],
        styleSrc: ["'self'", "'unsafe-inline'"],  // Tighten if possible
        imgSrc: ["'self'", 'data:', 'https:'],
        connectSrc: ["'self'"],
      },
    }));
    
    // CORS — restrict to known origins
    app.use(cors({
      origin: process.env.ALLOWED_ORIGINS?.split(',') || 'http://localhost:3000',
      credentials: true,
    }));
    

    Sensitive Data Exposure

    // Never return sensitive fields in API responses
    function sanitizeUser(user: UserRecord): PublicUser {
      const { passwordHash, resetToken, ...publicFields } = user;
      return publicFields;
    }
    
    // Use environment variables for secrets
    const API_KEY = process.env.STRIPE_API_KEY;
    if (!API_KEY) throw new Error('STRIPE_API_KEY not configured');
    

    Server-Side Request Forgery (SSRF)

    Any time the server fetches a URL the user influenced — webhooks, "import from URL", image proxies, link previews — an attacker can aim it at internal services (cloud metadata, localhost, private IPs).

    // BAD: fetch whatever the user gives you
    await fetch(req.body.webhookUrl);
    
    // GOOD: allowlist scheme + host, reject if ANY resolved IP is private, forbid redirects
    import { lookup } from 'node:dns/promises';
    import ipaddr from 'ipaddr.js';
    
    const ALLOWED_HOSTS = new Set(['hooks.example.com']);
    
    async function assertSafeUrl(raw: string): Promise<URL> {
      const url = new URL(raw);
      if (url.protocol !== 'https:') throw new Error('https only');
      if (!ALLOWED_HOSTS.has(url.hostname)) throw new Error('host not allowed');
      // Resolve ALL records; a single private/reserved address fails the check.
      const addrs = await lookup(url.hostname, { all: true });
      if (addrs.some((a) => ipaddr.parse(a.address).range() !== 'unicast')) {
        throw new Error('private/reserved IP');
      }
      return url;
    }
    
    await fetch(await assertSafeUrl(req.body.webhookUrl), { redirect: 'error' });
    

    The range() !== 'unicast' check covers loopback, link-local 169.254.169.254 (cloud metadata, the #1 SSRF target), private, and unique-local ranges across IPv4 and IPv6.

    Caveat — this still has a TOCTOU gap. fetch resolves DNS again after the check, so an attacker using a short-TTL record can rebind to an internal IP between validation and connection. For high-risk surfaces, resolve once and connect to the pinned IP, or put a filtering agent in front (request-filtering-agent / ssrf-req-filter).

    Input Validation Patterns

    Schema Validation at Boundaries

    import { z } from 'zod';
    
    const CreateTaskSchema = z.object({
      title: z.string().min(1).max(200).trim(),
      description: z.string().max(2000).optional(),
      priority: z.enum(['low', 'medium', 'high']).default('medium'),
      dueDate: z.string().datetime().optional(),
    });
    
    // Validate at the route handler
    app.post('/api/tasks', async (req, res) => {
      const result = CreateTaskSchema.safeParse(req.body);
      if (!result.success) {
        return res.status(422).json({
          error: {
            code: 'VALIDATION_ERROR',
            message: 'Invalid input',
            details: result.error.flatten(),
          },
        });
      }
      // result.data is now typed and validated
      const task = await taskService.create(result.data);
      return res.status(201).json(task);
    });
    

    File Upload Safety

    // Restrict file types and sizes
    const ALLOWED_TYPES = ['image/jpeg', 'image/png', 'image/webp'];
    const MAX_SIZE = 5 * 1024 * 1024; // 5MB
    
    function validateUpload(file: UploadedFile) {
      if (!ALLOWED_TYPES.includes(file.mimetype)) {
        throw new ValidationError('File type not allowed');
      }
      if (file.size > MAX_SIZE) {
        throw new ValidationError('File too large (max 5MB)');
      }
      // Don't trust the file extension — check magic bytes if critical
    }
    

    Triaging Dependency Audit Results

    Package-manager audits report known advisories; they do not prove a package is trustworthy or that vulnerable code is reachable. Use this decision tree:

    The native package-manager audit reports a vulnerability
    ├── Severity: critical or high
    │   ├── Is the vulnerable code reachable in runtime, build, test, or deployment paths?
    │   │   ├── YES --> Fix immediately (update, patch, or replace the dependency)
    │   │   └── NO (confirmed unused across those paths) --> Fix soon, but not a blocker
    │   └── Is a fix available?
    │       ├── YES --> Update to the patched version
    │       └── NO --> Check for workarounds, consider replacing the dependency, or add to allowlist with a review date
    ├── Severity: moderate
    │   ├── Reachable in production? --> Fix in the next release cycle
    │   └── Dev-only? --> Fix when convenient, track in backlog
    └── Severity: low
        └── Track and fix during regular dependency updates
    

    Key questions:

    • Is the vulnerable function actually called in your code path?
    • Is the dependency a runtime dependency or dev-only?
    • Is the vulnerability exploitable given your deployment context (e.g., a server-side vulnerability in a client-only app)?

    When you defer a fix, document the reason and set a review date.

    Supply-Chain Hygiene

    Do not assume npm or treat the nearest manifest as the install root. Apply this order:

    1. Find the installation boundary and manager. Use the workspace root that owns the lockfile, or an independent nested project only when it is outside that workspace. There, corroborate packageManager (when present), the lockfile, and CI; stop on disagreement or competing lockfiles. Pin the manager version and use the matrix in ../../references/security-checklist.md.
    2. Block dependency scripts before first execution. Bootstrap with scripts disabled or a documented fail-closed policy, inspect the pending script source, approve only the minimum required packages, commit the policy, then verify with a clean frozen/immutable install. Never blanket-approve scripts.

    Audits only find known advisories; they do not catch a newly malicious or typosquatted package. Therefore:

    • Never apply forced audit remediation automatically (npm audit fix --force or equivalent). Preview the remediation, read changelogs, and test each resulting upgrade; forced fixes may cross declared dependency ranges.
    • Verify registry signatures and provenance where supported (npm audit signatures, pnpm audit signatures) and treat absence as a signal to investigate, not automatic proof of compromise.
    • Review new dependencies, lockfile diffs, and script-policy changes together — ownership, maintenance, release age, provenance, transitive graph, and typosquats such as cross-env vs crossenv (OWASP A06, LLM03).

    Rate Limiting

    import rateLimit from 'express-rate-limit';
    
    // General API rate limit
    app.use('/api/', rateLimit({
      windowMs: 15 * 60 * 1000, // 15 minutes
      max: 100,                   // 100 requests per window
      standardHeaders: true,
      legacyHeaders: false,
    }));
    
    // Stricter limit for auth endpoints
    app.use('/api/auth/', rateLimit({
      windowMs: 15 * 60 * 1000,
      max: 10,  // 10 attempts per 15 minutes
    }));
    

    Secrets Management

    .env files:
      ├── .env.example  → Committed (template with placeholder values)
      ├── .env          → NOT committed (contains real secrets)
      └── .env.local    → NOT committed (local overrides)
    
    .gitignore must include:
      .env
      .env.local
      .env.*.local
      *.pem
      *.key
    

    Always check before committing:

    # Check for accidentally staged secrets
    git diff --cached | grep -i "password\|secret\|api_key\|token"
    

    If a secret is ever committed, rotate it. Deleting the line or rewriting history is not enough — assume it's compromised the moment it reaches a remote. Revoke and reissue the key first, then purge it from history.

    Data Privacy & Compliance

    Securing data is "can an attacker read it?" Privacy is "should we even hold it, and for how long?" — a separate question that hardening doesn't answer. The cheapest data to protect, breach, and comply over is the data you never collected. Treat personal data as a liability to minimize, not an asset to hoard.

    Know what you hold. You can't protect or honor a deletion request for data you can't find. Classify fields as you add them:

    Class Examples Handling
    Non-personal Aggregates, anonymized counts Normal handling
    Personal (PII) Name, email, IP, device/user IDs Minimize, access-control, include in export/delete
    Sensitive Health, finance, location, biometrics, gov IDs, anything about minors Extra basis to collect, stricter access, often encryption + audit logging

    Operating rules:

    • Minimize and set a purpose. Collect a field only against a stated use. "It might be useful later" is not a purpose — it's latent breach scope. Don't log PII into telemetry (the observability-and-instrumentation skill makes the same point from the ops side).
    • Set retention up front, then actually delete. Every personal-data store needs a TTL and a working deletion path — including backups, caches, search indexes, and analytics copies. Data with no expiry is a breach scheduled for later.
    • Support the data-subject rights your jurisdiction requires (GDPR/CCPA and kin): export, correct, and delete on request. These are engineering features — design the schema so a user's data is findable and erasable, not smeared irreversibly across systems.
    • Get consent before collection or third-party sharing, and make it auditable. Sending PII to an analytics/ad/LLM vendor is "sharing" — the user's choice gates it, and the vendor needs a data-processing agreement.
    • Localize defaults, don't hardcode one region's law. Data-residency and rules differ by user location; make the policy a configurable boundary, not an assumption.

    When data crosses a trust boundary, validate it as untrusted (see Input Validation above); when a privacy incident exposes personal data, the breach-notification clock is part of the postmortem — follow the debugging-and-error-recovery skill.

    Securing AI / LLM Features

    If your app calls an LLM — chatbots, summarizers, agents, RAG — it inherits a new attack surface. Map it to the OWASP Top 10 for LLM Applications (2025):

    • Treat all model output as untrusted input (LLM05: Improper Output Handling). Never pass LLM output straight into eval, SQL, a shell, innerHTML, or a file path. Validate and encode it exactly as you would raw user input.
    • Assume prompts can be hijacked (LLM01: Prompt Injection). Untrusted text in the context window — a user message, a fetched web page, a PDF — can carry instructions. The system prompt is not a security boundary; enforce permissions in code, not in the prompt.
    • Keep secrets and other users' data out of prompts (LLM02 / LLM07). Anything in the context can be echoed back. Don't put API keys, cross-tenant data, or the full system prompt where the model can repeat it.
    • Constrain tool and agent permissions (LLM06: Excessive Agency). Scope tools to the minimum, require confirmation for destructive or irreversible actions, and validate every tool argument.
    • Bound consumption (LLM10: Unbounded Consumption). Cap tokens, request rate, and loop/recursion depth so a crafted input can't run up cost or hang the system.
    • Isolate retrieval data (LLM08: Vector and Embedding Weaknesses). In RAG, treat the vector store as a trust boundary: partition embeddings per tenant so one user can't retrieve another's data, and validate documents before indexing so poisoned content can't steer answers.
    // BAD: trusting model output as a command or as markup
    const sql = await llm.generate(`Write SQL for: ${userQuestion}`);
    await db.query(sql);                                   // arbitrary query execution
    container.innerHTML = await llm.reply(userMessage);   // stored XSS, via the model
    
    // GOOD: model output is data — parse defensively, then validate, then encode
    let intent;
    try {
      intent = CommandSchema.parse(JSON.parse(await llm.replyJson(userMessage)));
    } catch {
      throw new ValidationError('unexpected model output'); // JSON.parse or schema failed
    }
    await runAllowlistedAction(intent.action, intent.params);
    container.textContent = await llm.reply(userMessage);
    

    Security Review Checklist

    ### Authentication
    - [ ] Passwords hashed with bcrypt/scrypt/argon2 (salt rounds ≥ 12)
    - [ ] Session tokens are httpOnly, secure, sameSite
    - [ ] Login has rate limiting
    - [ ] Password reset tokens expire
    
    ### Authorization
    - [ ] Every endpoint checks user permissions
    - [ ] Users can only access their own resources
    - [ ] Admin actions require admin role verification
    
    ### Input
    - [ ] All user input validated at the boundary
    - [ ] SQL queries are parameterized
    - [ ] HTML output is encoded/escaped
    - [ ] Server-side URL fetches are allowlisted (no SSRF to internal services)
    
    ### Data
    - [ ] No secrets in code or version control
    - [ ] Sensitive fields excluded from API responses
    - [ ] PII encrypted at rest (if applicable)
    - [ ] Personal data is classified, collected against a stated purpose, and minimized
    - [ ] Personal data has a retention limit and a working deletion path (incl. backups/indexes)
    - [ ] Export/delete (data-subject) requests are supported where required; sharing with third parties has consent
    
    ### Infrastructure
    - [ ] Security headers configured (CSP, HSTS, etc.)
    - [ ] CORS restricted to known origins
    - [ ] Dependencies audited for vulnerabilities
    - [ ] Error messages don't expose internals
    
    ### Supply Chain
    - [ ] One authoritative lockfile committed; CI uses that manager's frozen/immutable install
    - [ ] Native audit triaged by reachability and fix risk; dependency install scripts blocked unless explicitly approved
    - [ ] New dependencies reviewed (ownership, provenance, release age, transitive graph)
    
    ### AI / LLM (if used)
    - [ ] Model output treated as untrusted (no eval/SQL/innerHTML/shell)
    - [ ] Secrets and other users' data kept out of prompts
    - [ ] Tool/agent permissions scoped; destructive actions require confirmation
    

    See Also

    For detailed security checklists and pre-commit verification steps, see ../../references/security-checklist.md.

    Common Rationalizations

    Rationalization Reality
    "This is an internal tool, security doesn't matter" Internal tools get compromised. Attackers target the weakest link.
    "We'll add security later" Security retrofitting is 10x harder than building it in. Add it now.
    "No one would try to exploit this" Automated scanners will find it. Security by obscurity is not security.
    "The framework handles security" Frameworks provide tools, not guarantees. You still need to use them correctly.
    "It's just a prototype" Prototypes become production. Security habits from day one.
    "Threat modeling is overkill here" Five minutes of "how would I attack this?" prevents the design flaws no control can patch later.
    "It's just LLM output, it's only text" That "text" can be a SQL statement, a script tag, or a shell command. Treat it like any untrusted input.
    "The audit passed, so the dependency is safe" Audits match known advisories. They do not detect a newly malicious package or make unreviewed install scripts safe to execute.
    "Collect it now, we might need it later" Data you don't hold can't be breached, subpoenaed, or mis-deleted. "Might need it" is breach scope, not a purpose.
    "We'll handle deletion requests manually" Manual erasure misses backups, caches, and analytics copies. If the schema can't find a user's data, you can't honor the request — design for it.
    "Compliance is legal's problem, not ours" Export, deletion, retention, and consent are schema and code. Legal can't bolt them on after you've smeared PII across ten systems.

    Red Flags

    • User input passed directly to database queries, shell commands, or HTML rendering
    • Secrets in source code or commit history
    • API endpoints without authentication or authorization checks
    • Missing CORS configuration or wildcard (*) origins
    • No rate limiting on authentication endpoints
    • Stack traces or internal errors exposed to users
    • Dependencies with known critical vulnerabilities, competing lockfiles at one installation boundary, non-reproducible installs, or blanket-approved scripts
    • Server fetches user-supplied URLs without an allowlist (SSRF)
    • LLM/model output passed into a query, the DOM, a shell, or eval
    • Secrets, PII, or the full system prompt placed inside an LLM context window
    • Personal data collected with no stated purpose, retention limit, or deletion path
    • PII sent to analytics/ad/LLM vendors with no consent or data-processing agreement
    • "Delete my account" that only flips a flag while the personal data lingers in stores and backups

    Verification

    After implementing security-relevant code:

    • The native audit has no unmitigated reachable critical/high findings; CI preserves the authoritative lockfile and blocks unreviewed dependency scripts
    • No secrets in source code or git history
    • All user input validated at system boundaries
    • Authentication and authorization checked on every protected endpoint
    • Security headers present in response (check with browser DevTools)
    • Error responses don't expose internal details
    • Rate limiting active on auth endpoints
    • Server-side URL fetches validated against an allowlist (no SSRF)
    • LLM/model output validated and encoded before use (if AI features present)
    • Personal data is classified, minimized to a stated purpose, and has a retention limit
    • Deletion and export requests work end-to-end (including backups, caches, and analytics copies)

    Reproducido de addyosmani/agent-skills bajo licencia MIT. Leer esta página en markdown.

    Archivos

    1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Necesita en el PATH:git

    Variables de entorno:ALLOWED_ORIGINSSESSION_SECRETSTRIPE_API_KEY

    Detalles

    Creador
    addyosmani
    Categoría
    Seguridad
    Licencia
    MIT
    Recursos incluidos
    Solo SKILL.md
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de addyosmani/agent-skills

    Este repo incluye 24 skills. Si instalas uno, normalmente ya tienes los demás.

    Crea especificaciones antes de programar: úsalo al iniciar un proyecto o cambio sin spec, cuando los requisitos son ambiguos, o cuando un requerimiento debe descomponerse en un mapa de módulos.

    Costo de contexto al activarse
    3k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    anteayer
    herramientas desarrollo

    Realiza revisión de código en múltiples ejes. Úsalo antes de fusionar cualquier cambio, sea escrito por ti, otro agente o una persona, para evaluar la calidad antes de entrar a la rama principal.

    Costo de contexto al activarse
    5.1k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 9 días
    testing qa

    Divide el trabajo en tareas ordenadas. Úsalo cuando tengas un spec o requisitos claros y necesites descomponer el trabajo en tareas implementables, estimar alcance o paralelizar.

    Costo de contexto al activarse
    2.4k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    productividad

    Instrumenta el código para que el comportamiento en producción sea visible y diagnosticable, con logging, métricas, tracing y alertas.

    Costo de contexto al activarse
    2.8k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 9 días
    devops infraestructura

    Descubre e invoca las skills de agente adecuadas; es la meta-skill que gobierna cómo se descubren y aplican todas las demás skills según la fase de desarrollo.

    Costo de contexto al activarse
    2.6k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 9 días
    productividad

    Entrega los cambios de forma incremental. Úsalo al implementar cualquier funcionalidad que toque más de un archivo, o cuando vayas a escribir mucho código de golpe.

    Costo de contexto al activarse
    2.4k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 9 días
    herramientas desarrollo

    Skills relacionados

    Guía para diseñar APIs e interfaces estables. Úsalo al diseñar APIs, límites entre módulos, endpoints REST o GraphQL, o contratos de tipos entre frontend y backend.

    Costo de contexto al activarse
    3.7k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    desarrollo apis

    Prueba en navegadores reales usando Chrome DevTools MCP. Úsalo al construir o depurar cualquier cosa que corra en un navegador, o para inspeccionar DOM, consola, red o rendimiento.

    Costo de contexto al activarse
    3.6k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 2 meses
    testing qa

    Automatiza la configuración de pipelines de CI/CD: úsalo al montar o modificar pipelines de build y despliegue, o al configurar puertas de calidad y test runners en CI.

    Costo de contexto al activarse
    2.8k tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 meses
    devops infraestructura