소스 정보
- 저장소
- 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 set-reminder명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | set-reminder |
| description | Set a one-time reminder to be delivered via DM at a future time |
| allowed-tools | Bash |
Set a one-time reminder that will be delivered to the user via direct message (DM) at the specified time.
--scheduled-at parameter MUST be a valid ISO 8601 UTC timestamp (e.g., 2025-01-15T10:00:00Z). You are responsible for converting the user's natural language time expression to this format.Two-step flow — the reminder text MUST NOT appear on the command line.
Write the reminder text to a payload file under the session staging directory using your edit/write tool:
$TMPDIR/$SESSION_ID/reminder.md
The $TMPDIR / $SESSION_ID tokens in that path are expanded by the ACP path boundary, so the write is approved and the text bytes are preserved verbatim (no shell expansion). $TMPDIR/$SESSION_ID/ is the per-spawn form of the staging directory; in shared-process deployments the staging directory is shown in your system prompt and the script resolves it automatically.
Invoke the script with the payload file path:
${HOME}/.agents/skills/set-reminder/scripts/set-reminder.ts \
--session-id "$SESSION_ID" \
--scheduled-at "2025-01-15T10:00:00Z" \
--message-file "$TMPDIR/$SESSION_ID/reminder.md"
WARNING: Never put message content on the command line. The legacy --message "..." / --message=... flags are REMOVED: the shell expands $VAR in them, which corrupts the stored reminder text.
| 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 |
--scheduled-at | Yes | ISO 8601 UTC timestamp for when the reminder should fire |
--message-file | Yes | Path of the payload file containing the reminder text (must be under $TMPDIR/$SESSION_ID/) |
If the script fails, read the JSON error on stderr. It contains the fix. Common codes: SKILL_LEGACY_FLAG (you used the removed --message flag — stage the text in $TMPDIR/$SESSION_ID/reminder.md and use --message-file), SKILL_MISSING_PAYLOAD (no --message-file given), SKILL_PAYLOAD_OUT_OF_BOUNDS (payload path outside $TMPDIR/$SESSION_ID/), SKILL_PAYLOAD_NOT_FOUND (payload file not written yet — write it first with the edit/write tool).
scheduledAt must be a valid ISO 8601 timestamp in the future (at least 1 minute from now)reminderId for future cancellation via cancel-reminder{
"success": true,
"data": {
"reminderId": "rem_1705312800000_a1b2c3d4",
"scheduledAt": "2025-01-15T10:00:00.000Z"
}
}
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.