소스 정보
- 저장소
- topoteretes/cognee-integrations
- 최근 소스 활동
- 2026년 8월 13일 14:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 82
- 포크
- 114
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/topoteretes/cognee-integrations --skill setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Search Cognee memory. Session memory is automatically searched on every prompt via hooks. Use this skill explicitly for permanent knowledge graph search, filtered category search, or when you need more results than the automatic lookup provides.
Use when Codex should remember, recall, search, improve, or forget information using Cognee.
Switch this session to another Cognee dataset. Lists the datasets you can write to, lets you pick one, syncs the current session into its dataset, then starts a fresh Cognee session bound to the chosen dataset. All later saves and recalls target the new dataset and the status line shows it.
SOC 직업 분류 기준
| name | setup |
| description | Use when setting up, checking, or connecting Cognee through the cognee CLI from Codex. |
Use this skill when the user asks to configure Cognee, check whether Cognee is ready, connect to a local or cloud Cognee instance, or inspect CLI capability.
uv run cognee-cli ... as the primary interface..env, config files, shell history, or command output.Start with the local command surface:
uv run cognee-cli --help
uv run cognee-cli --version
If dependencies are missing, use the repository command:
uv sync --dev --all-extras --reinstall
Inspect configuration without exposing values:
uv run cognee-cli config list
Use config get <KEY> only for non-secret settings. For secret-like keys,
report whether the key appears configured rather than showing the value.
For a local backend:
uv run cognee-cli serve --url http://localhost:8000
For a hosted instance with an API key, do not paste the key into the transcript. Use an environment variable or an already configured credential.
For the plugin itself, durable configuration (COGNEE_BASE_URL,
COGNEE_API_KEY, LLM_API_KEY, ...) belongs in ~/.cognee/.env — a one-time
setup file shared with the Claude Code plugin, loaded at session start. Shell
exports still override it per terminal. Guide the user to edit that file
rather than exporting in every shell; never echo its secret values.
The file may hold both modes' variables at once: with nothing exported, cloud
wins (COGNEE_BASE_URL routes the connection). To pin one terminal to a mode,
the user exports COGNEE_BACKEND=local or COGNEE_BACKEND=cloud before
launching — that beats the URL rule, and unset COGNEE_BASE_URL is NOT a way
to go local (the file re-injects the URL on the next launch).
To disconnect:
uv run cognee-cli serve --logout
When the user wants concurrent or multi-agent use, prefer a running Cognee API server and pass:
uv run cognee-cli --api-url http://localhost:8000 <command>
For isolated session history and permissions, include:
uv run cognee-cli --user-id <uuid> <command>