@gotgenes/pi-subagents 7.2.2 → 7.2.3

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/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [7.2.3](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v7.2.2...pi-subagents-v7.2.3) (2026-05-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * enforce fallow dead-code gate in CI ([#195](https://github.com/gotgenes/pi-packages/issues/195)) ([b1bd734](https://github.com/gotgenes/pi-packages/commit/b1bd734e1d2f5921521bebb1735db8f8c402b53b))
14
+
8
15
  ## [7.2.2](https://github.com/gotgenes/pi-packages/compare/pi-subagents-v7.2.1...pi-subagents-v7.2.2) (2026-05-25)
9
16
 
10
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotgenes/pi-subagents",
3
- "version": "7.2.2",
3
+ "version": "7.2.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/service.ts"
@@ -434,17 +434,6 @@ export async function resumeAgent(
434
434
  return collector.getText().trim() || getLastAssistantText(session);
435
435
  }
436
436
 
437
- /**
438
- * Send a steering message to a running subagent.
439
- * The message will interrupt the agent after its current tool execution.
440
- */
441
- export async function steerAgent(
442
- session: AgentSession,
443
- message: string,
444
- ): Promise<void> {
445
- await session.steer(message);
446
- }
447
-
448
437
  /**
449
438
  * Get the subagent's conversation messages as formatted text.
450
439
  */
@@ -148,6 +148,7 @@ export class AgentTool {
148
148
  );
149
149
  }
150
150
 
151
+ // fallow-ignore-next-line unused-class-member
151
152
  toToolDefinition() {
152
153
  const typeListText = this.typeListText;
153
154
  const availableTypesText = this.availableTypesText;