@tekmidian/pai 0.13.1 → 0.13.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ The bus is shared state that outlives any one session. Session-local work stays
15
15
  pai task list --limit 1
16
16
  ```
17
17
 
18
- If this prints "Task bus is not configured", tell the user to run `pai setup` and complete the Task Bus step, then stop. Do not work around it by calling the Todoist MCP directly — the bus resolves ownership against the PAI registry, which the raw MCP knows nothing about.
18
+ If this prints "Task bus is not configured", tell the user to run `pai task config --token` (hidden prompt, no wizard) or `pai setup` for the guided version, then stop. `pai task config` with no flags shows the current settings with the token redacted. Do not work around it by calling the Todoist MCP directly — the bus resolves ownership against the PAI registry, which the raw MCP knows nothing about.
19
19
 
20
20
  ---
21
21
 
@@ -141,6 +141,7 @@ Generated man pages for every `pai` command area. Read any page in the terminal
141
141
  | `pai skill telemetry` | Show skill-invocation telemetry (triggers, last used, projects) |
142
142
  | `pai task` | Task bus: list, add, dispatch, and complete cross-session work |
143
143
  | `pai task add <title>` | File a task onto the bus |
144
+ | `pai task config` | View or change task bus settings without running the full setup wizard |
144
145
  | `pai task dispatch` | Hand open tasks to the PAI sessions that own them |
145
146
  | `pai task done <id>` | Mark a task complete on the tracker |
146
147
  | `pai task list` | List open tasks on the bus |
@@ -19,6 +19,7 @@ pai task <subcommand> [options]
19
19
  | [`pai task list`](#pai-task-list) | List open tasks on the bus |
20
20
  | [`pai task add <title>`](#pai-task-add-title) | File a task onto the bus |
21
21
  | [`pai task dispatch`](#pai-task-dispatch) | Hand open tasks to the PAI sessions that own them |
22
+ | [`pai task config`](#pai-task-config) | View or change task bus settings without running the full setup wizard |
22
23
  | [`pai task done <id>`](#pai-task-done-id) | Mark a task complete on the tracker |
23
24
 
24
25
  ### pai task list
@@ -71,6 +72,23 @@ Hand open tasks to the PAI sessions that own them
71
72
  | `--no-spawn` | Never launch a session; skip owners that are not running | |
72
73
 
73
74
 
75
+ ### pai task config
76
+
77
+ View or change task bus settings without running the full setup wizard
78
+
79
+ **Options**
80
+
81
+ | Option | Description | Default |
82
+ |--------|-------------|---------|
83
+ | `--token` | Prompt for the Todoist API token (input is hidden) | |
84
+ | `--from-env` | Adopt the token from TODOIST_API_KEY in the environment | |
85
+ | `--project <id>` | Tracker project ID that roots the bus (an ID, never a name) | |
86
+ | `--findings <id>` | Section ID for the findings inbox | |
87
+ | `--timeout <secs>` | Seconds a single dispatch may take | |
88
+ | `--auto-dispatch <bool>` | Hand tasks to owning sessions automatically (true/false) | |
89
+ | `--disable` | Turn the task bus off without discarding its settings | |
90
+
91
+
74
92
  ### pai task done <id>
75
93
 
76
94
  Mark a task complete on the tracker
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekmidian/pai",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "description": "PAI Knowledge OS — Personal AI Infrastructure with federated memory and project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",