@fabriccode/weave 0.7.0 → 0.7.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.
- package/README.md +0 -4
- package/dist/index.js +16 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -300,10 +300,6 @@ Tool access is controlled per-agent to ensure safety and specialized focus. For
|
|
|
300
300
|
- **Typecheck**: `bun run typecheck`
|
|
301
301
|
- **Clean**: `bun run clean`
|
|
302
302
|
|
|
303
|
-
## Acknowledgments
|
|
304
|
-
|
|
305
|
-
Weave was inspired by [Oh My Fabric](https://github.com/code-yeongyu/oh-my-fabric) by [@code-yeongyu](https://github.com/code-yeongyu) — a pioneering Fabric plugin that proved multi-agent orchestration, discipline agents, and structured plan-execute workflows could radically improve the developer experience. Many of Weave's core ideas — from category-based task dispatch to background agent parallelism — trace their roots to patterns Oh My Fabric established. We're grateful for the trailblazing work and the vibrant community around it.
|
|
306
|
-
|
|
307
303
|
## License
|
|
308
304
|
|
|
309
305
|
MIT
|
package/dist/index.js
CHANGED
|
@@ -212,14 +212,14 @@ function loadWeaveConfig(directory, _ctx, _homeDir) {
|
|
|
212
212
|
|
|
213
213
|
// src/shared/agent-display-names.ts
|
|
214
214
|
var AGENT_DISPLAY_NAMES = {
|
|
215
|
-
loom: "Loom (Main Orchestrator)",
|
|
216
|
-
tapestry: "Tapestry (Execution Orchestrator)",
|
|
217
|
-
shuttle: "
|
|
218
|
-
pattern: "
|
|
219
|
-
thread: "
|
|
220
|
-
spindle: "
|
|
221
|
-
warp: "
|
|
222
|
-
weft: "
|
|
215
|
+
loom: "Fabric Loom (Main Orchestrator)",
|
|
216
|
+
tapestry: "Fabric Tapestry (Execution Orchestrator)",
|
|
217
|
+
shuttle: "Fabric Shuttle (Domain Specialist)",
|
|
218
|
+
pattern: "Fabric Pattern (Strategic Planner)",
|
|
219
|
+
thread: "Fabric Thread (Codebase Explorer)",
|
|
220
|
+
spindle: "Fabric Spindle (External Researcher)",
|
|
221
|
+
warp: "Fabric Warp (Security Auditor)",
|
|
222
|
+
weft: "Fabric Weft (Reviewer/Auditor)"
|
|
223
223
|
};
|
|
224
224
|
var BUILTIN_CONFIG_KEYS = new Set(Object.keys(AGENT_DISPLAY_NAMES));
|
|
225
225
|
var reverseDisplayNames = null;
|
|
@@ -911,7 +911,7 @@ function composeLoomPrompt(options = {}) {
|
|
|
911
911
|
// src/agents/loom/default.ts
|
|
912
912
|
var LOOM_DEFAULTS = {
|
|
913
913
|
temperature: 0.1,
|
|
914
|
-
description: "Loom (Main Orchestrator)",
|
|
914
|
+
description: "Fabric Loom (Main Orchestrator)",
|
|
915
915
|
prompt: composeLoomPrompt()
|
|
916
916
|
};
|
|
917
917
|
|
|
@@ -1104,7 +1104,7 @@ function composeTapestryPrompt(options = {}) {
|
|
|
1104
1104
|
// src/agents/tapestry/default.ts
|
|
1105
1105
|
var TAPESTRY_DEFAULTS = {
|
|
1106
1106
|
temperature: 0.1,
|
|
1107
|
-
description: "Tapestry (Execution Orchestrator)",
|
|
1107
|
+
description: "Fabric Tapestry (Execution Orchestrator)",
|
|
1108
1108
|
tools: {
|
|
1109
1109
|
call_weave_agent: false
|
|
1110
1110
|
},
|
|
@@ -1135,7 +1135,7 @@ createTapestryAgent.mode = "primary";
|
|
|
1135
1135
|
// src/agents/shuttle/default.ts
|
|
1136
1136
|
var SHUTTLE_DEFAULTS = {
|
|
1137
1137
|
temperature: 0.2,
|
|
1138
|
-
description: "Shuttle (Domain Specialist)",
|
|
1138
|
+
description: "Fabric Shuttle (Domain Specialist)",
|
|
1139
1139
|
prompt: `<Role>
|
|
1140
1140
|
Shuttle — category-based specialist worker for Weave.
|
|
1141
1141
|
You execute domain-specific tasks assigned by the orchestrator.
|
|
@@ -1167,7 +1167,7 @@ createShuttleAgent.mode = "all";
|
|
|
1167
1167
|
// src/agents/pattern/default.ts
|
|
1168
1168
|
var PATTERN_DEFAULTS = {
|
|
1169
1169
|
temperature: 0.3,
|
|
1170
|
-
description: "Pattern (Strategic Planner)",
|
|
1170
|
+
description: "Fabric Pattern (Strategic Planner)",
|
|
1171
1171
|
prompt: `<Role>
|
|
1172
1172
|
Pattern — strategic planner for Weave.
|
|
1173
1173
|
You analyze requirements, research the codebase, and produce detailed implementation plans.
|
|
@@ -1267,7 +1267,7 @@ createPatternAgent.mode = "subagent";
|
|
|
1267
1267
|
// src/agents/thread/default.ts
|
|
1268
1268
|
var THREAD_DEFAULTS = {
|
|
1269
1269
|
temperature: 0,
|
|
1270
|
-
description: "Thread (Codebase Explorer)",
|
|
1270
|
+
description: "Fabric Thread (Codebase Explorer)",
|
|
1271
1271
|
tools: {
|
|
1272
1272
|
write: false,
|
|
1273
1273
|
edit: false,
|
|
@@ -1306,7 +1306,7 @@ createThreadAgent.mode = "subagent";
|
|
|
1306
1306
|
// src/agents/spindle/default.ts
|
|
1307
1307
|
var SPINDLE_DEFAULTS = {
|
|
1308
1308
|
temperature: 0.1,
|
|
1309
|
-
description: "Spindle (External Researcher)",
|
|
1309
|
+
description: "Fabric Spindle (External Researcher)",
|
|
1310
1310
|
tools: {
|
|
1311
1311
|
write: false,
|
|
1312
1312
|
edit: false,
|
|
@@ -1345,7 +1345,7 @@ createSpindleAgent.mode = "subagent";
|
|
|
1345
1345
|
// src/agents/weft/default.ts
|
|
1346
1346
|
var WEFT_DEFAULTS = {
|
|
1347
1347
|
temperature: 0.1,
|
|
1348
|
-
description: "Weft (Reviewer/Auditor)",
|
|
1348
|
+
description: "Fabric Weft (Reviewer/Auditor)",
|
|
1349
1349
|
tools: {
|
|
1350
1350
|
write: false,
|
|
1351
1351
|
edit: false,
|
|
@@ -1432,7 +1432,7 @@ createWeftAgent.mode = "subagent";
|
|
|
1432
1432
|
// src/agents/warp/default.ts
|
|
1433
1433
|
var WARP_DEFAULTS = {
|
|
1434
1434
|
temperature: 0.1,
|
|
1435
|
-
description: "Warp (Security Auditor)",
|
|
1435
|
+
description: "Fabric Warp (Security Auditor)",
|
|
1436
1436
|
tools: {
|
|
1437
1437
|
write: false,
|
|
1438
1438
|
edit: false,
|