with one click
instinct-export
Export instincts for sharing with teammates or backup
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Export instincts for sharing with teammates or backup
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate changelog entries following Keep a Changelog format
Generate a well-structured pull request with summary and test plan
Cluster related instincts into skills, commands, or agents
Import instincts from teammates or community collections
View learned instincts grouped by domain with confidence levels
Clean up project files, remove cruft, and organize codebase
| name | instinct-export |
| description | Export instincts for sharing with teammates or backup |
| user-invocable | true |
Export learned instincts for sharing with teammates or transferring to another machine.
$ARGUMENTS — Optional: domain filter, output format, or output pathBy default, export all instincts with confidence >= 0.5.
Filters:
/instinct-export code-style — Export only code-style domain/instinct-export >0.7 — Export only strong instincts/instinct-export all — Export everything including tentativeBefore export, strip sensitive information:
Markdown (default):
---
id: prefer-const-assertions
trigger: "when defining constant arrays or objects in TypeScript"
confidence: 0.7
domain: code-style
---
# Use `as const` for constant definitions
TypeScript `as const` assertions provide literal types and readonly guarantees.
JSON:
{
"instincts": [
{
"id": "prefer-const-assertions",
"trigger": "when defining constant arrays or objects in TypeScript",
"confidence": 0.7,
"domain": "code-style",
"action": "Use `as const` for constant definitions"
}
],
"exported_at": "2026-02-05",
"count": 1
}
Default: ./instincts-export/ in the current directory.
With path argument: /instinct-export ~/shared/my-instincts/
## Export Complete
- Exported: 12 instincts across 4 domains
- Format: Markdown
- Location: ./instincts-export/
- Share with: `cp -r ./instincts-export/ ~/shared/team-instincts/`
- Import on other machine: `/instinct-import ./instincts-export/`