返回顶部
a

aight-utils

Native Aight app integration for creating reminders, tasks, triggers, and items. Use when user mentions deadlines, reminders, tasks, or tracking.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
78
下载量
0
收藏
概述
安装方式
版本历史

aight-utils

# Aight Utils **Native integration with the Aight iOS app.** Creates reminders, tasks, and tracked items that appear in the user's Aight Today view. ## When to Use | User Says | Create Type | Example | |-----------|-------------|---------| | "Remind me to..." | `trigger` | `scheduledFor: ISO 8601` | | "Don't forget..." | `trigger` | `scheduledFor: ISO 8601` | | "Add this to my tasks" | `item` | `labels: ["category"]` | | "Deadline is..." | `trigger` | `type: "deadline"` | | "Track this PR/issue" | `item` | `url: "<link>"` | | "Done" / "Cancel" | Update status | `status: "done"/"cancelled"` | ## Item Types | Type | Use For | Key Fields | |------|---------|------------| | `trigger` | Time-based, fire-once | `scheduledFor` (ISO 8601) | | `item` | Stateful, lifecycle | `labels`, `status` | | `process` | Background work | `sessionTarget`, `label` | ## Usage Examples ### Create a Reminder ```json { "id": "remind-dentist-1711123200", "type": "trigger", "text": "Call dentist to schedule appointment", "scheduledFor": "2026-03-23T14:00:00+08:00", "labels": ["health", "personal"] } ``` ### Create a Task ```json { "id": "task-bp-draft-1711123200", "type": "item", "text": "Draft Q2 funding BP", "labels": ["work", "fundraising"], "status": "active" } ``` ### Create a Deadline ```json { "id": "deadline-tax-1711123200", "type": "trigger", "text": "File tax return", "scheduledFor": "2026-04-15T23:59:59+08:00", "type": "deadline", "labels": ["finance", "urgent"] } ``` ### Track a PR ```json { "id": "pr-openclaw-123-1711123200", "type": "item", "text": "Review OpenClaw PR #123", "url": "https://github.com/openclaw/openclaw/pull/123", "labels": ["code-review"], "status": "active" } ``` ### Mark Complete ```json { "id": "task-bp-draft-1711123200", "status": "done" } ``` ## ID Generation Rules - Format: `<type>-<slug>-<timestamp>` - Slug: kebab-case, 2-4 words describing the item - Timestamp: Unix epoch or short hash for uniqueness **Examples:** - `remind-groceries-1711123200` - `task-bp-draft-1711123200` - `deadline-tax-2026q1` - `pr-openclaw-123` ## Labels Convention Use consistent labels for categorization: | Category | Labels | |----------|--------| | Work | `work`, `meeting`, `code-review`, `fundraising` | | Personal | `personal`, `health`, `family` | | Finance | `finance`, `tax`, `billing` | | Urgency | `urgent`, `high-priority` | ## Date Parsing Parse natural language dates to ISO 8601: | User Input | ISO 8601 | |------------|----------| | "tomorrow at 2pm" | `2026-03-23T14:00:00+08:00` | | "next Friday" | `2026-03-27T09:00:00+08:00` | | "end of day" | `2026-03-22T23:59:59+08:00` | | "in 2 hours" | `2026-03-22T17:30:00+08:00` | **Current time:** 2026-03-22 23:45 GMT+8 (Asia/Shanghai) ## Rules 1. **Always generate unique IDs** — use slug + timestamp 2. **Parse dates before calling** — convert natural language to ISO 8601 3. **Set labels for categorization** — helps user filter in Today view 4. **Default status is "active"** — don't set unless changing 5. **For reminders:** always use `type: "trigger"` with `scheduledFor` 6. **For tasks:** use `type: "item"` with `labels` 7. **For completions:** update existing item with `status: "done"` ## Integration with Other Skills | Skill | Integration Point | |-------|-------------------| | `proactive-agent` | Outcome tracking → create deadline triggers | | `memory-manager` | Important events → create reminder triggers | | `watchdog` | Task completion → update item status | ## Error Handling If item creation fails: 1. Log to `.learnings/ERRORS.md` 2. Inform user: "Couldn't create reminder — adding to memory instead" 3. Create fallback in `memory/YYYY-MM-DD.md` --- **Version:** 1.0.0 **Author:** alex **Last Updated:** 2026-03-22

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 aight-utils-1776092402 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 aight-utils-1776092402 技能

通过命令行安装

skillhub install aight-utils-1776092402

下载 Zip 包

⬇ 下载 aight-utils v1.0.0

文件大小: 2.32 KB | 发布时间: 2026-4-14 13:22

v1.0.0 最新 2026-4-14 13:22
- Initial release of aight-utils, providing native integration with the Aight iOS app.
- Supports creation of reminders, tasks, deadlines, and tracked items using structured JSON.
- Automatically parses natural language dates into ISO 8601 format for scheduling.
- Enforces consistent ID and label conventions for easy categorization and tracking.
- Handles updates to item status, including marking tasks as done or cancelled.
- Includes fallback error handling to log failures and add items to memory if creation fails.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部