一键导入
instinct-export
Export instincts for sharing with teammates or backup
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Export instincts for sharing with teammates or backup
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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/`