From memoria
Exports personal instincts to shareable YAML/JSON/MD files for team sharing or backup. Filters by domain, min-confidence; strips sensitive data.
How this command is triggered — by the user, by Claude, or both
Slash command
/memoria:instinct-exportThe summary Claude sees in its command listing — used to decide when to auto-load this command
# 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. Read instincts from `~/.claude/homunculus/instincts/personal/` 2. Filter based on flags 3. Strip sensitive information: - Remove session IDs - Remove file paths (keep only patterns) - Remove timestamps older than "last week" 4. Generate export file ## Output Format Creates a YAML file: ## Privacy Considerations Exports include: - ✅ Trigger patterns - ✅ Actions - ✅ Confiden...
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
~/.claude/homunculus/instincts/personal/Creates a YAML file:
# Instincts Export
# Generated: 2025-01-22
# Source: personal
# Count: 12 instincts
version: "2.0"
exported_by: "continuous-learning-v2"
export_date: "2025-01-22T10:30:00Z"
instincts:
- id: prefer-functional-style
trigger: "when writing new functions"
action: "Use functional patterns over classes"
confidence: 0.8
domain: code-style
observations: 8
- id: test-first-workflow
trigger: "when adding new functionality"
action: "Write test first, then implementation"
confidence: 0.9
domain: testing
observations: 12
- id: grep-before-edit
trigger: "when modifying code"
action: "Search with Grep, confirm with Read, then Edit"
confidence: 0.7
domain: workflow
observations: 6
Exports include:
Exports do NOT include:
--domain <name>: Export only specified domain--min-confidence <n>: Minimum confidence threshold (default: 0.3)--output <file>: Output file path (default: instincts-export-YYYYMMDD.yaml)--format <yaml|json|md>: Output format (default: yaml)--include-evidence: Include evidence text (default: excluded)npx claudepluginhub jartan-llc/grimoire --plugin memoria/instinct-exportExports personal instincts to shareable YAML/JSON/MD files for team sharing or backup. Filters by domain, min-confidence; strips sensitive data.
/instinct-exportExports instincts from project/global/all scopes to YAML file or stdout, filtered by domain and min-confidence with custom output path.
/exportExports personal instincts to a timestamped .tar.gz file in .claude/homunculus/exports/ for sharing. Optionally includes metadata manifest with count and domains.
/instinct-exportExports learned instinct patterns to a JSON file for sharing. Optionally accepts a custom filename.
/instinct-exportExports learned-skills (instincts) from .bot/learned-skills/ to a portable JSON file for backup or transfer between machines. Supports scope and minimum score filtering.
/instinct-exportExports instincts from project/global/all scopes to YAML file or stdout, filtered by domain and min-confidence with custom output path.