ソース情報
- リポジトリ
- jim60105/AIr-Friends
- ソースの最終更新活動
- 2026年8月28日 23:09
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/jim60105/AIr-Friends --skill list-remindersコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | list-reminders |
| description | List all active reminders for the current user |
| allowed-tools | Bash |
List all active (pending) reminders for the current user.
${HOME}/.agents/skills/list-reminders/scripts/list-reminders.ts \
--session-id "$SESSION_ID"
| Parameter | Required | Description |
|---|---|---|
--session-id | Yes | Use the session id rendered in your system prompt. $SESSION_ID works only in per-spawn deployments; in shared-process mode it is not set and the skill library resolves the owning session automatically — a mismatched value is never honored |
{
"success": true,
"data": {
"reminders": [
{
"id": "rem_1705312800000_a1b2c3d4",
"message": "Team meeting",
"scheduledAt": "2025-01-15T10:00:00.000Z",
"createdAt": "2025-01-14T15:00:00.000Z"
}
],
"count": 1
}
}
Cancel a previously set reminder by its ID
Edit the last reply message that was sent via send-reply
Fetch additional context from the platform, including recent messages, search through conversation history, or get user information. Use when you need more context than what's provided initially.