ワンクリックで
instinct-export
Export instincts for sharing with teammates or other projects. Strips sensitive data and outputs shareable YAML.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Export instincts for sharing with teammates or other projects. Strips sensitive data and outputs shareable YAML.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Turn unstructured documents into validated, auditable structured data with clear schemas and edge-case handling
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.
Java coding standards for Spring Boot services: naming, immutability, Optional usage, streams, exceptions, generics, and project layout.
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.
Software architecture specialist for system design, scalability, and technical decision-making. Use when planning new features, refactoring large systems, or making architectural decisions.
Build and compilation error resolution specialist. Fixes build/type errors with minimal diffs, no architectural changes. Use when build fails or type errors occur.
| name | instinct-export |
| description | Export instincts for sharing with teammates or other projects. Strips sensitive data and outputs shareable YAML. |
Export instincts to a shareable format for teammates, other projects, or backups.
/instinct-export # Export all personal instincts
/instinct-export --domain testing # Export only testing instincts
/instinct-export --min-confidence 0.7 # Only high-confidence instincts
/instinct-export --output team-instincts.yaml
~/.codex/instincts/personal/version: "2.0"
export_date: "2026-02-08T10:30:00Z"
instincts:
- id: prefer-functional-style
trigger: "when writing new functions"
action: "Use functional patterns over classes"
confidence: 0.8
domain: code-style
observations: 8
Exports include: trigger patterns, actions, confidence scores, domains, observation counts.
Exports do NOT include: actual code snippets, file paths, session transcripts, personal identifiers.
--domain <name>: Export only specified domain--min-confidence <n>: Minimum confidence threshold (default: 0.3)--output <file>: Output file path--format <yaml|json|md>: Output format (default: yaml)