소스 정보
- 저장소
- jleechanorg/claude-commands
- 최근 소스 활동
- 2026년 6월 21일 22:59
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jleechanorg/claude-commands --skill mem0명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Token-efficient second opinion slash command /advice. Extracts decision point + artifact (≤150 lines), then fans out in parallel: (1) Opus subagent reviewer with fallback chain codex→agy→cursor, (2) /research on the decision topic, (3) /secondo multi-model opinion. Use instead of advisor() which ships the full conversation uncached.
Use this skill when working in repositories managed by Agent Orchestrator or when the user asks how to use `ao` properly. Covers the default AO workflow: bootstrap with `ao start`, dispatch work with `ao spawn`, inspect progress with `ao status` or `ao session ls`, steer sessions with `ao send`, and recover or clean up sessions safely. Includes strict parameter fidelity, pre-spawn cap cleanup, quota-wall fallback, and post-spawn verification.
Generate a full agento PR status report — draft readiness, canonical /green, zero-touch rate, inline display, and Slack summary.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | mem0 |
| description | Search, write, and inspect the shared Hermes mem0 qdrant memory store. |
Query and write to the shared mem0 qdrant store (hermes_mem0, 127.0.0.1:6333).
All agents (Claude, Codex, Hermes) share this store under user_id=$USER.
# Search
python3 ~/.hermes/scripts/mem0_shared_client.py search "<query>"
# Add a fact (with LLM extraction)
python3 ~/.hermes/scripts/mem0_shared_client.py add "<text>"
# Add verbatim (no LLM, guaranteed write)
python3 ~/.hermes/scripts/mem0_shared_client.py add "<text>" --no-infer
# Stats
python3 ~/.hermes/scripts/mem0_shared_client.py stats
Script path:
~/.hermes/scripts/mem0_shared_client.pyConfig: reads~/.hermes/config.yaml(override withHERMES_CONFIG_PATH), looking forplugins.entries.hermes-mem0.config.oss. That block is OPTIONAL — if absent, the script falls back to working defaults (ollamanomic-embed-textembedder +gemma2:2bLLM, qdrant127.0.0.1:6333, collectionhermes_mem0). There is NO~/.hermes/hermes.json; do not chase it as a missing file. Also callable from any repo worktree:python3 scripts/mem0_shared_client.py <cmd>
hermes_mem0127.0.0.1:6333 (qdrant docker, Hermes-managed storage)~/.hermes/config.yaml (hermes-mem0 plugin oss block) or fallback default nomic-embed-text~/.hermes/config.yaml (hermes-mem0 plugin oss block) or fallback default gemma2:2bThe extractor at scripts/mem0_extract_facts.py scans three sources:
| Source | Path | Agent ID |
|---|---|---|
| Hermes | ~/.hermes/ | hermes |
| Claude Code | ~/.claude/projects/ | claude |
| Codex | ~/.codex/sessions/ | codex |
Run a backfill (last 1 year = 525960 minutes):
cd ~/.hermes
python3 scripts/mem0_extract_facts.py --since 525960
Run incremental (last 65 min, for cron):
cd ~/.hermes
python3 scripts/mem0_extract_facts.py --since 65
Check state:
cat ~/.hermes/memory/extraction-state.json | python3 -m json.tool | head -20
Use python3 ~/.hermes/scripts/mem0_shared_client.py stats for live status.
Use /mem0 when the user asks to: