원클릭으로
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/`