ワンクリックで
quick-reminders
One-shot reminders up to 48 hours. Zero LLM tokens at fire time. Use when: remind me, set reminder, don't forget, напомни.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
One-shot reminders up to 48 hours. Zero LLM tokens at fire time. Use when: remind me, set reminder, don't forget, напомни.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Fetch a SPECIFIC Twitter/X tweet, article, thread, profile, or timeline by URL/id via the SocialData API. Use when: a Twitter link, read a known tweet, check a profile, read a thread. For SEARCH / discovery / 'what's trending in a niche', use the `x-research` skill (Grok Live Search) instead — this skill is fetch-only.
Agentic skills framework (pcvelz fork): TDD, debugging, planning, code-review, git-worktrees, parallel agents. 15 skills with .tasks.json persistence between sessions.
Generate Excalidraw diagrams from JSON. Pipeline, mindmap, flowchart. Use when: draw diagram, visualize, architecture schema, mindmap.
Create charts, tables, and data visualizations via Datawrapper API
Web research via Perplexity Sonar API -- search, fact-check, analyze trends
Local kanban board for AI agents. Agents create/update/complete tasks, track status visually. Use when: manage tasks, kanban, create task, update status, task board.
| name | quick-reminders |
| description | One-shot reminders up to 48 hours. Zero LLM tokens at fire time. Use when: remind me, set reminder, don't forget, напомни. |
| user-invocable | true |
| argument-hint | <text> -t <time> |
Zero-LLM one-shot reminders for events within 48 hours.
At creation time: agent composes the final message. At fire time: background process delivers it without consuming any LLM tokens.
# Add reminder
bash $CLAUDE_SKILL_DIR/scripts/nohup-reminder.sh add "Call John about the project" \
--target CHAT_ID -t 2h
# List active reminders
bash $CLAUDE_SKILL_DIR/scripts/nohup-reminder.sh list
# Remove by ID
bash $CLAUDE_SKILL_DIR/scripts/nohup-reminder.sh remove ID
# Remove all
bash $CLAUDE_SKILL_DIR/scripts/nohup-reminder.sh remove --all
| Format | Example | Meaning |
|---|---|---|
| Relative | 30m, 2h, 1d, 1h30m | From now |
| Absolute | 2026-01-02T15:00:00+03:00 | ISO-8601 |
Limit: Maximum 48 hours. For longer -- use calendar.
The script uses nohup sleep + delivery command in the background.
Configure delivery in the script or use the --channel flag:
| Channel | Flag |
|---|---|
| Telegram (default) | --channel telegram |
| Discord | --channel discord |
| Slack | --channel slack |
Requires: jq (install: apt install jq or brew install jq)
Configure delivery target (Telegram chat ID, Discord webhook, etc.) in the script or pass via --target.
nohup sleep SECONDS && deliver in backgrounddisown)