@zcy2nn/agent-forge 1.1.3 → 1.1.4
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/README.md +247 -247
- package/agent-forge.schema.json +2 -133
- package/dist/cli/index.js +109 -204
- package/dist/cli/providers.d.ts +0 -44
- package/dist/config/constants.d.ts +3 -4
- package/dist/config/index.d.ts +0 -1
- package/dist/config/schema.d.ts +2 -72
- package/dist/index.js +191 -995
- package/dist/tools/index.d.ts +0 -1
- package/dist/tui.js +5 -18
- package/package.json +104 -104
- package/src/skills/brainstorming/SKILL.md +185 -186
- package/src/skills/brainstorming/scripts/frame-template.html +214 -214
- package/src/skills/brainstorming/scripts/server.cjs +354 -354
- package/src/skills/brainstorming/spec-document-reviewer-prompt.md +1 -1
- package/src/skills/codemap/README.md +3 -3
- package/src/skills/codemap/SKILL.md +5 -5
- package/src/skills/codemap/codemap.md +4 -4
- package/src/skills/codemap/scripts/codemap.mjs +1 -1
- package/src/skills/codemap/scripts/codemap.test.ts +1 -1
- package/src/skills/requesting-code-review/SKILL.md +1 -1
- package/src/skills/subagent-driven-development/SKILL.md +1 -1
- package/src/skills/systematic-debugging/SKILL.md +318 -318
- package/src/skills/test-driven-development/SKILL.md +392 -392
- package/src/skills/verification-before-completion/SKILL.md +153 -153
- package/src/skills/writing-plans/SKILL.md +2 -2
- package/src/skills/writing-skills/graphviz-conventions.dot +171 -171
- package/dist/agents/council.d.ts +0 -27
- package/dist/agents/councillor.d.ts +0 -2
- package/dist/agents/designer.d.ts +0 -2
- package/dist/agents/explorer.d.ts +0 -2
- package/dist/agents/fixer.d.ts +0 -2
- package/dist/agents/implementer.d.ts +0 -2
- package/dist/agents/librarian.d.ts +0 -2
- package/dist/agents/observer.d.ts +0 -2
- package/dist/agents/oracle.d.ts +0 -2
- package/dist/agents/reviewer.d.ts +0 -2
- package/dist/cli/migration.d.ts +0 -46
- package/dist/config/council-schema.d.ts +0 -127
- package/dist/council/council-manager.d.ts +0 -49
- package/dist/council/index.d.ts +0 -1
- package/dist/skills/systematic-debugging/condition-based-waiting-example.d.ts +0 -51
- package/dist/tools/council.d.ts +0 -10
- package/src/skills/using-git-worktrees/SKILL.md +0 -226
package/agent-forge.schema.json
CHANGED
|
@@ -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
|
|
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"
|
|
@@ -577,20 +521,6 @@
|
|
|
577
521
|
"items": {
|
|
578
522
|
"type": "string"
|
|
579
523
|
}
|
|
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
524
|
}
|
|
595
525
|
},
|
|
596
526
|
"additionalProperties": {
|
|
@@ -607,67 +537,6 @@
|
|
|
607
537
|
"type": "boolean"
|
|
608
538
|
}
|
|
609
539
|
}
|
|
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
540
|
}
|
|
672
541
|
},
|
|
673
542
|
"title": "agent-forge",
|