기타by affaan-m
인스팅트 내보내기
프로젝트 또는 전역 범위의 인스팅트를 파일로 내보내는 기능입니다.
한 줄 평가 — 다음 사람 도와주세요
언제 쓰나
프로젝트나 전역에 설정된 인스팅트를 파일로 저장하거나 백업하고 싶을 때
SKILL.md
원본 affaan-m/everything-claude-code (841beea) 그대로 표시. 복사 → 저장하면 Claude Code가 인식합니다.
--- name: instinct-export description: Export instincts from project/global scope to a file command: /instinct-export --- # Instinct Export Command Exports instincts to a shareable format. Perfect for: - Sharing with teammates - Transferring to a new machine - Contributing to project conventions ## Usage ``` /instinct-export # Export all personal instincts /instinct-export --domain testing # Export only testing instincts /instinct-export --min-confidence 0.7 # Only export high-confidence instincts /instinct-export --output team-instincts.yaml /instinct-export --scope project --output project-instincts.yaml ``` ## What to Do 1. Detect current project context 2. Load instincts by selected scope: - `project`: current project only - `global`: global only - `all`: project + global merged (default) 3. Apply filters (`--domain`, `--min-confidence`) 4. Write YAML-style export to file (or stdout if no output path provided) ## Output Format Creates a YAML file: ```yaml # Instincts Export # Generated: 2025-01-22 # Source: personal # Count: 12 instincts --- id: prefer-functional-style trigger: "when writing new functions" confidence: 0.8 domain: code-style source: session-observation scope: project project_id: a1b2c3d4e5f6 project_name: my-app --- # Prefer Functional Style ## Action Use functional patterns over classes. ``` ## Flags - `--domain <name>`: Export only specified domain - `--min-confidence <n>`: Minimum confidence threshold - `--output <file>`: Output file path (prints to stdout when omitted) - `--scope <project|global|all>`: Export scope (default: `all`)
필요한 도구
호버하면 설명CC
설치 + 호출 (2단계)
Claude Code CLI 기준.
- 1
SKILL.md 저장
아래 버튼으로 복사 → 다음 경로로 저장.
~/.claude/skills/everything-claude-code-126/SKILL.md - 2
호출
Claude Code 채팅창에서 자연어로 부르면 자동 발동:
예) 프로젝트나 전역에 설정된 인스팅트를 파일로 저장하거나 백업하고 싶을 때
트리거가 안 잡히면 SKILL.md의
description줄에 더 구체적인 한국어 키워드를 추가해보세요.