mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-12 03:03:23 +08:00
Adds a complete Spanish translation of the ECC documentation under docs/es/, mirroring the Turkish (docs/tr/) translation in scope. 141 files covering agents, commands, rules, skills, contexts, examples, and core docs. Updates root README.md with the Spanish language link. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
60 lines
1.7 KiB
Markdown
60 lines
1.7 KiB
Markdown
---
|
|
name: instinct-status
|
|
description: Mostrar los instintos aprendidos (proyecto + global) con confianza
|
|
command: true
|
|
---
|
|
|
|
# Comando Instinct Status
|
|
|
|
Muestra los instintos aprendidos para el proyecto actual más los instintos globales, agrupados por dominio.
|
|
|
|
## Implementación
|
|
|
|
Ejecutar la CLI de instintos usando la ruta raíz del plugin:
|
|
|
|
```bash
|
|
python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" status
|
|
```
|
|
|
|
O si `CLAUDE_PLUGIN_ROOT` no está configurado (instalación manual):
|
|
|
|
```bash
|
|
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py status
|
|
```
|
|
|
|
## Uso
|
|
|
|
```
|
|
/instinct-status
|
|
```
|
|
|
|
## Qué Hacer
|
|
|
|
1. Detectar el contexto actual del proyecto (hash de remote/ruta de git)
|
|
2. Leer instintos del proyecto desde `~/.claude/homunculus/projects/<project-id>/instincts/`
|
|
3. Leer instintos globales desde `~/.claude/homunculus/instincts/`
|
|
4. Fusionar con reglas de precedencia (el proyecto sobreescribe global cuando hay colisión de IDs)
|
|
5. Mostrar agrupados por dominio con barras de confianza y estadísticas de observación
|
|
|
|
## Formato de Salida
|
|
|
|
```
|
|
============================================================
|
|
ESTADO DE INSTINTOS - 12 en total
|
|
============================================================
|
|
|
|
Proyecto: my-app (a1b2c3d4e5f6)
|
|
Instintos del proyecto: 8
|
|
Instintos globales: 4
|
|
|
|
## CON ALCANCE DE PROYECTO (my-app)
|
|
### WORKFLOW (3)
|
|
███████░░░ 70% grep-before-edit [proyecto]
|
|
disparador: when modifying code
|
|
|
|
## GLOBAL (aplican a todos los proyectos)
|
|
### SECURITY (2)
|
|
█████████░ 85% validate-user-input [global]
|
|
disparador: when handling user input
|
|
```
|