スキル一覧に戻る
claudeaceae

status

by claudeaceae

Bootstrap specification for giving Claude a persistent body, memory, and agency on a Mac

7🍴 2📅 2026年1月24日
GitHubで見るManusで実行

SKILL.md


name: status description: System health check for Samara organism. Use when checking if Samara is running, if messages are being detected, if wake cycles are scheduled, or diagnosing permission issues. Trigger words: status, health, check, running, working, broken. context: fork allowed-tools:

  • Bash
  • Read
  • Grep

System Status Check

Perform a comprehensive health check of the Samara organism infrastructure.

Checks to Perform

1. Samara.app Status

pgrep -fl Samara
  • If not running, note this as critical
  • If running, check how long it's been up

2. Recent Message Detection

# Check if Samara has logged recent message detection
tail -20 ~/.claude-mind/system/logs/samara.log 2>/dev/null || echo "No Samara log found"

3. Wake Cycle Schedule

launchctl list | grep claude

Check that these are loaded:

  • com.claude.wake-adaptive (primary scheduler, runs every 15 min)
  • com.claude.dream

4. Recent Wake/Dream Logs

tail -10 ~/.claude-mind/system/logs/wake-adaptive.log 2>/dev/null
tail -10 ~/.claude-mind/system/logs/wake.log 2>/dev/null
tail -10 ~/.claude-mind/system/logs/dream.log 2>/dev/null

4b. Scheduler State

cat ~/.claude-mind/state/scheduler-state.json 2>/dev/null || echo "No scheduler state"
~/.claude-mind/system/bin/wake-scheduler status 2>/dev/null || echo "Scheduler not available"

5. Lock File Status

ls -la ~/.claude-mind/claude.lock 2>/dev/null || echo "No lock file (good)"

A stale lock file can block operations.

6. Full Disk Access Check

# Try to read chat.db - will fail without FDA
ls -la ~/Library/Messages/chat.db 2>/dev/null && echo "FDA appears intact"

7. Disk Space

df -h ~ | tail -1

Output Format

Summarize findings as:

  • Samara: Running/Not Running
  • Wake Adaptive: Loaded / Not loaded
  • Dream: Loaded / Not loaded
  • Last Wake: timestamp (from scheduler state)
  • Next Wake: timestamp (from scheduler)
  • Last Dream: timestamp
  • FDA Status: OK / Issue
  • Lock File: Clear / Stale
  • Disk: X% used

Flag any issues that need attention.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です