@zcy2nn/agent-forge 1.1.3 → 1.1.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.
Files changed (58) hide show
  1. package/README.md +188 -247
  2. package/agent-forge.schema.json +2 -265
  3. package/dist/agents/orchestrator.d.ts +1 -1
  4. package/dist/cli/index.js +90 -259
  5. package/dist/cli/providers.d.ts +0 -44
  6. package/dist/cli/types.d.ts +0 -2
  7. package/dist/config/constants.d.ts +3 -8
  8. package/dist/config/index.d.ts +0 -1
  9. package/dist/config/loader.d.ts +1 -1
  10. package/dist/config/schema.d.ts +1 -184
  11. package/dist/hooks/index.d.ts +0 -6
  12. package/dist/hooks/json-error-recovery/hook.d.ts +1 -1
  13. package/dist/hooks/todo-continuation/index.d.ts +2 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +7875 -31853
  16. package/dist/tools/index.d.ts +0 -3
  17. package/dist/tui.js +5 -61
  18. package/dist/utils/index.d.ts +0 -2
  19. package/package.json +95 -104
  20. package/src/skills/brainstorming/SKILL.md +185 -186
  21. package/src/skills/brainstorming/scripts/frame-template.html +214 -214
  22. package/src/skills/brainstorming/scripts/server.cjs +354 -354
  23. package/src/skills/brainstorming/spec-document-reviewer-prompt.md +1 -1
  24. package/src/skills/requesting-code-review/SKILL.md +1 -1
  25. package/src/skills/subagent-driven-development/SKILL.md +1 -1
  26. package/src/skills/systematic-debugging/SKILL.md +318 -318
  27. package/src/skills/test-driven-development/SKILL.md +392 -392
  28. package/src/skills/verification-before-completion/SKILL.md +153 -153
  29. package/src/skills/writing-plans/SKILL.md +2 -2
  30. package/src/skills/writing-skills/graphviz-conventions.dot +171 -171
  31. package/dist/agents/council.d.ts +0 -27
  32. package/dist/agents/councillor.d.ts +0 -2
  33. package/dist/agents/designer.d.ts +0 -2
  34. package/dist/agents/explorer.d.ts +0 -2
  35. package/dist/agents/fixer.d.ts +0 -2
  36. package/dist/agents/implementer.d.ts +0 -2
  37. package/dist/agents/librarian.d.ts +0 -2
  38. package/dist/agents/observer.d.ts +0 -2
  39. package/dist/agents/oracle.d.ts +0 -2
  40. package/dist/agents/reviewer.d.ts +0 -2
  41. package/dist/cli/migration.d.ts +0 -46
  42. package/dist/config/council-schema.d.ts +0 -127
  43. package/dist/council/council-manager.d.ts +0 -49
  44. package/dist/council/index.d.ts +0 -1
  45. package/dist/hooks/phase-reminder/index.d.ts +0 -26
  46. package/dist/hooks/post-file-tool-nudge/index.d.ts +0 -19
  47. package/dist/skills/systematic-debugging/condition-based-waiting-example.d.ts +0 -51
  48. package/dist/tools/council.d.ts +0 -10
  49. package/src/skills/codemap/README.md +0 -59
  50. package/src/skills/codemap/SKILL.md +0 -163
  51. package/src/skills/codemap/codemap.md +0 -36
  52. package/src/skills/codemap/scripts/codemap.mjs +0 -483
  53. package/src/skills/codemap/scripts/codemap.test.ts +0 -129
  54. package/src/skills/codemap.md +0 -40
  55. package/src/skills/simplify/README.md +0 -19
  56. package/src/skills/simplify/SKILL.md +0 -138
  57. package/src/skills/simplify/codemap.md +0 -36
  58. package/src/skills/using-git-worktrees/SKILL.md +0 -226
@@ -79,67 +79,11 @@
79
79
  "fallback2",
80
80
  "fallback3"
81
81
  ]
