すべてのツール

create_omnifocus_task

OmniFocus · macOS

効果: 書き込み. 状態: 条件付き提供.

「条件付き提供」は、バージョン、プラットフォーム、権限、アカウント、設定に依存する可能性を示し、すべての環境で有効という意味ではありません。

macOS

目的

OmniFocus に新しいタスクを作成します。実行には confirm=true が必要です。

必須入力

入力名はツールが要求する正確な形式のままです。英語の正規技術定義は下の展開可能なスキーマにあります。

権限と確認

スキーマには明示的な確認パラメータがあります。プレビューを確認し、プラットフォーム契約に従って実操作を承認してください。

英語の正規技術スキーマmacOS
{
  "properties": {
    "confirm": {
      "description": "Must be true to create; called without it, returns a preview.",
      "type": "boolean"
    },
    "defer_date": {
      "description": "Defer/start date, ISO 8601 — the task stays hidden until then.",
      "type": "string"
    },
    "due_date": {
      "description": "Due date, ISO 8601 (YYYY-MM-DD or full timestamp).",
      "type": "string"
    },
    "flagged": {
      "default": "false",
      "description": "Create the task flagged.",
      "type": "boolean"
    },
    "name": {
      "description": "The task title.",
      "type": "string"
    },
    "note": {
      "description": "Longer note/body for the task.",
      "type": "string"
    },
    "project": {
      "description": "Project to file the task under (name). Omit for the inbox.",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}

ドキュメント例

create_omnifocus_task のドキュメント例です。この例は実行しないでください。表示される引数は架空のデータセットに属します。実際に呼び出す前に実在する識別子を確認し、承認を得てください。

{
  "confirm": false,
  "name": "Planning meeting"
}