@henryqw/pi-task-models 0.1.2 → 0.2.0

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.
package/CONTEXT.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Pi Task Models
2
2
 
3
- Pi Task Models stores shared task profiles and task-to-profile assignments for HenryQW extensions.
3
+ Pi Task Models stores shared task profiles and task-to-profile assignments for HenryQW extensions, including default Subagent effort.
4
4
 
5
5
  ## Language
6
6
 
package/README.md CHANGED
@@ -12,9 +12,9 @@ pi install npm:@henryqw/pi-task-models
12
12
 
13
13
  | Package | Why |
14
14
  | --- | --- |
15
- | `@henryqw/pi-auto-compact` | Consumer. Compaction uses the `balanced` profile. |
15
+ | `@henryqw/pi-auto-compact` | Consumer. Compaction defaults to the `fast` profile. |
16
16
  | `@henryqw/pi-herdr-rename` | Consumer. Rename uses the `fast` profile. |
17
- | `@henryqw/pi-subagent` | Consumer. Caller picks `fast`, `balanced`, or `frontier`. |
17
+ | `@henryqw/pi-subagent` | Consumer. Delegation defaults to `balanced`; caller may override it. |
18
18
  | `@henryqw/pi-multi-codex` | Improves. Numbered Codex slots dedupe to one route. |
19
19
 
20
20
  ## Use
@@ -49,7 +49,8 @@ Package also exports config and route-resolution helpers for consumers.
49
49
  },
50
50
  "tasks": {
51
51
  "pi-herdr-rename/rename": "fast",
52
- "pi-auto-compact/autoCompact": "balanced"
52
+ "pi-auto-compact/autoCompact": "fast",
53
+ "pi-subagent/delegateTask": "balanced"
53
54
  }
54
55
  }
55
56
  ```
package/dist/index.d.ts CHANGED
@@ -5,7 +5,8 @@ export declare const THINKING_LEVELS: readonly ["off", "minimal", "low", "medium
5
5
  export type ThinkingLevel = (typeof THINKING_LEVELS)[number];
6
6
  export declare const DEFAULT_TASK_ASSIGNMENTS: {
7
7
  readonly "pi-herdr-rename/rename": "fast";
8
- readonly "pi-auto-compact/autoCompact": "balanced";
8
+ readonly "pi-auto-compact/autoCompact": "fast";
9
+ readonly "pi-subagent/delegateTask": "balanced";
9
10
  };
10
11
  export type TaskModelRoute = {
11
12
  model: string;
package/dist/index.js CHANGED
@@ -6,7 +6,8 @@ export const PROFILE_NAMES = ["fast", "balanced", "frontier"];
6
6
  export const THINKING_LEVELS = ["off", "minimal", "low", "medium", "high", "xhigh", "max"];
7
7
  export const DEFAULT_TASK_ASSIGNMENTS = {
8
8
  "pi-herdr-rename/rename": "fast",
9
- "pi-auto-compact/autoCompact": "balanced",
9
+ "pi-auto-compact/autoCompact": "fast",
10
+ "pi-subagent/delegateTask": "balanced",
10
11
  };
11
12
  const CODEX_ALIAS = /^openai-codex-(?:[2-9]|[1-9]\d+)$/;
12
13
  const CONFIG_FILE = "pi-task-models.json";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henryqw/pi-task-models",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "Shared task model profiles and routing for HenryQW Pi extensions.",
5
5
  "keywords": [
6
6
  "pi-package",