Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 11:55:55 +08:00

1.8 KiB

name, description, command
name description command
instinct-export Exportar instintos del alcance del proyecto/global a un archivo /instinct-export

Comando Instinct Export

Exporta los instintos a un formato compartible. Perfecto para:

  • Compartir con compañeros de equipo
  • Transferir a una nueva máquina
  • Contribuir a las convenciones del proyecto

Uso

/instinct-export                           # Exportar todos los instintos personales
/instinct-export --domain testing          # Exportar solo instintos de testing
/instinct-export --min-confidence 0.7      # Solo exportar instintos de alta confianza
/instinct-export --output team-instincts.yaml
/instinct-export --scope project --output project-instincts.yaml

Qué Hacer

  1. Detectar el contexto actual del proyecto
  2. Cargar instintos por alcance seleccionado:
    • project: solo el proyecto actual
    • global: solo global
    • all: proyecto + global fusionados (por defecto)
  3. Aplicar filtros (--domain, --min-confidence)
  4. Escribir la exportación en formato YAML al archivo (o stdout si no se proporciona ruta de salida)

Formato de Salida

Crea un archivo YAML:

# Exportación de Instintos
# Generado: 2025-01-22
# Fuente: personal
# Cantidad: 12 instintos

---
id: prefer-functional-style
trigger: "when writing new functions"
confidence: 0.8
domain: code-style
source: session-observation
scope: project
project_id: a1b2c3d4e5f6
project_name: my-app
---

# Preferir Estilo Funcional

## Acción
Usar patrones funcionales sobre clases.

Flags

  • --domain <nombre>: Exportar solo el dominio especificado
  • --min-confidence <n>: Umbral mínimo de confianza
  • --output <archivo>: Ruta del archivo de salida (imprime a stdout si se omite)
  • --scope <project|global|all>: Alcance de exportación (por defecto: all)