tasks
SQLite subtask creation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
SQLite subtask creation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Calendar operations with CalDAV
Git repository management, GitLab merge requests, and GitHub pull requests
Location tracking, place recognition, visit history, and calendar attendance
Persistent memory writes — USER.md (behavioral) and the knowledge graph (facts).
Accounting operations (ledger, invoicing, transactions, work log, investment portfolio) — runs in-process via the vendored money package
Send a push notification to the user's configured ntfy device(s). One-way (bot to phone), no reply channel.
| name | tasks |
| triggers | ["subtask","queue","background","later"] |
| description | SQLite subtask creation |
| admin_only | true |
To create subtasks, write a JSON file to $ISTOTA_DEFERRED_DIR/task_${ISTOTA_TASK_ID}_subtasks.json:
# Create subtasks (processed after this task completes)
cat > "$ISTOTA_DEFERRED_DIR/task_${ISTOTA_TASK_ID}_subtasks.json" << 'EOF'
[
{"prompt": "Subtask description", "conversation_token": "room42", "priority": 5},
{"prompt": "Another subtask"}
]
EOF
Fields per subtask entry:
prompt (required): The task promptconversation_token (optional): Override conversation; defaults to parent's tokenpriority (optional): 1-10, defaults to 5The scheduler fills in user_id, source_type, parent_task_id, and queue from the parent task.
Environment variables available during execution:
ISTOTA_TASK_ID: Current task IDISTOTA_USER_ID: User who requested the taskISTOTA_DEFERRED_DIR: Directory for deferred operation files