Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

clawtrol

clawtrol contiene 24 skills recopiladas de wolverin0, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
24
Stars
41
actualizado
2026-04-27
Forks
7
Cobertura ocupacional
6 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

add-dependency
Desarrolladores de software

Use when the user wants to add a new library, package, or dependency. Enforces the discipline that prevents framework version drift — the "AI assumes you're on version 15, generates code for 16.5" failure mode documented in the LLM failure-mode research.

2026-04-27
add-endpoint
Desarrolladores de software

Use when the user wants to add a new API endpoint, route, or handler. Enforces the "search before adding" discipline that prevents duplicate endpoints — the most common vibe-coding failure mode. Activate any time the request mentions adding a route, endpoint, handler, controller, or HTTP method.

2026-04-27
audit-blind-spots
Analistas de seguridad de la información

Walk the B1-B15 AI-to-AI blind-spot catalog systematically. Use during the audit pipeline AFTER hard-stops and Tambon hunt and BEFORE the 13 domain audits. Output: PRESENT / NOT PRESENT for each B-class with evidence. Findings flow into the appropriate domains.

2026-04-27
audit-domain-01-security
Analistas de seguridad de la información

Audit the security domain — auth, authz, secrets, transport, sensitive data exposure, dependency CVEs. Run as part of /audit Phase E.

2026-04-27
audit-domain-02-architecture
Analistas de garantía de calidad de software y probadores

Audit the architecture and code quality domain — module boundaries, abstraction layers, code organization, naming, documentation. Run as part of /audit Phase E.

2026-04-27
audit-domain-03-database
Arquitectos de bases de datos

Audit the database and data layer — schema design, query patterns, migrations, indexing, RLS, soft-delete, transactions. Run as part of /audit Phase E.

2026-04-27
audit-domain-04-devops
Administradores de redes y sistemas informáticos

Audit the infra and DevOps domain — CI/CD, deployment, IaC, secrets management, environments, logging, observability. Run as part of /audit Phase E.

2026-04-27
audit-domain-05-performance
Analistas de garantía de calidad de software y probadores

Audit the performance domain — query efficiency, caching, async / blocking calls, payload sizes, scaling assumptions. Run as part of /audit Phase E.

2026-04-27
audit-domain-06-ux-a11y
Analistas de garantía de calidad de software y probadores

Audit the UI/UX and accessibility domain — error states, loading states, form validation, keyboard nav, ARIA, color contrast, mobile responsiveness. Run as part of /audit Phase E.

2026-04-27
audit-domain-07-reliability
Analistas de garantía de calidad de software y probadores

Audit the reliability domain — error handling, retries, idempotency, race conditions, partial failures, timeouts, graceful degradation. Run as part of /audit Phase E.

2026-04-27
audit-domain-08-compliance
Abogados

Audit the legal/privacy/compliance signals — privacy policy alignment, data retention, GDPR/CCPA basics, cookie consent, export/delete capabilities. Run as part of /audit Phase E.

2026-04-27
audit-domain-09-maintainability
Analistas de garantía de calidad de software y probadores

Audit the dev experience and maintainability — local setup, documentation, test quality, CI feedback time, debuggability. Run as part of /audit Phase E.

2026-04-27
audit-domain-10-cost
Desarrolladores de software

Audit the cost and billing risk domain — runaway loops, unbounded LLM/API calls, missing rate limits on paid services, infrastructure cost amplifiers. Run as part of /audit Phase E.

2026-04-27
audit-domain-11-demo-vs-prod
Analistas de garantía de calidad de software y probadores

Audit the gap between demo-quality and production-quality — hardcoded test data, dev-only configurations shipped, missing prod hardening. Run as part of /audit Phase E.

2026-04-27
audit-domain-12-missing
Desarrolladores de software

Audit what a normal production app at this scale would have but is absent — health checks, error tracking, feature flags, audit logs, on-call. Run as part of /audit Phase E.

2026-04-27
audit-domain-13-code-integrity
Analistas de garantía de calidad de software y probadores

Audit code integrity and coherence — duplication, hallucinated references, Tambon signatures, spec drift, Frankenstein patterns, mystery code. THIS DOMAIN incorporates findings from the Tambon hunt and most of the blind-spots walk. Run as part of /audit Phase E.

2026-04-27
audit-fix-generator
Desarrolladores de software

Generate a detailed AI fix prompt for a specific audit finding. Use when the user asks "/audit-fix F-X.Y" or "give me the fix prompt for finding N." Produces a complete prompt the user can hand to a fresh AI session (Claude Code, Cursor, ChatGPT) to remediate the finding with verification and rollback steps.

2026-04-27
audit-hard-stops
Analistas de garantía de calidad de software y probadores

Walk the H1-H9 hard-stops catalog systematically against an audit scope. Use as the FIRST audit phase after audit-method completes. Runs detection commands for each hard stop class and reports FOUND / NOT FOUND with evidence. If any hard stop is found, the audit verdict locks to 🛑 DO NOT LAUNCH.

2026-04-27
audit-method
Analistas de garantía de calidad de software y probadores

Run the methodology setup phase of a technical audit — fingerprint the stack, inventory the repository, and produce a system map. Use this BEFORE running any audit domains. Output: detected stack, repo summary, and high-level architecture in 3-5 paragraphs. No findings yet.

2026-04-27
audit-orchestrator
Analistas de garantía de calidad de software y probadores

Conduct a full technical due diligence audit of a vibe-coded codebase. Use when the user types `/audit`, asks for a "full audit," asks for a "due diligence review," asks "is this codebase ready to ship?", or asks for a comprehensive code review of an entire repository (not a single PR). Coordinates the 13 domain skills, the hard-stop hunt, the Tambon LLM-signature hunt, and the blind-spot walk. Produces a single dual-layer report (founder view + technical evidence).

2026-04-27
audit-tambon-hunt
Analistas de garantía de calidad de software y probadores

Hunt the three Tambon LLM-failure-mode signatures (Hallucinated Object, Wrong Attribute, Silly Mistake) across an audit scope. Use during the audit pipeline AFTER hard-stops and BEFORE blind-spots. Output: counts per signature, top occurrences, density per 1000 LoC. Findings flow into Domain 13 (Code Integrity).

2026-04-27
review-duplication
Desarrolladores de software

Use when the user asks to find duplicate code, redundant logic, or "things implemented in multiple places." Also use proactively when working in an area of the codebase that feels suspicious — multiple utility files, inconsistent naming, parallel implementations. Hunts the Type-1 through Type-4 code-clone patterns from the LLM-failure-mode research.

2026-04-27
review-security
Analistas de seguridad de la información

Use when the user asks for a security review, security audit, or "is this safe to deploy?" Also use proactively before any push to production or before adding endpoints that touch authentication, payments, or user data. Hunts the H1-H8 hard stops from the technical due diligence audit.

2026-04-27
deploy-to-vm
Administradores de redes y sistemas informáticos

Deploy clawtrol changes to the Ubuntu VM (192.168.100.186) via git push → remote pull → optional docker restart → smoke check. Enforces safety rails (no uncommitted work, no out-of-sync branches, no surprise force-pushes). Use when ready to ship a change to the running instance at the VM.

2026-04-19