@shipers-dev/multi 0.8.0 → 0.8.1

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.
Files changed (3) hide show
  1. package/dist/index.js +338 -338
  2. package/package.json +1 -1
  3. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipers-dev/multi",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "multi-agent": "./dist/index.js"
package/src/index.ts CHANGED
@@ -852,7 +852,7 @@ function extractPlanActions(text: string): PlanAction[] {
852
852
 
853
853
  const PLAN_ACTION_LIMIT = 10;
854
854
 
855
- async function executePlanActions(apiUrl: string, parentTask: any, actions: PlanAction[], _ctx: RuntimeCtx): Promise<string> {
855
+ async function executePlanActions(apiUrl: string, parentTask: any, actions: PlanAction[], ctx: RuntimeCtx): Promise<string> {
856
856
  const lines: string[] = [];
857
857
  let truncated = false;
858
858
  if (actions.length > PLAN_ACTION_LIMIT) {