agentweaver 0.1.11 → 0.1.12

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.
@@ -505,6 +505,28 @@
505
505
  },
506
506
  "required": ["summary", "ready_to_merge", "findings"]
507
507
  },
508
+ "review-assessment/v1": {
509
+ "type": "object",
510
+ "properties": {
511
+ "summary": { "type": "string", "nonEmpty": true },
512
+ "assessments": {
513
+ "type": "array",
514
+ "items": {
515
+ "type": "object",
516
+ "properties": {
517
+ "finding_title": { "type": "string", "nonEmpty": true },
518
+ "severity": { "type": "string", "nonEmpty": true },
519
+ "verdict": { "type": "string", "nonEmpty": true },
520
+ "rationale": { "type": "string", "nonEmpty": true },
521
+ "proposed_fix": { "type": "string", "nonEmpty": true },
522
+ "fix_required": { "type": "boolean" }
523
+ },
524
+ "required": ["finding_title", "severity", "verdict", "rationale", "proposed_fix", "fix_required"]
525
+ }
526
+ }
527
+ },
528
+ "required": ["summary", "assessments"]
529
+ },
508
530
  "review-fix-report/v1": {
509
531
  "type": "object",
510
532
  "properties": {
@@ -152,7 +152,14 @@ export async function requestUserInputInTerminal(form) {
152
152
  }
153
153
  continue;
154
154
  }
155
- const options = field.options.map((option, index) => `${index + 1}. ${option.label}`).join("\n");
155
+ const options = field.options
156
+ .map((option, index) => {
157
+ const description = option.description
158
+ ? `\n ${option.description.split("\n").join("\n ")}`
159
+ : "";
160
+ return `${index + 1}. ${option.label}${description}`;
161
+ })
162
+ .join("\n");
156
163
  process.stdout.write(`${field.label}\n${options}\n`);
157
164
  if (field.type === "single-select") {
158
165
  while (true) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentweaver",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "CLI orchestrator for Jira/Codex engineering workflows",
5
5
  "keywords": [
6
6
  "agent",