plugins/continuous-learning/skills/instinct-import/SKILL.md
Import instincts from an export file
npx skillsauth add jason-hchsieh/marketplace instinct-importInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are importing instincts from an export file.
Check for:
.claude/learning/imports/.claude/learning/exports/{
"version": "1.0", // Must match
"instincts": [...] // Must be array
}
For each instinct in the import:
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 |
Create instinct files in .claude/learning/instincts/imported/:
# Instinct: [name]
## Trigger
[trigger]
## Action
[action]
## Metadata
- Confidence: [score]
- Domain: [domain]
- Imported: [timestamp]
- Source: imported
## 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
/instinct-import path/to/export.json
/instinct-import # looks in default locations
tools
Bootstrap versioning for a project - detect project type, initialize git-cliff config, and generate initial CHANGELOG.md using semantic versioning
development
Validate version consistency across all project files, check semver format, git tag alignment, and changelog synchronization per https://semver.org/
tools
Generate or update CHANGELOG.md using git-cliff from conventional commit history - see https://git-cliff.org/docs/category/usage
tools
Bump the project version following semver, update all version files per https://semver.org/