d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
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
|
|
```
|