82
- },
83
- "reviewer": {
84
- "type": "object",
85
- "properties": {
86
- "primary": {
87
- "type": "string",
88
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
89
- },
90
- "fallback1": {
91
- "type": "string",
92
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
93
- },
94
- "fallback2": {
95
- "type": "string",
96
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
97
- },
98
- "fallback3": {
99
- "type": "string",
100
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
101
- }
102
- },
103
- "required": [
104
- "primary",
105
- "fallback1",
106
- "fallback2",
107
- "fallback3"
108
- ]
109
- },
110
- "implementer": {
111
- "type": "object",
112
- "properties": {
113
- "primary": {
114
- "type": "string",
115
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
116
- },
117
- "fallback1": {
118
- "type": "string",
119
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
120
- },
121
- "fallback2": {
122
- "type": "string",
123
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
124
- },
125
- "fallback3": {
126
- "type": "string",
127
- "pattern": "^[^/\\s]+\\/[^\\s]+$"
128
- }
129
- },
130
- "required": [
131
- "primary",
132
- "fallback1",
133
- "fallback2",
134
- "fallback3"
135
- ]
136
82
  }
137
83
  },
138
84
  "required": [
139
85
  "orchestrator",
140
- "researcher",
141
- "reviewer",
142
- "implementer"
86
+ "researcher"
143
87
  ],
144
88
  "additionalProperties": false
145
89
  },
@@ -316,7 +260,7 @@
316
260
  }
317
261
  },
318
262
  "disabled_agents": {
319
- "description": "Agent names to disable completely. Disabled agents are not instantiated and cannot be delegated to. Orchestrator, researcher, reviewer, implementer and council internal agents (councillor) cannot be disabled. By default, only council is disabled.",
263
+ "description": "Agent names to disable completely. Disabled agents are not instantiated and cannot be delegated to. Orchestrator and researcher cannot be disabled.",
320
264
  "type": "array",
321
265
  "items": {
322
266
  "type": "string"
@@ -328,64 +272,6 @@
328
272
  "type": "string"
329
273
  }
330
274
  },
331
- "multiplexer": {
332
- "type": "object",
333
- "properties": {
334
- "type": {
335
- "default": "none",
336
- "type": "string",
337
- "enum": [
338
- "auto",
339
- "tmux",
340
- "zellij",
341
- "none"
342
- ]
343
- },
344
- "layout": {
345
- "default": "main-vertical",
346
- "type": "string",
347
- "enum": [
348
- "main-horizontal",
349
- "main-vertical",
350
- "tiled",
351
- "even-horizontal",
352
- "even-vertical"
353
- ]
354
- },
355
- "main_pane_size": {
356
- "default": 60,
357
- "type": "number",
358
- "minimum": 20,
359
- "maximum": 80
360
- }
361
- }
362
- },
363
- "tmux": {
364
- "type": "object",
365
- "properties": {
366
- "enabled": {
367
- "default": false,
368
- "type": "boolean"
369
- },
370
- "layout": {
371
- "default": "main-vertical",
372
- "type": "string",
373
- "enum": [
374
- "main-horizontal",
375
- "main-vertical",
376
- "tiled",
377
- "even-horizontal",
378
- "even-vertical"
379
- ]
380
- },
381
- "main_pane_size": {
382
- "default": 60,
383
- "type": "number",
384
- "minimum": 20,
385
- "maximum": 80
386
- }
387
- }
388
- },
389
275
  "websearch": {
390
276
  "type": "object",
391
277
  "properties": {
@@ -430,29 +316,6 @@
430
316
  }
431
317
  }
432
318
  },
433
- "sessionManager": {
434
- "type": "object",
435
- "properties": {
436
- "maxSessionsPerAgent": {
437
- "default": 2,
438
- "type": "integer",
439
- "minimum": 1,
440
- "maximum": 10
441
- },
442
- "readContextMinLines": {
443
- "default": 10,
444
- "type": "integer",
445
- "minimum": 0,
446
- "maximum": 1000
447
- },
448
- "readContextMaxFiles": {
449
- "default": 8,
450
- "type": "integer",
451
- "minimum": 0,
452
- "maximum": 50
453
- }
454
- }
455
- },
456
319
  "divoom": {
457
320
  "type": "object",
458
321
  "properties": {
@@ -542,132 +405,6 @@
542
405
  "maximum": 50
543
406
  }
544
407
  }
