tasks
SQLite subtask creation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
SQLite subtask creation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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