← All skills
Tencent SkillHub · Developer Tools

Code Assistant

Asistente de programación especializado. Analiza código, encuentra bugs, sugiere optimizaciones, refactoriza y genera documentación automáticamente.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Asistente de programación especializado. Analiza código, encuentra bugs, sugiere optimizaciones, refactoriza y genera documentación automáticamente.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/analyzer.ts

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

Code Assistant (Asistente de Programación Pro)

Una super-habilidad para desarrolladores. Va más allá de escribir código: analiza, depura, optimiza, refactoriza y documenta.

Capacidades

┌─────────────────────────────────────────────────────┐ │ CODE ASSISTANT │ ├─────────────────────────────────────────────────────┤ │ 🔍 Análisis │ Encuentra bugs y code smells │ │ ⚡ Optimización │ Mejora rendimiento y eficiencia │ │ 🔄 Refactor │ Limpia y estructura código │ │ 📝 Documenta │ Genera docstrings y README │ │ 🧪 Tests │ Crea tests unitarios │ │ 🔐 Seguridad │ Detecta vulnerabilidades │ └─────────────────────────────────────────────────────┘

Análisis de Código

# Analizar un archivo code analyze src/utils.ts # Analizar un directorio code analyze src/ --depth:2 # Buscar bugs específicos code bugs src/api/ code find-bugs src/ # Revisar complejidad code complexity src/heavy-function.ts

Optimización

# Sugerir optimizaciones code optimize src/slow-algorithm.py # Optimizar queries SQL code optimize-sql queries/ # Reducir bundle size code optimize-bundle src/

Refactorización

# Refactorizar archivo code refactor src/legacy-code.js # Aplicar convenciones (PEP8, ESLint rules) code format src/ --style:pep8 # Extraer función code extract-function src/long-file.ts --lines:45-80

Documentación

# Generar docstrings code document src/api/ # Crear README code readme src/my-project/ # Generar changelog code changelog --since:v1.0.0

Tests

# Generar tests unitarios code test-gen src/calculator.ts # Sugerir edge cases code edge-cases src/validator.py

Ejemplo de Uso

Usuario: code analyze src/users/auth.ts Bot: 🔍 Análisis de: src/users/auth.ts 📊 Métricas: ├── Líneas: 245 ├── Funciones: 12 ├── Complejidad ciclomática: 18 ⚠️ (alta) └── Cobertura de docs: 30% ⚠️ 🐛 Bugs Potenciales (2): 1. Línea 67: Race condition ```typescript // ❌ Problema if (user) { await saveUser(user); // user puede cambiar entre check y save } ``` 💡 Solución: Usar transacción o lock 2. Línea 142: SQL Injection ```typescript // ❌ Problema query(`SELECT * FROM users WHERE id = ${userId}`) ``` 💡 Solución: Usar parámetros preparados ⚡ Optimizaciones Sugeridas (3): 1. Línea 89: Usar Map en lugar de Object para lookups frecuentes 2. Línea 156: Memoizar resultado de getPermissions() 3. Línea 201: Lazy loading para módulo crypto 🔄 Refactorizaciones Sugeridas: 1. Extraer validateToken() a módulo separado 2. Aplicar patrón Repository para queries ¿Ejecutar alguna acción? [Documentar] [Refactorizar] [Generar Tests]

Lenguajes Soportados

LenguajeAnálisisDocsTestsTypeScript/JavaScript✅✅✅Python✅✅✅Go✅✅✅Rust✅✅⚠️Java✅✅✅C/C++⚠️⚠️⚠️

Integración con Coding Agents

Puede delegar tareas complejas a Codex, Claude Code o Pi: # Usar Codex para refactorizar code refactor src/legacy.ts --agent:codex # Usar Claude para documentar code document src/ --agent:claude

Configuración

VariableDescripciónDefaultCODE_DEFAULT_STYLEEstilo de códigoautoCODE_MAX_COMPLEXITYUmbral de complejidad15CODE_AUTO_FIXAplicar fixes automáticamentefalseCODE_IGNORE_PATTERNSPatrones a ignorarnode_modules,dist

Reglas de Análisis

El asistente detecta: Security: SQL injection, XSS, path traversal, hardcoded secrets Performance: N+1 queries, loops ineficientes, memory leaks Style: Nombres inconsistentes, funciones largas, código muerto Logic: Null checks faltantes, race conditions, off-by-one errors

Integración

self-repair: Los bugs encontrados pueden auto-corregirse knowledge-base: Busca en documentación indexada expert-researcher: Investiga mejores prácticas

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/analyzer.ts Scripts