545
- },
546
- "fallback": {
547
- "type": "object",
548
- "properties": {
549
- "enabled": {
550
- "default": true,
551
- "type": "boolean"
552
- },
553
- "timeoutMs": {
554
- "default": 15000,
555
- "type": "number",
556
- "minimum": 0
557
- },
558
- "retryDelayMs": {
559
- "default": 500,
560
- "type": "number",
561
- "minimum": 0
562
- },
563
- "chains": {
564
- "default": {},
565
- "type": "object",
566
- "properties": {
567
- "orchestrator": {
568
- "minItems": 1,
569
- "type": "array",
570
- "items": {
571
- "type": "string"
572
- }
573
- },
574
- "researcher": {
575
- "minItems": 1,
576
- "type": "array",
577
- "items": {
578
- "type": "string"
579
- }
580
- },
581
- "reviewer": {
582
- "minItems": 1,
583
- "type": "array",
584
- "items": {
585
- "type": "string"
586
- }
587
- },
588
- "implementer": {
589
- "minItems": 1,
590
- "type": "array",
591
- "items": {
592
- "type": "string"
593
- }
594
- }
595
- },
596
- "additionalProperties": {
597
- "minItems": 1,
598
- "type": "array",
599
- "items": {
600
- "type": "string"
601
- }
602
- }
603
- },
604
- "retry_on_empty": {
605
- "default": true,
606
- "description": "When true (default), empty provider responses are treated as failures, triggering fallback/retry. Set to false to treat them as successes.",
607
- "type": "boolean"
608
- }
609
- }
610
- },
611
- "council": {
612
- "type": "object",
613
- "properties": {
614
- "presets": {
615
- "type": "object",
616
- "propertyNames": {
617
- "type": "string"
618
- },
619
- "additionalProperties": {
620
- "type": "object",
621
- "propertyNames": {
622
- "type": "string"
623
- },
624
- "additionalProperties": {
625
- "type": "object",
626
- "propertyNames": {
627
- "type": "string"
628
- },
629
- "additionalProperties": {}
630
- }
631
- }
632
- },
633
- "timeout": {
634
- "default": 180000,
635
- "type": "number",
636
- "minimum": 0
637
- },
638
- "default_preset": {
639
- "default": "default",
640
- "type": "string"
641
- },
642
- "councillor_execution_mode": {
643
- "default": "parallel",
644
- "description": "Execution mode for councillors. \"serial\" runs them one at a time (required for single-model systems). \"parallel\" runs them concurrently (default, faster for multi-model systems).",
645
- "type": "string",
646
- "enum": [
647
- "parallel",
648
- "serial"
649
- ]
650
- },
651
- "councillor_retries": {
652
- "default": 3,
653
- "description": "Number of retry attempts for councillors that return empty responses (e.g. due to provider rate limiting). Default: 3 retries.",
654
- "type": "integer",
655
- "minimum": 0,
656
- "maximum": 5
657
- },
658
- "master": {
659
- "description": "DEPRECATED — ignored. Council agent synthesizes directly."
660
- },
661
- "master_timeout": {
662
- "description": "DEPRECATED — ignored. Use \"timeout\" instead."
663
- },
664
- "master_fallback": {
665
- "description": "DEPRECATED — ignored. No separate master session."
666
- }
667
- },
668
- "required": [
669
- "presets"
670
- ]
671
408
  }
672
409
  },
673
410
  "title": "agent-forge",
@@ -4,7 +4,7 @@ export interface AgentDefinition {
4
4
  displayName?: string;
5
5
  description?: string;
6
6
  config: AgentConfig;
7
- /** Priority-ordered model entries for runtime fallback resolution. */
7
+ /** Priority-ordered model entries for startup model selection. */
8
8
  _modelArray?: Array<{
9
9
  id: string;
10
10
  variant?: string;