← 返回
未分类 中文

Aight Utils

Native Aight app integration for creating reminders, tasks, triggers, and items. Use when user mentions deadlines, reminders, tasks, or tracking.
原生 Aight 应用集成,可创建提醒、任务、触发器和项目。当用户提到截止日期、提醒、任务或追踪时使用。
vincenthhao vincenthhao 来源
未分类 clawhub v1.0.0 1 版本 99699.7 Key: 无需
★ 0
Stars
📥 332
下载
💾 0
安装
1
版本
#latest

概述

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 SaysCreate TypeExample
---------------------------------
"Remind me to..."triggerscheduledFor: ISO 8601
"Don't forget..."triggerscheduledFor: ISO 8601
"Add this to my tasks"itemlabels: ["category"]
"Deadline is..."triggertype: "deadline"
"Track this PR/issue"itemurl: ""
"Done" / "Cancel"Update statusstatus: "done"/"cancelled"

Item Types

TypeUse ForKey Fields
---------------------------
triggerTime-based, fire-oncescheduledFor (ISO 8601)
itemStateful, lifecyclelabels, status
processBackground worksessionTarget, label

Usage Examples

Create a Reminder

{
  "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

{
  "id": "task-bp-draft-1711123200",
  "type": "item",
  "text": "Draft Q2 funding BP",
  "labels": ["work", "fundraising"],
  "status": "active"
}

Create a Deadline

{
  "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

{
  "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

{
  "id": "task-bp-draft-1711123200",
  "status": "done"
}

ID Generation Rules

  • Format: --
  • 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:

CategoryLabels
------------------
Workwork, meeting, code-review, fundraising
Personalpersonal, health, family
Financefinance, tax, billing
Urgencyurgent, high-priority

Date Parsing

Parse natural language dates to ISO 8601:

User InputISO 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

SkillIntegration Point
--------------------------
proactive-agentOutcome tracking → create deadline triggers
memory-managerImportant events → create reminder triggers
watchdogTask 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

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 08:07 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,228 📥 267,967
dev-programming

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 676 📥 325,561
ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,082 📥 811,527