Instinct Import Skill
You are importing instincts from an export file.
Instructions
1. Locate Import File
Check for:
- File path provided by user
- Files in
.claude/learning/imports/ - Recent exports in
.claude/learning/exports/
2. Validate Import
{
"version": "1.0", // Must match
"instincts": [...] // Must be array
}
3. Review Instincts
For each instinct in the import:
- Check if similar instinct already exists
- Assess relevance to current project
- Verify confidence score is valid (0.3-0.9)
4. Handle Conflicts
If an instinct with similar trigger exists:
| Scenario | Action |
|---|---|
| Imported confidence higher | Replace existing |
| Existing confidence higher | Keep existing |
| Similar confidence | Merge evidence, average confidence |
5. Import Instincts
Create instinct files in .claude/learning/instincts/imported/:
# Instinct: [name]
## Trigger
[trigger]
## Action
[action]
## Metadata
- Confidence: [score]
- Domain: [domain]
- Imported: [timestamp]
- Source: imported
6. Report
## Import Complete
### Summary
- Total in file: X
- Imported: Y
- Skipped (duplicates): Z
- Conflicts resolved: W
### Imported Instincts
| Name | Domain | Confidence | Status |
|------|--------|------------|--------|
| ... | ... | ... | new/merged |
### Skipped
| Name | Reason |
|------|--------|
| ... | duplicate/low-confidence/irrelevant |
### Next Steps
- Use `/instinct-status` to see all instincts
- Use `/evolve` if clusters form
Usage
/instinct-import path/to/export.json
/instinct-import # looks in default locations
