@cardor/agent-harness-kit 1.10.4 → 1.10.5

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/dist/cli.js CHANGED
@@ -1736,8 +1736,7 @@ var taskTitleSchema = v2.pipe(
1736
1736
  );
1737
1737
  var taskDescriptionSchema = v2.pipe(
1738
1738
  v2.string(),
1739
- v2.nonEmpty("Description is required"),
1740
- v2.maxLength(1e3, "Description must be at most 1000 characters")
1739
+ v2.nonEmpty("Description is required")
1741
1740
  );
1742
1741
 
1743
1742
  // src/utils/form.ts
@@ -2670,7 +2669,10 @@ var TOOLS = [
2670
2669
  type: "string",
2671
2670
  description: "Section name: result | tools_used | blockers | next_steps | <custom>. Do NOT use files_modified to track files \u2014 it is stored as plain text only. Use actions.record_file instead."
2672
2671
  },
2673
- content: { type: "string", description: "Content for this section" }
2672
+ content: {
2673
+ type: "string",
2674
+ description: "Content for this section. No length limit \u2014 include all information that's relevant and necessary, but avoid unnecessary padding to prevent context bottlenecks between agents."
2675
+ }
2674
2676
  },
2675
2677
  required: ["actionId", "sectionType", "content"]
2676
2678
  }
@@ -2808,11 +2810,14 @@ var TOOLS = [
2808
2810
  type: "string",
2809
2811
  description: "URL-safe identifier (lowercase, hyphens). Auto-derived from title if omitted."
2810
2812
  },
2811
- description: { type: "string", description: "Longer description of the task goal" },
2813
+ description: {
2814
+ type: "string",
2815
+ description: "Longer description of the task goal. No length limit \u2014 include all information that's relevant and necessary, but avoid unnecessary padding to prevent context bottlenecks between agents."
2816
+ },
2812
2817
  acceptance: {
2813
2818
  type: "array",
2814
2819
  items: { type: "string" },
2815
- description: "List of acceptance criteria (plain sentences)"
2820
+ description: "List of acceptance criteria (plain sentences). No length limit \u2014 include all information that's relevant and necessary, but avoid unnecessary padding to prevent context bottlenecks between agents."
2816
2821
  }
2817
2822
  },
2818
2823
  required: ["title"]