ソース情報
- リポジトリ
- RikyZ90/ShibaClaw
- ソースの最終更新活動
- 2026年5月28日 07:19
- 検出された SKILL.md の言語
- 英語
- スター
- 78
- フォーク
- 9
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/RikyZ90/ShibaClaw --skill automationコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Manage long-running background jobs and interactive workflows on Windows using PowerShell Jobs (Start-Job, Receive-Job) — the Windows equivalent of tmux sessions.
Split memory system with USER.md for durable personal profile and MEMORY.md for token-budgeted operational context.
SOC 職業分類に基づく
SKILL.md を表示中
| name | automation |
| description | Schedule reminders and recurring tasks. |
Use the automation tool to schedule reminders or recurring tasks.
Fixed reminder:
automation(action="add", message="Time to take a break!", every_seconds=1200)
Dynamic task (agent executes each time):
automation(action="add", message="Check RikyZ90/shibaclaw GitHub stars and report", every_seconds=600)
One-time scheduled task (compute ISO datetime from current time):
automation(action="add", message="Remind me about the meeting", at="<ISO datetime>")
Timezone-aware cron:
automation(action="add", message="Morning standup", cron_expr="0 9 * * 1-5", tz="America/Vancouver")
List/remove:
automation(action="list")
automation(action="remove", job_id="abc123")
| User says | Parameters |
|---|---|
| every 20 minutes | every_seconds: 1200 |
| every hour | every_seconds: 3600 |
| every day at 8am | cron_expr: "0 8 * * *" |
| weekdays at 5pm | cron_expr: "0 17 * * 1-5" |
| 9am Vancouver time daily | cron_expr: "0 9 * * *", tz: "America/Vancouver" |
| at a specific time | at: ISO datetime string (compute from current time) |
Use tz with cron_expr to schedule in a specific IANA timezone. Without tz, the server's local timezone is used.