/instinct-export Command
Exports instincts to a shareable format for:
- Sharing with teammates
- Transferring to a new machine
- Contributing to project conventions
Command Syntax
/instinct-export [options]
Export only specified domain (e.g., testing, security)
Only export instincts above threshold (0.0-1.0)
Output file path (prints to stdout if omitted)
Export scope: project, global, or all
Examples
# Export all personal instincts
/instinct-export
# Export only testing instincts
/instinct-export --domain testing
# Only high-confidence instincts
/instinct-export --min-confidence 0.7
# Export to file
/instinct-export --output team-instincts.yaml
# Export current project only
/instinct-export --scope project --output project-instincts.yaml
# Instincts Export
# Generated: 2026-03-03
# Source: personal
# Count: 12 instincts
---
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
---
# Prefer Functional Style
## Action
Use functional patterns over classes.
- Commands:
/instinct-import, /instinct-status, /promote