Exports instincts from project/global/all scopes to YAML file or stdout, filtered by domain and min-confidence with custom output path.
npx claudepluginhub divenhuang88/everything-claude-code# Instinct Export Command Exports instincts to a shareable format. Perfect for: - Sharing with teammates - Transferring to a new machine - Contributing to project conventions ## Usage ## What to Do 1. Detect current project context 2. Load instincts by selected scope: - `project`: current project only - `global`: global only - `all`: project + global merged (default) 3. Apply filters (`--domain`, `--min-confidence`) 4. Write YAML-style export to file (or stdout if no output path provided) ## Output Format Creates a YAML file: ## Flags - `--domain <name>`: Export only sp...
/instinct-exportExports instincts from project/global/all scopes to YAML file or stdout, filtered by domain and min-confidence with custom output path.
/instinct-exportExports high-confidence project instincts (>0.7 threshold, configurable) from .claude/instincts.md to portable .claude/instincts-export.md, stripping project context. Reports exported and skipped items.
/instinct-exportExports instincts from project/global/all scopes to YAML file or stdout. Supports --domain, --min-confidence, --output, and --scope flags.
/instinct-exportExports learned instincts as a JSON file for sharing with others. Optionally specify output filename like mobile-patterns.json.
/instinct-exportExports instincts from project/global/all scopes to YAML file or stdout, filtered by domain and min-confidence with custom output path.
/instinct-exportExports instincts from project/global/all scopes to YAML file or stdout, filtered by domain and min-confidence with custom output path.
Exports instincts to a shareable format. Perfect for:
/instinct-export # Export all personal instincts
/instinct-export --domain testing # Export only testing instincts
/instinct-export --min-confidence 0.7 # Only export high-confidence instincts
/instinct-export --output team-instincts.yaml
/instinct-export --scope project --output project-instincts.yaml
project: current project onlyglobal: global onlyall: project + global merged (default)--domain, --min-confidence)Creates a YAML file:
# Instincts Export
# Generated: 2025-01-22
# 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.
--domain <name>: Export only specified domain--min-confidence <n>: Minimum confidence threshold--output <file>: Output file path (prints to stdout when omitted)--scope <project|global|all>: Export scope (default: all)