Imports instincts from file or URL into project/global scope, previews conflicts by confidence score, merges with confirmation. Supports --dry-run, --force, --min-confidence, --scope flags.
From claude-combinenpx claudepluginhub binyamineden/claude-combine --plugin claude-combine/instinct-importImports instincts from file or URL into project/global scope, previews conflicts by confidence score, merges with confirmation. Supports --dry-run, --force, --min-confidence, --scope flags.
/instinct-importImports instincts from an exported file into current project's .claude/instincts.md, applying confidence decay to new ones, merging matches, resolving conflicts, and reporting changes.
/instinct-importImports instincts from local file or URL into project/global scope. Parses/validates YAML, detects duplicates by ID/confidence, adds new or updates higher-confidence ones. Supports --dry-run, --force, --min-confidence, --scope.
/instinct-importImports instincts from a JSON file, merging with existing ones while maintaining confidence scores and deduplicating similar patterns.
/instinct-importImports instincts from local file or HTTP(S) URL into project/global scope. Previews new instincts, duplicates/conflicts, and updates; merges with confirmation unless --force, supports --dry-run and --min-confidence.
/instinct-importImports coding instincts from files, URLs, teammates, Skill Creator repos, or backups. Previews new/duplicate/conflicting instincts by confidence, merges/updates/skips, and saves to inherited directory.
Run the instinct CLI using the plugin root path:
python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" import <file-or-url> [--dry-run] [--force] [--min-confidence 0.7] [--scope project|global]
Or if CLAUDE_PLUGIN_ROOT is not set (manual installation):
python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py import <file-or-url>
Import instincts from local file paths or HTTP(S) URLs.
/instinct-import team-instincts.yaml
/instinct-import https://github.com/org/repo/instincts.yaml
/instinct-import team-instincts.yaml --dry-run
/instinct-import team-instincts.yaml --scope global --force
~/.claude/homunculus/projects/<project-id>/instincts/inherited/~/.claude/homunculus/instincts/inherited/ Importing instincts from: team-instincts.yaml
================================================
Found 12 instincts to import.
Analyzing conflicts...
## New Instincts (8)
These will be added:
✓ use-zod-validation (confidence: 0.7)
✓ prefer-named-exports (confidence: 0.65)
✓ test-async-functions (confidence: 0.8)
...
## Duplicate Instincts (3)
Already have similar instincts:
WARNING: prefer-functional-style
Local: 0.8 confidence, 12 observations
Import: 0.7 confidence
→ Keep local (higher confidence)
WARNING: test-first-workflow
Local: 0.75 confidence
Import: 0.9 confidence
→ Update to import (higher confidence)
Import 8 new, update 1?
When importing an instinct with an existing ID:
--force is usedImported instincts are marked with:
source: inherited
scope: project
imported_from: "team-instincts.yaml"
project_id: "a1b2c3d4e5f6"
project_name: "my-project"
--dry-run: Preview without importing--force: Skip confirmation prompt--min-confidence <n>: Only import instincts above threshold--scope <project|global>: Select target scope (default: project)After import:
PASS: Import complete!
Added: 8 instincts
Updated: 1 instinct
Skipped: 3 instincts (equal/higher confidence already exists)
New instincts saved to: ~/.claude/homunculus/instincts/inherited/
Run /instinct-status to see all instincts.