SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/knownasnaffy/prompthound --skill task-persistence명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Install and operate local NVIDIA Parakeet ASR for OpenClaw with an OpenAI-compatible transcription API on Ubuntu/Linux and macOS (Intel/Apple Silicon). Use when the user wants private/local speech-to-text, voice transcription setup, ASR troubleshooting, or OpenClaw voice stack configuration with Parakeet (and optional Whisper fallback).
Collect, refresh, normalize, and analyze the user's own Douban history for taste analysis and recommendation reasoning. Use when the task involves the user's own Douban shelves, ratings, tags, comments, reviews, or recent activity, especially when you need to decide whether local cache is fresh enough, re-crawl logged-in data with cookies, store refreshed results locally, and then analyze them by category.
LoRA fine-tuning pipeline for Stable Diffusion on Apple Silicon — dataset prep, training, evaluation with LLM-as-judge scoring. Use when fine-tuning image generation models for consistent style, custom characters, or domain-specific visuals. Requires Python with torch and diffusers.
| name | task-persistence |
| description | 自动监控和恢复会话状态、任务持久化和网关重启反馈。支持任务延续、状态快照和主动通知。 |
| metadata | {"openclaw":{"emoji":"🔄"}} |
Task Persistence 技能提供完整的会话状态管理和任务恢复能力:
uv run {baseDir}/scripts/task_manager.py --action list
uv run {baseDir}/scripts/task_manager.py --action resume --task-id <id>
uv run {baseDir}/scripts/task_manager.py --action pause --task-id <id>
uv run {baseDir}/scripts/task_manager.py --action cancel --task-id <id>
uv run {baseDir}/scripts/session_snapshot.py --action save --label "before-update"
uv run {baseDir}/scripts/session_snapshot.py --action restore --label "latest"
uv run {baseDir}/scripts/session_snapshot.py --action list
uv run {baseDir}/scripts/gateway_monitor.py --action status
uv run {baseDir}/scripts/gateway_monitor.py --action health-check
uv run {baseDir}/scripts/gateway_monitor.py --action notify-restart
# 启动完整监控
uv run {baseDir}/scripts/main.py --mode full
# 仅启用任务持久化
uv run {baseDir}/scripts/main.py --mode tasks-only
# 仅启用会话快照
uv run {baseDir}/scripts/main.py --mode snapshot-only
配置文件位置:{workspace}/config/task-persistence.json
默认配置:
{
"task_persistence": {
"enabled": true,
"auto_save_interval": 30,
"max_concurrent_tasks": 5,
"task_dir": "{workspace}/tasks"
},
"session_snapshot": {
"enabled": true,
"snapshot_interval": 60,
"max_snapshots": 10,
"snapshot_dir": "{workspace}/snapshots"
},
"gateway_monitor": {
"enabled": true,
"check_interval": 10,
"notify_on_restart": true,
"health_check_enabled": true
}
}
此技能与以下技能协同工作: