소스 정보
- 저장소
- johnalbertini14-glitch/openclaw-skills
- 최근 소스 활동
- 2026년 2월 19일 11:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill letheclaw명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | letheclaw |
| version | 1.0.0 |
| description | Use letheClaw to store, search, and manage memories with criticality and provenance. |
| trigger | memory|letheclaw|remember|recall|criticality|provenance |
| tools | ["network"] |
You can use the letheClaw API to store and retrieve memories for the user or the current session. The API base URL is in the environment variable LETHECLAW_API_URL.
Environment patterns:
http://api:8080http://host.docker.internal:51234http://localhost:51234If LETHECLAW_API_URL is unset, try http://host.docker.internal:51234 first (Docker Desktop default), then ask the user.
When the user asks about history, decisions, prior work, "what did we do", or any past context:
ALWAYS query letheClaw API FIRST:
curl -s "{LETHECLAW_API_URL}/memory/search?q=<query>&limit=5"
Use the returned content field directly — search results include full text. No need for memory_get or flat file access.
NEVER use memory_search tool as the first step. That tool searches flat markdown files, which are backup/reference only.
Apply criticality filtering when appropriate:
&min_criticality=0.7&min_criticality=0.5Use tag pre-filtering when query domain is clear (e.g., tags=moltbook for Moltbook questions).
letheClaw is the authoritative memory system. Flat files may be stale or incomplete.
When the user says "log this", "remember that", or you observe something worth recording:
["episodic", "security", "moltbook"])operator_input (user said it), direct_observation (you verified it), inferred (derived)No exceptions. This is operator-mandated protocol.
{LETHECLAW_API_URL}/memorycontent (required), optional: source (e.g. operator_input, direct_observation, inferred), tags (array), operator, session_key, contextmemory_id (UUID). Save it to update criticality or fetch provenance later.{LETHECLAW_API_URL}/memory/search?q={query}&limit=5min_criticality (0–1) to filter by importance.tags (comma-separated) to pre-filter by tag before semantic search (e.g. tags=moltbook,security)results array with id, content (full text), criticality, tags, source, created_at, access_countImportant: Search results include full content — you do NOT need to call memory_get afterward. Use the returned content directly.
Criticality filtering guidance:
min_criticality=0.7 (critical knowledge only)min_criticality=0.5 (useful and above)Tag pre-filtering (performance optimization): When query intent is clear, pre-filter by tags to reduce search space:
# "Latest Moltbook posts"
curl "{LETHECLAW_API_URL}/memory/search?q=posts&tags=moltbook,episodic&limit=5"
# "Security findings"
curl "{LETHECLAW_API_URL}/memory/search?q=findings&tags=security,semantic&min_criticality=0.7&limit=3"
{LETHECLAW_API_URL}/memory/recent{LETHECLAW_API_URL}/memory/{memory_id}/criticalitycriticality (0–1, required), optional reason{LETHECLAW_API_URL}/memory/{memory_id}/correction{LETHECLAW_API_URL}/memory/{memory_id}/provenanceevents (history of criticality changes: manual_boost, operator_correction, etc.) and correction_count.When the user says they want to remember something, search memory, see why a memory is important, or correct a memory, use the appropriate endpoint above.