@bendyline/gilde 0.1.33 → 0.1.35
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/authoring/chat-models/qwen3.8-27b-q3.json +189 -0
- package/data/chat-models/index.json +1 -1
- package/data/chat-models/qw/qwen3.8-27b-q3/manifest.json +194 -0
- package/data/chat-models/qw/qwen3.8-27b-q3/versions/1.0.0/manifest.json +19 -0
- package/data/craftbook-templates/index.json +1 -1
- package/data/craftbook-templates/po/powerpoint-deck/versions/1.7.2/craftbook.json +354 -0
- package/data/craftbook-templates/po/powerpoint-deck/versions/1.7.2/test.json +241 -0
- package/data/craftbook-templates/pu/pull-request-review/versions/1.7.0/craftbook.json +273 -0
- package/data/craftbook-templates/pu/pull-request-review/versions/1.7.0/test.json +141 -0
- package/data/gezel-templates/bu/builder/versions/1.4.1/about.md +34 -0
- package/data/gezel-templates/bu/builder/versions/1.4.1/manifest.json +9 -0
- package/data/gezel-templates/de/developer/versions/1.4.1/about.md +34 -0
- package/data/gezel-templates/de/developer/versions/1.4.1/manifest.json +9 -0
- package/data/gezel-templates/index.json +1 -1
- package/data/toolsets/do/docblocks/manifest.json +3 -1
- package/data/toolsets/do/docblocks/versions/2.4.0/manifest.json +95 -0
- package/data/toolsets/index.json +1 -1
- package/package.json +1 -1
- package/schemas/craftbook-doc.schema.json +148 -0
- package/schemas/craftbook-template-version.schema.json +148 -0
- package/schemas/craftbook-test.schema.json +148 -0
|
@@ -1426,6 +1426,43 @@
|
|
|
1426
1426
|
"corpusDir"
|
|
1427
1427
|
]
|
|
1428
1428
|
},
|
|
1429
|
+
{
|
|
1430
|
+
"type": "object",
|
|
1431
|
+
"properties": {
|
|
1432
|
+
"kind": {
|
|
1433
|
+
"type": "string",
|
|
1434
|
+
"const": "corpusBatches"
|
|
1435
|
+
},
|
|
1436
|
+
"file": {
|
|
1437
|
+
"type": "string",
|
|
1438
|
+
"minLength": 1
|
|
1439
|
+
},
|
|
1440
|
+
"corpusDir": {
|
|
1441
|
+
"type": "string",
|
|
1442
|
+
"minLength": 1
|
|
1443
|
+
},
|
|
1444
|
+
"manifestSuffix": {
|
|
1445
|
+
"type": "string",
|
|
1446
|
+
"minLength": 1
|
|
1447
|
+
},
|
|
1448
|
+
"itemsField": {
|
|
1449
|
+
"type": "string",
|
|
1450
|
+
"minLength": 1
|
|
1451
|
+
},
|
|
1452
|
+
"totalField": {
|
|
1453
|
+
"type": "string",
|
|
1454
|
+
"minLength": 1
|
|
1455
|
+
},
|
|
1456
|
+
"artifact": {
|
|
1457
|
+
"type": "boolean"
|
|
1458
|
+
}
|
|
1459
|
+
},
|
|
1460
|
+
"required": [
|
|
1461
|
+
"kind",
|
|
1462
|
+
"file",
|
|
1463
|
+
"corpusDir"
|
|
1464
|
+
]
|
|
1465
|
+
},
|
|
1429
1466
|
{
|
|
1430
1467
|
"type": "object",
|
|
1431
1468
|
"properties": {
|
|
@@ -2370,6 +2407,43 @@
|
|
|
2370
2407
|
"corpusDir"
|
|
2371
2408
|
]
|
|
2372
2409
|
},
|
|
2410
|
+
{
|
|
2411
|
+
"type": "object",
|
|
2412
|
+
"properties": {
|
|
2413
|
+
"kind": {
|
|
2414
|
+
"type": "string",
|
|
2415
|
+
"const": "corpusBatches"
|
|
2416
|
+
},
|
|
2417
|
+
"file": {
|
|
2418
|
+
"type": "string",
|
|
2419
|
+
"minLength": 1
|
|
2420
|
+
},
|
|
2421
|
+
"corpusDir": {
|
|
2422
|
+
"type": "string",
|
|
2423
|
+
"minLength": 1
|
|
2424
|
+
},
|
|
2425
|
+
"manifestSuffix": {
|
|
2426
|
+
"type": "string",
|
|
2427
|
+
"minLength": 1
|
|
2428
|
+
},
|
|
2429
|
+
"itemsField": {
|
|
2430
|
+
"type": "string",
|
|
2431
|
+
"minLength": 1
|
|
2432
|
+
},
|
|
2433
|
+
"totalField": {
|
|
2434
|
+
"type": "string",
|
|
2435
|
+
"minLength": 1
|
|
2436
|
+
},
|
|
2437
|
+
"artifact": {
|
|
2438
|
+
"type": "boolean"
|
|
2439
|
+
}
|
|
2440
|
+
},
|
|
2441
|
+
"required": [
|
|
2442
|
+
"kind",
|
|
2443
|
+
"file",
|
|
2444
|
+
"corpusDir"
|
|
2445
|
+
]
|
|
2446
|
+
},
|
|
2373
2447
|
{
|
|
2374
2448
|
"type": "object",
|
|
2375
2449
|
"properties": {
|
|
@@ -4238,6 +4312,43 @@
|
|
|
4238
4312
|
"corpusDir"
|
|
4239
4313
|
]
|
|
4240
4314
|
},
|
|
4315
|
+
{
|
|
4316
|
+
"type": "object",
|
|
4317
|
+
"properties": {
|
|
4318
|
+
"kind": {
|
|
4319
|
+
"type": "string",
|
|
4320
|
+
"const": "corpusBatches"
|
|
4321
|
+
},
|
|
4322
|
+
"file": {
|
|
4323
|
+
"type": "string",
|
|
4324
|
+
"minLength": 1
|
|
4325
|
+
},
|
|
4326
|
+
"corpusDir": {
|
|
4327
|
+
"type": "string",
|
|
4328
|
+
"minLength": 1
|
|
4329
|
+
},
|
|
4330
|
+
"manifestSuffix": {
|
|
4331
|
+
"type": "string",
|
|
4332
|
+
"minLength": 1
|
|
4333
|
+
},
|
|
4334
|
+
"itemsField": {
|
|
4335
|
+
"type": "string",
|
|
4336
|
+
"minLength": 1
|
|
4337
|
+
},
|
|
4338
|
+
"totalField": {
|
|
4339
|
+
"type": "string",
|
|
4340
|
+
"minLength": 1
|
|
4341
|
+
},
|
|
4342
|
+
"artifact": {
|
|
4343
|
+
"type": "boolean"
|
|
4344
|
+
}
|
|
4345
|
+
},
|
|
4346
|
+
"required": [
|
|
4347
|
+
"kind",
|
|
4348
|
+
"file",
|
|
4349
|
+
"corpusDir"
|
|
4350
|
+
]
|
|
4351
|
+
},
|
|
4241
4352
|
{
|
|
4242
4353
|
"type": "object",
|
|
4243
4354
|
"properties": {
|
|
@@ -5182,6 +5293,43 @@
|
|
|
5182
5293
|
"corpusDir"
|
|
5183
5294
|
]
|
|
5184
5295
|
},
|
|
5296
|
+
{
|
|
5297
|
+
"type": "object",
|
|
5298
|
+
"properties": {
|
|
5299
|
+
"kind": {
|
|
5300
|
+
"type": "string",
|
|
5301
|
+
"const": "corpusBatches"
|
|
5302
|
+
},
|
|
5303
|
+
"file": {
|
|
5304
|
+
"type": "string",
|
|
5305
|
+
"minLength": 1
|
|
5306
|
+
},
|
|
5307
|
+
"corpusDir": {
|
|
5308
|
+
"type": "string",
|
|
5309
|
+
"minLength": 1
|
|
5310
|
+
},
|
|
5311
|
+
"manifestSuffix": {
|
|
5312
|
+
"type": "string",
|
|
5313
|
+
"minLength": 1
|
|
5314
|
+
},
|
|
5315
|
+
"itemsField": {
|
|
5316
|
+
"type": "string",
|
|
5317
|
+
"minLength": 1
|
|
5318
|
+
},
|
|
5319
|
+
"totalField": {
|
|
5320
|
+
"type": "string",
|
|
5321
|
+
"minLength": 1
|
|
5322
|
+
},
|
|
5323
|
+
"artifact": {
|
|
5324
|
+
"type": "boolean"
|
|
5325
|
+
}
|
|
5326
|
+
},
|
|
5327
|
+
"required": [
|
|
5328
|
+
"kind",
|
|
5329
|
+
"file",
|
|
5330
|
+
"corpusDir"
|
|
5331
|
+
]
|
|
5332
|
+
},
|
|
5185
5333
|
{
|
|
5186
5334
|
"type": "object",
|
|
5187
5335
|
"properties": {
|
|
@@ -1100,6 +1100,43 @@
|
|
|
1100
1100
|
"corpusDir"
|
|
1101
1101
|
]
|
|
1102
1102
|
},
|
|
1103
|
+
{
|
|
1104
|
+
"type": "object",
|
|
1105
|
+
"properties": {
|
|
1106
|
+
"kind": {
|
|
1107
|
+
"type": "string",
|
|
1108
|
+
"const": "corpusBatches"
|
|
1109
|
+
},
|
|
1110
|
+
"file": {
|
|
1111
|
+
"type": "string",
|
|
1112
|
+
"minLength": 1
|
|
1113
|
+
},
|
|
1114
|
+
"corpusDir": {
|
|
1115
|
+
"type": "string",
|
|
1116
|
+
"minLength": 1
|
|
1117
|
+
},
|
|
1118
|
+
"manifestSuffix": {
|
|
1119
|
+
"type": "string",
|
|
1120
|
+
"minLength": 1
|
|
1121
|
+
},
|
|
1122
|
+
"itemsField": {
|
|
1123
|
+
"type": "string",
|
|
1124
|
+
"minLength": 1
|
|
1125
|
+
},
|
|
1126
|
+
"totalField": {
|
|
1127
|
+
"type": "string",
|
|
1128
|
+
"minLength": 1
|
|
1129
|
+
},
|
|
1130
|
+
"artifact": {
|
|
1131
|
+
"type": "boolean"
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"required": [
|
|
1135
|
+
"kind",
|
|
1136
|
+
"file",
|
|
1137
|
+
"corpusDir"
|
|
1138
|
+
]
|
|
1139
|
+
},
|
|
1103
1140
|
{
|
|
1104
1141
|
"type": "object",
|
|
1105
1142
|
"properties": {
|
|
@@ -2122,6 +2159,43 @@
|
|
|
2122
2159
|
"corpusDir"
|
|
2123
2160
|
]
|
|
2124
2161
|
},
|
|
2162
|
+
{
|
|
2163
|
+
"type": "object",
|
|
2164
|
+
"properties": {
|
|
2165
|
+
"kind": {
|
|
2166
|
+
"type": "string",
|
|
2167
|
+
"const": "corpusBatches"
|
|
2168
|
+
},
|
|
2169
|
+
"file": {
|
|
2170
|
+
"type": "string",
|
|
2171
|
+
"minLength": 1
|
|
2172
|
+
},
|
|
2173
|
+
"corpusDir": {
|
|
2174
|
+
"type": "string",
|
|
2175
|
+
"minLength": 1
|
|
2176
|
+
},
|
|
2177
|
+
"manifestSuffix": {
|
|
2178
|
+
"type": "string",
|
|
2179
|
+
"minLength": 1
|
|
2180
|
+
},
|
|
2181
|
+
"itemsField": {
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"minLength": 1
|
|
2184
|
+
},
|
|
2185
|
+
"totalField": {
|
|
2186
|
+
"type": "string",
|
|
2187
|
+
"minLength": 1
|
|
2188
|
+
},
|
|
2189
|
+
"artifact": {
|
|
2190
|
+
"type": "boolean"
|
|
2191
|
+
}
|
|
2192
|
+
},
|
|
2193
|
+
"required": [
|
|
2194
|
+
"kind",
|
|
2195
|
+
"file",
|
|
2196
|
+
"corpusDir"
|
|
2197
|
+
]
|
|
2198
|
+
},
|
|
2125
2199
|
{
|
|
2126
2200
|
"type": "object",
|
|
2127
2201
|
"properties": {
|
|
@@ -3144,6 +3218,43 @@
|
|
|
3144
3218
|
"corpusDir"
|
|
3145
3219
|
]
|
|
3146
3220
|
},
|
|
3221
|
+
{
|
|
3222
|
+
"type": "object",
|
|
3223
|
+
"properties": {
|
|
3224
|
+
"kind": {
|
|
3225
|
+
"type": "string",
|
|
3226
|
+
"const": "corpusBatches"
|
|
3227
|
+
},
|
|
3228
|
+
"file": {
|
|
3229
|
+
"type": "string",
|
|
3230
|
+
"minLength": 1
|
|
3231
|
+
},
|
|
3232
|
+
"corpusDir": {
|
|
3233
|
+
"type": "string",
|
|
3234
|
+
"minLength": 1
|
|
3235
|
+
},
|
|
3236
|
+
"manifestSuffix": {
|
|
3237
|
+
"type": "string",
|
|
3238
|
+
"minLength": 1
|
|
3239
|
+
},
|
|
3240
|
+
"itemsField": {
|
|
3241
|
+
"type": "string",
|
|
3242
|
+
"minLength": 1
|
|
3243
|
+
},
|
|
3244
|
+
"totalField": {
|
|
3245
|
+
"type": "string",
|
|
3246
|
+
"minLength": 1
|
|
3247
|
+
},
|
|
3248
|
+
"artifact": {
|
|
3249
|
+
"type": "boolean"
|
|
3250
|
+
}
|
|
3251
|
+
},
|
|
3252
|
+
"required": [
|
|
3253
|
+
"kind",
|
|
3254
|
+
"file",
|
|
3255
|
+
"corpusDir"
|
|
3256
|
+
]
|
|
3257
|
+
},
|
|
3147
3258
|
{
|
|
3148
3259
|
"type": "object",
|
|
3149
3260
|
"properties": {
|
|
@@ -4167,6 +4278,43 @@
|
|
|
4167
4278
|
"corpusDir"
|
|
4168
4279
|
]
|
|
4169
4280
|
},
|
|
4281
|
+
{
|
|
4282
|
+
"type": "object",
|
|
4283
|
+
"properties": {
|
|
4284
|
+
"kind": {
|
|
4285
|
+
"type": "string",
|
|
4286
|
+
"const": "corpusBatches"
|
|
4287
|
+
},
|
|
4288
|
+
"file": {
|
|
4289
|
+
"type": "string",
|
|
4290
|
+
"minLength": 1
|
|
4291
|
+
},
|
|
4292
|
+
"corpusDir": {
|
|
4293
|
+
"type": "string",
|
|
4294
|
+
"minLength": 1
|
|
4295
|
+
},
|
|
4296
|
+
"manifestSuffix": {
|
|
4297
|
+
"type": "string",
|
|
4298
|
+
"minLength": 1
|
|
4299
|
+
},
|
|
4300
|
+
"itemsField": {
|
|
4301
|
+
"type": "string",
|
|
4302
|
+
"minLength": 1
|
|
4303
|
+
},
|
|
4304
|
+
"totalField": {
|
|
4305
|
+
"type": "string",
|
|
4306
|
+
"minLength": 1
|
|
4307
|
+
},
|
|
4308
|
+
"artifact": {
|
|
4309
|
+
"type": "boolean"
|
|
4310
|
+
}
|
|
4311
|
+
},
|
|
4312
|
+
"required": [
|
|
4313
|
+
"kind",
|
|
4314
|
+
"file",
|
|
4315
|
+
"corpusDir"
|
|
4316
|
+
]
|
|
4317
|
+
},
|
|
4170
4318
|
{
|
|
4171
4319
|
"type": "object",
|
|
4172
4320
|
"properties": {
|