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