@shrkcrft/cli 0.1.0-alpha.7 → 0.1.0-alpha.9
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 +1 -1
- package/dist/commands/boundaries.command.d.ts.map +1 -1
- package/dist/commands/boundaries.command.js +12 -0
- package/dist/commands/check.command.d.ts.map +1 -1
- package/dist/commands/check.command.js +30 -20
- package/dist/commands/command-catalog.d.ts.map +1 -1
- package/dist/commands/command-catalog.js +14 -1
- package/dist/commands/doctor.command.d.ts.map +1 -1
- package/dist/commands/doctor.command.js +7 -8
- package/dist/commands/help.command.d.ts.map +1 -1
- package/dist/commands/help.command.js +8 -6
- package/dist/commands/init.command.d.ts.map +1 -1
- package/dist/commands/init.command.js +13 -37
- package/dist/commands/mcp.command.d.ts.map +1 -1
- package/dist/commands/mcp.command.js +131 -2
- package/dist/commands/onboard.command.d.ts.map +1 -1
- package/dist/commands/onboard.command.js +15 -3
- package/dist/commands/packs-new.d.ts.map +1 -1
- package/dist/commands/packs-new.js +10 -3
- package/dist/commands/packs.command.d.ts.map +1 -1
- package/dist/commands/packs.command.js +17 -3
- package/dist/commands/review.command.d.ts.map +1 -1
- package/dist/commands/review.command.js +28 -2
- package/dist/init/init-templates.d.ts.map +1 -1
- package/dist/init/init-templates.js +113 -133
- package/dist/main.d.ts +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +35 -13
- package/dist/output/failure-hints.d.ts +9 -1
- package/dist/output/failure-hints.d.ts.map +1 -1
- package/dist/output/failure-hints.js +8 -2
- package/dist/output/watch-loop.d.ts +1 -9
- package/dist/output/watch-loop.d.ts.map +1 -1
- package/dist/output/watch-loop.js +3 -13
- package/dist/schemas/json-schemas.d.ts +36 -36
- package/dist/schemas/json-schemas.js +36 -36
- package/dist/surface/about.d.ts.map +1 -1
- package/dist/surface/about.js +15 -37
- package/dist/surface/no-args-landing.d.ts.map +1 -1
- package/dist/surface/no-args-landing.js +13 -9
- package/dist/surface/surface-config-writer.d.ts.map +1 -1
- package/dist/surface/surface-config-writer.js +11 -23
- package/package.json +25 -26
- package/dist/init/paths-advisory.d.ts +0 -20
- package/dist/init/paths-advisory.d.ts.map +0 -1
- package/dist/init/paths-advisory.js +0 -88
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const PackManifestSchema: {
|
|
8
8
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
9
|
-
readonly $id: "https://
|
|
9
|
+
readonly $id: "https://sharkcraft.dev/schemas/pack-manifest.json";
|
|
10
10
|
readonly title: "SharkCraft Pack Manifest";
|
|
11
11
|
readonly type: "object";
|
|
12
12
|
readonly additionalProperties: true;
|
|
@@ -90,7 +90,7 @@ export declare const PackManifestSchema: {
|
|
|
90
90
|
};
|
|
91
91
|
export declare const SavedPlanSchema: {
|
|
92
92
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
93
|
-
readonly $id: "https://
|
|
93
|
+
readonly $id: "https://sharkcraft.dev/schemas/saved-plan.json";
|
|
94
94
|
readonly title: "SharkCraft Saved Plan";
|
|
95
95
|
readonly type: "object";
|
|
96
96
|
readonly additionalProperties: false;
|
|
@@ -161,7 +161,7 @@ export declare const SavedPlanSchema: {
|
|
|
161
161
|
};
|
|
162
162
|
export declare const ActionHintsSchema: {
|
|
163
163
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
164
|
-
readonly $id: "https://
|
|
164
|
+
readonly $id: "https://sharkcraft.dev/schemas/action-hints.json";
|
|
165
165
|
readonly title: "SharkCraft Action Hints";
|
|
166
166
|
readonly type: "object";
|
|
167
167
|
readonly additionalProperties: false;
|
|
@@ -260,7 +260,7 @@ export declare const ActionHintsSchema: {
|
|
|
260
260
|
};
|
|
261
261
|
export declare const PipelineDefinitionSchema: {
|
|
262
262
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
263
|
-
readonly $id: "https://
|
|
263
|
+
readonly $id: "https://sharkcraft.dev/schemas/pipeline-definition.json";
|
|
264
264
|
readonly title: "SharkCraft Pipeline Definition";
|
|
265
265
|
readonly type: "object";
|
|
266
266
|
readonly required: readonly ["id", "title", "description", "steps"];
|
|
@@ -378,7 +378,7 @@ export declare const PipelineDefinitionSchema: {
|
|
|
378
378
|
};
|
|
379
379
|
export declare const KnowledgeEntrySchema: {
|
|
380
380
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
381
|
-
readonly $id: "https://
|
|
381
|
+
readonly $id: "https://sharkcraft.dev/schemas/knowledge-entry.json";
|
|
382
382
|
readonly title: "SharkCraft Knowledge Entry";
|
|
383
383
|
readonly type: "object";
|
|
384
384
|
readonly required: readonly ["id", "title", "type", "priority", "content"];
|
|
@@ -427,7 +427,7 @@ export declare const KnowledgeEntrySchema: {
|
|
|
427
427
|
};
|
|
428
428
|
export declare const AdoptionStateSchema: {
|
|
429
429
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
430
|
-
readonly $id: "https://
|
|
430
|
+
readonly $id: "https://sharkcraft.dev/schemas/adoption-state.json";
|
|
431
431
|
readonly title: "SharkCraft Adoption State";
|
|
432
432
|
readonly type: "object";
|
|
433
433
|
readonly required: readonly ["schema", "projectRoot", "createdAt", "updatedAt", "patchPath"];
|
|
@@ -552,7 +552,7 @@ export declare const AdoptionStateSchema: {
|
|
|
552
552
|
};
|
|
553
553
|
export declare const AdoptionSummarySchema: {
|
|
554
554
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
555
|
-
readonly $id: "https://
|
|
555
|
+
readonly $id: "https://sharkcraft.dev/schemas/adoption-summary.json";
|
|
556
556
|
readonly title: "SharkCraft Adoption Summary";
|
|
557
557
|
readonly type: "object";
|
|
558
558
|
readonly required: readonly ["confidence", "summary", "items", "format", "targets"];
|
|
@@ -579,7 +579,7 @@ export declare const AdoptionSummarySchema: {
|
|
|
579
579
|
};
|
|
580
580
|
export declare const ScaffoldPatternSchema: {
|
|
581
581
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
582
|
-
readonly $id: "https://
|
|
582
|
+
readonly $id: "https://sharkcraft.dev/schemas/scaffold-pattern.json";
|
|
583
583
|
readonly title: "SharkCraft Scaffold Pattern";
|
|
584
584
|
readonly type: "object";
|
|
585
585
|
readonly required: readonly ["id", "title", "description", "matchPaths", "templateId", "variables", "appliesWhen", "confidence"];
|
|
@@ -659,7 +659,7 @@ export declare const ScaffoldPatternSchema: {
|
|
|
659
659
|
};
|
|
660
660
|
export declare const InferredTemplateCandidateV2Schema: {
|
|
661
661
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
662
|
-
readonly $id: "https://
|
|
662
|
+
readonly $id: "https://sharkcraft.dev/schemas/inferred-template-candidate-v2.json";
|
|
663
663
|
readonly title: "SharkCraft Inferred Template Candidate v2";
|
|
664
664
|
readonly type: "object";
|
|
665
665
|
readonly required: readonly ["schema", "sample"];
|
|
@@ -709,7 +709,7 @@ export declare const InferredTemplateCandidateV2Schema: {
|
|
|
709
709
|
};
|
|
710
710
|
export declare const QualityReportSchema: {
|
|
711
711
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
712
|
-
readonly $id: "https://
|
|
712
|
+
readonly $id: "https://sharkcraft.dev/schemas/quality-report.json";
|
|
713
713
|
readonly title: "SharkCraft Quality Report";
|
|
714
714
|
readonly type: "object";
|
|
715
715
|
readonly required: readonly ["overall", "gates", "score"];
|
|
@@ -748,7 +748,7 @@ export declare const QualityReportSchema: {
|
|
|
748
748
|
};
|
|
749
749
|
export declare const SafetyAuditSchema: {
|
|
750
750
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
751
|
-
readonly $id: "https://
|
|
751
|
+
readonly $id: "https://sharkcraft.dev/schemas/safety-audit.json";
|
|
752
752
|
readonly title: "SharkCraft Safety Audit";
|
|
753
753
|
readonly type: "object";
|
|
754
754
|
readonly required: readonly ["mcp", "commands"];
|
|
@@ -786,7 +786,7 @@ export declare const SafetyAuditSchema: {
|
|
|
786
786
|
};
|
|
787
787
|
export declare const DevSessionStateSchema: {
|
|
788
788
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
789
|
-
readonly $id: "https://
|
|
789
|
+
readonly $id: "https://sharkcraft.dev/schemas/dev-session-state.json";
|
|
790
790
|
readonly title: "SharkCraft Dev Session State";
|
|
791
791
|
readonly type: "object";
|
|
792
792
|
readonly required: readonly ["schema", "id", "task", "phase"];
|
|
@@ -849,7 +849,7 @@ export declare const DevSessionStateSchema: {
|
|
|
849
849
|
};
|
|
850
850
|
export declare const DashboardApiEnvelopeSchema: {
|
|
851
851
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
852
|
-
readonly $id: "https://
|
|
852
|
+
readonly $id: "https://sharkcraft.dev/schemas/dashboard-api-envelope.json";
|
|
853
853
|
readonly title: "SharkCraft Dashboard API Envelope";
|
|
854
854
|
readonly type: "object";
|
|
855
855
|
readonly required: readonly ["schema", "generatedAt", "projectRoot", "data"];
|
|
@@ -887,7 +887,7 @@ export declare const DashboardApiEnvelopeSchema: {
|
|
|
887
887
|
};
|
|
888
888
|
export declare const DashboardOverviewResponseSchema: {
|
|
889
889
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
890
|
-
readonly $id: "https://
|
|
890
|
+
readonly $id: "https://sharkcraft.dev/schemas/dashboard-overview-response.json";
|
|
891
891
|
readonly title: "SharkCraft Dashboard Overview Response";
|
|
892
892
|
readonly type: "object";
|
|
893
893
|
readonly required: readonly ["readiness", "sharkcraftPresent", "configPresent", "summary", "topRecommendations", "featureAvailability"];
|
|
@@ -955,7 +955,7 @@ export declare const DashboardOverviewResponseSchema: {
|
|
|
955
955
|
};
|
|
956
956
|
export declare const DashboardAdoptionResponseSchema: {
|
|
957
957
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
958
|
-
readonly $id: "https://
|
|
958
|
+
readonly $id: "https://sharkcraft.dev/schemas/dashboard-adoption-response.json";
|
|
959
959
|
readonly title: "SharkCraft Dashboard Adoption Response";
|
|
960
960
|
readonly type: "object";
|
|
961
961
|
readonly required: readonly ["available", "nextCommands", "artifacts"];
|
|
@@ -976,7 +976,7 @@ export declare const DashboardAdoptionResponseSchema: {
|
|
|
976
976
|
};
|
|
977
977
|
export declare const DashboardSessionResponseSchema: {
|
|
978
978
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
979
|
-
readonly $id: "https://
|
|
979
|
+
readonly $id: "https://sharkcraft.dev/schemas/dashboard-session-response.json";
|
|
980
980
|
readonly title: "SharkCraft Dashboard Session Response";
|
|
981
981
|
readonly type: "object";
|
|
982
982
|
readonly required: readonly ["available", "sessionId", "artifacts", "commandHints"];
|
|
@@ -1015,7 +1015,7 @@ export declare const DashboardSessionResponseSchema: {
|
|
|
1015
1015
|
};
|
|
1016
1016
|
export declare const AdoptionMergePreviewSchema: {
|
|
1017
1017
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1018
|
-
readonly $id: "https://
|
|
1018
|
+
readonly $id: "https://sharkcraft.dev/schemas/adoption-merge-preview.json";
|
|
1019
1019
|
readonly title: "SharkCraft Adoption Merge Preview";
|
|
1020
1020
|
readonly type: "object";
|
|
1021
1021
|
readonly required: readonly ["schema", "targets", "safeBlocks", "manualReview", "lowConfidenceSkipped"];
|
|
@@ -1054,7 +1054,7 @@ export declare const AdoptionMergePreviewSchema: {
|
|
|
1054
1054
|
};
|
|
1055
1055
|
export declare const AdoptionReportSchema: {
|
|
1056
1056
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1057
|
-
readonly $id: "https://
|
|
1057
|
+
readonly $id: "https://sharkcraft.dev/schemas/adoption-report.json";
|
|
1058
1058
|
readonly title: "SharkCraft Adoption Report";
|
|
1059
1059
|
readonly type: "object";
|
|
1060
1060
|
readonly required: readonly ["schema"];
|
|
@@ -1099,7 +1099,7 @@ export declare const AdoptionReportSchema: {
|
|
|
1099
1099
|
};
|
|
1100
1100
|
export declare const FeatureBundleSchema: {
|
|
1101
1101
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1102
|
-
readonly $id: "https://
|
|
1102
|
+
readonly $id: "https://sharkcraft.dev/schemas/feature-bundle.json";
|
|
1103
1103
|
readonly title: "SharkCraft Feature Workflow Bundle";
|
|
1104
1104
|
readonly type: "object";
|
|
1105
1105
|
readonly additionalProperties: true;
|
|
@@ -1151,7 +1151,7 @@ export declare const FeatureBundleSchema: {
|
|
|
1151
1151
|
};
|
|
1152
1152
|
export declare const PlanDependencyGraphSchema: {
|
|
1153
1153
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1154
|
-
readonly $id: "https://
|
|
1154
|
+
readonly $id: "https://sharkcraft.dev/schemas/plan-dependency-graph.json";
|
|
1155
1155
|
readonly title: "SharkCraft Plan Dependency Graph";
|
|
1156
1156
|
readonly type: "object";
|
|
1157
1157
|
readonly required: readonly ["schema", "bundleId", "nodes", "edges"];
|
|
@@ -1175,7 +1175,7 @@ export declare const PlanDependencyGraphSchema: {
|
|
|
1175
1175
|
};
|
|
1176
1176
|
export declare const AreaMapSchema: {
|
|
1177
1177
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1178
|
-
readonly $id: "https://
|
|
1178
|
+
readonly $id: "https://sharkcraft.dev/schemas/area-map.json";
|
|
1179
1179
|
readonly title: "SharkCraft Repository Area Map";
|
|
1180
1180
|
readonly type: "object";
|
|
1181
1181
|
readonly required: readonly ["schema", "projectRoot", "areas"];
|
|
@@ -1196,7 +1196,7 @@ export declare const AreaMapSchema: {
|
|
|
1196
1196
|
};
|
|
1197
1197
|
export declare const ImpactAnalysisSchema: {
|
|
1198
1198
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1199
|
-
readonly $id: "https://
|
|
1199
|
+
readonly $id: "https://sharkcraft.dev/schemas/impact-analysis.json";
|
|
1200
1200
|
readonly title: "SharkCraft Impact Analysis";
|
|
1201
1201
|
readonly type: "object";
|
|
1202
1202
|
readonly required: readonly ["schema", "task"];
|
|
@@ -1220,7 +1220,7 @@ export declare const ImpactAnalysisSchema: {
|
|
|
1220
1220
|
};
|
|
1221
1221
|
export declare const TestImpactSchema: {
|
|
1222
1222
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1223
|
-
readonly $id: "https://
|
|
1223
|
+
readonly $id: "https://sharkcraft.dev/schemas/test-impact.json";
|
|
1224
1224
|
readonly title: "SharkCraft Test Impact";
|
|
1225
1225
|
readonly type: "object";
|
|
1226
1226
|
readonly required: readonly ["schema"];
|
|
@@ -1241,7 +1241,7 @@ export declare const TestImpactSchema: {
|
|
|
1241
1241
|
};
|
|
1242
1242
|
export declare const OwnershipRuleSchema: {
|
|
1243
1243
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1244
|
-
readonly $id: "https://
|
|
1244
|
+
readonly $id: "https://sharkcraft.dev/schemas/ownership-rule.json";
|
|
1245
1245
|
readonly title: "SharkCraft Ownership Rule";
|
|
1246
1246
|
readonly type: "object";
|
|
1247
1247
|
readonly required: readonly ["id", "title", "paths", "owners"];
|
|
@@ -1277,7 +1277,7 @@ export declare const OwnershipRuleSchema: {
|
|
|
1277
1277
|
};
|
|
1278
1278
|
export declare const PolicyReportSchema: {
|
|
1279
1279
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1280
|
-
readonly $id: "https://
|
|
1280
|
+
readonly $id: "https://sharkcraft.dev/schemas/policy-report.json";
|
|
1281
1281
|
readonly title: "SharkCraft Policy Report";
|
|
1282
1282
|
readonly type: "object";
|
|
1283
1283
|
readonly required: readonly ["schema", "checks", "summary"];
|
|
@@ -1295,7 +1295,7 @@ export declare const PolicyReportSchema: {
|
|
|
1295
1295
|
};
|
|
1296
1296
|
export declare const QualityBaselineSchema: {
|
|
1297
1297
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1298
|
-
readonly $id: "https://
|
|
1298
|
+
readonly $id: "https://sharkcraft.dev/schemas/quality-baseline.json";
|
|
1299
1299
|
readonly title: "SharkCraft Quality Baseline";
|
|
1300
1300
|
readonly type: "object";
|
|
1301
1301
|
readonly required: readonly ["schema", "createdAt", "qualityScore"];
|
|
@@ -1322,7 +1322,7 @@ export declare const QualityBaselineSchema: {
|
|
|
1322
1322
|
};
|
|
1323
1323
|
export declare const DriftBaselineSchema: {
|
|
1324
1324
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1325
|
-
readonly $id: "https://
|
|
1325
|
+
readonly $id: "https://sharkcraft.dev/schemas/drift-baseline.json";
|
|
1326
1326
|
readonly title: "SharkCraft Drift Baseline";
|
|
1327
1327
|
readonly type: "object";
|
|
1328
1328
|
readonly required: readonly ["schema", "findings"];
|
|
@@ -1337,7 +1337,7 @@ export declare const DriftBaselineSchema: {
|
|
|
1337
1337
|
};
|
|
1338
1338
|
export declare const ReviewPacketV2Schema: {
|
|
1339
1339
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1340
|
-
readonly $id: "https://
|
|
1340
|
+
readonly $id: "https://sharkcraft.dev/schemas/review-packet-v2.json";
|
|
1341
1341
|
readonly title: "SharkCraft Review Packet v2";
|
|
1342
1342
|
readonly type: "object";
|
|
1343
1343
|
readonly required: readonly ["schema", "base", "impact"];
|
|
@@ -1367,7 +1367,7 @@ export declare const ReviewPacketV2Schema: {
|
|
|
1367
1367
|
};
|
|
1368
1368
|
export declare const PackCompatibilitySchema: {
|
|
1369
1369
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1370
|
-
readonly $id: "https://
|
|
1370
|
+
readonly $id: "https://sharkcraft.dev/schemas/pack-compatibility.json";
|
|
1371
1371
|
readonly title: "SharkCraft Pack Compatibility";
|
|
1372
1372
|
readonly type: "object";
|
|
1373
1373
|
readonly required: readonly ["schema", "packageName", "overall"];
|
|
@@ -1388,7 +1388,7 @@ export declare const PackCompatibilitySchema: {
|
|
|
1388
1388
|
};
|
|
1389
1389
|
export declare const PackQualityScoreSchema: {
|
|
1390
1390
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1391
|
-
readonly $id: "https://
|
|
1391
|
+
readonly $id: "https://sharkcraft.dev/schemas/pack-quality-score.json";
|
|
1392
1392
|
readonly title: "SharkCraft Pack Quality Score";
|
|
1393
1393
|
readonly type: "object";
|
|
1394
1394
|
readonly required: readonly ["schema", "packageName", "overall"];
|
|
@@ -1409,7 +1409,7 @@ export declare const PackQualityScoreSchema: {
|
|
|
1409
1409
|
};
|
|
1410
1410
|
export declare const ImportGraphAnalysisSchema: {
|
|
1411
1411
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1412
|
-
readonly $id: "https://
|
|
1412
|
+
readonly $id: "https://sharkcraft.dev/schemas/import-graph-analysis.json";
|
|
1413
1413
|
readonly title: "SharkCraft Import Graph Analysis";
|
|
1414
1414
|
readonly type: "object";
|
|
1415
1415
|
readonly required: readonly ["schema"];
|
|
@@ -1433,7 +1433,7 @@ export declare const ImportGraphAnalysisSchema: {
|
|
|
1433
1433
|
};
|
|
1434
1434
|
export declare const AgentContractSchema: {
|
|
1435
1435
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1436
|
-
readonly $id: "https://
|
|
1436
|
+
readonly $id: "https://sharkcraft.dev/schemas/agent-contract.json";
|
|
1437
1437
|
readonly title: "SharkCraft Agent Contract";
|
|
1438
1438
|
readonly type: "object";
|
|
1439
1439
|
readonly required: readonly ["schema", "task", "role", "mode"];
|
|
@@ -1514,7 +1514,7 @@ export declare const AgentContractSchema: {
|
|
|
1514
1514
|
};
|
|
1515
1515
|
export declare const PlanSimulationSchema: {
|
|
1516
1516
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1517
|
-
readonly $id: "https://
|
|
1517
|
+
readonly $id: "https://sharkcraft.dev/schemas/plan-simulation.json";
|
|
1518
1518
|
readonly title: "SharkCraft Plan Simulation Report";
|
|
1519
1519
|
readonly type: "object";
|
|
1520
1520
|
readonly required: readonly ["schema", "source", "planSchema", "applyReadiness", "files"];
|
|
@@ -1547,7 +1547,7 @@ export declare const PlanSimulationSchema: {
|
|
|
1547
1547
|
};
|
|
1548
1548
|
export declare const RepoMemorySchema: {
|
|
1549
1549
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1550
|
-
readonly $id: "https://
|
|
1550
|
+
readonly $id: "https://sharkcraft.dev/schemas/repo-memory.json";
|
|
1551
1551
|
readonly title: "SharkCraft Repository Memory Index";
|
|
1552
1552
|
readonly type: "object";
|
|
1553
1553
|
readonly required: readonly ["schema", "projectRoot", "sourceCount"];
|
|
@@ -1571,7 +1571,7 @@ export declare const RepoMemorySchema: {
|
|
|
1571
1571
|
};
|
|
1572
1572
|
export declare const HealingPlanSchema: {
|
|
1573
1573
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1574
|
-
readonly $id: "https://
|
|
1574
|
+
readonly $id: "https://sharkcraft.dev/schemas/healing-plan.json";
|
|
1575
1575
|
readonly title: "SharkCraft Healing Plan";
|
|
1576
1576
|
readonly type: "object";
|
|
1577
1577
|
readonly required: readonly ["schema", "inputKind", "confidence", "recommendedCommands"];
|
|
@@ -1607,7 +1607,7 @@ export declare const HealingPlanSchema: {
|
|
|
1607
1607
|
};
|
|
1608
1608
|
export declare const ExecutionGraphSchema: {
|
|
1609
1609
|
readonly $schema: "https://json-schema.org/draft-07/schema";
|
|
1610
|
-
readonly $id: "https://
|
|
1610
|
+
readonly $id: "https://sharkcraft.dev/schemas/execution-graph.json";
|
|
1611
1611
|
readonly title: "SharkCraft Task Execution Graph";
|
|
1612
1612
|
readonly type: "object";
|
|
1613
1613
|
readonly required: readonly ["schema", "task", "nodes", "edges"];
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export const PackManifestSchema = {
|
|
8
8
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
9
|
-
$id: 'https://
|
|
9
|
+
$id: 'https://sharkcraft.dev/schemas/pack-manifest.json',
|
|
10
10
|
title: 'SharkCraft Pack Manifest',
|
|
11
11
|
type: 'object',
|
|
12
12
|
additionalProperties: true,
|
|
@@ -41,7 +41,7 @@ export const PackManifestSchema = {
|
|
|
41
41
|
};
|
|
42
42
|
export const SavedPlanSchema = {
|
|
43
43
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
44
|
-
$id: 'https://
|
|
44
|
+
$id: 'https://sharkcraft.dev/schemas/saved-plan.json',
|
|
45
45
|
title: 'SharkCraft Saved Plan',
|
|
46
46
|
type: 'object',
|
|
47
47
|
additionalProperties: false,
|
|
@@ -82,7 +82,7 @@ export const SavedPlanSchema = {
|
|
|
82
82
|
};
|
|
83
83
|
export const ActionHintsSchema = {
|
|
84
84
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
85
|
-
$id: 'https://
|
|
85
|
+
$id: 'https://sharkcraft.dev/schemas/action-hints.json',
|
|
86
86
|
title: 'SharkCraft Action Hints',
|
|
87
87
|
type: 'object',
|
|
88
88
|
additionalProperties: false,
|
|
@@ -126,7 +126,7 @@ export const ActionHintsSchema = {
|
|
|
126
126
|
};
|
|
127
127
|
export const PipelineDefinitionSchema = {
|
|
128
128
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
129
|
-
$id: 'https://
|
|
129
|
+
$id: 'https://sharkcraft.dev/schemas/pipeline-definition.json',
|
|
130
130
|
title: 'SharkCraft Pipeline Definition',
|
|
131
131
|
type: 'object',
|
|
132
132
|
required: ['id', 'title', 'description', 'steps'],
|
|
@@ -178,7 +178,7 @@ export const PipelineDefinitionSchema = {
|
|
|
178
178
|
};
|
|
179
179
|
export const KnowledgeEntrySchema = {
|
|
180
180
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
181
|
-
$id: 'https://
|
|
181
|
+
$id: 'https://sharkcraft.dev/schemas/knowledge-entry.json',
|
|
182
182
|
title: 'SharkCraft Knowledge Entry',
|
|
183
183
|
type: 'object',
|
|
184
184
|
required: ['id', 'title', 'type', 'priority', 'content'],
|
|
@@ -203,7 +203,7 @@ export const KnowledgeEntrySchema = {
|
|
|
203
203
|
};
|
|
204
204
|
export const AdoptionStateSchema = {
|
|
205
205
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
206
|
-
$id: 'https://
|
|
206
|
+
$id: 'https://sharkcraft.dev/schemas/adoption-state.json',
|
|
207
207
|
title: 'SharkCraft Adoption State',
|
|
208
208
|
type: 'object',
|
|
209
209
|
required: ['schema', 'projectRoot', 'createdAt', 'updatedAt', 'patchPath'],
|
|
@@ -255,7 +255,7 @@ export const AdoptionStateSchema = {
|
|
|
255
255
|
};
|
|
256
256
|
export const AdoptionSummarySchema = {
|
|
257
257
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
258
|
-
$id: 'https://
|
|
258
|
+
$id: 'https://sharkcraft.dev/schemas/adoption-summary.json',
|
|
259
259
|
title: 'SharkCraft Adoption Summary',
|
|
260
260
|
type: 'object',
|
|
261
261
|
required: ['confidence', 'summary', 'items', 'format', 'targets'],
|
|
@@ -269,7 +269,7 @@ export const AdoptionSummarySchema = {
|
|
|
269
269
|
};
|
|
270
270
|
export const ScaffoldPatternSchema = {
|
|
271
271
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
272
|
-
$id: 'https://
|
|
272
|
+
$id: 'https://sharkcraft.dev/schemas/scaffold-pattern.json',
|
|
273
273
|
title: 'SharkCraft Scaffold Pattern',
|
|
274
274
|
type: 'object',
|
|
275
275
|
required: ['id', 'title', 'description', 'matchPaths', 'templateId', 'variables', 'appliesWhen', 'confidence'],
|
|
@@ -301,7 +301,7 @@ export const ScaffoldPatternSchema = {
|
|
|
301
301
|
};
|
|
302
302
|
export const InferredTemplateCandidateV2Schema = {
|
|
303
303
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
304
|
-
$id: 'https://
|
|
304
|
+
$id: 'https://sharkcraft.dev/schemas/inferred-template-candidate-v2.json',
|
|
305
305
|
title: 'SharkCraft Inferred Template Candidate v2',
|
|
306
306
|
type: 'object',
|
|
307
307
|
required: ['schema', 'sample'],
|
|
@@ -325,7 +325,7 @@ export const InferredTemplateCandidateV2Schema = {
|
|
|
325
325
|
};
|
|
326
326
|
export const QualityReportSchema = {
|
|
327
327
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
328
|
-
$id: 'https://
|
|
328
|
+
$id: 'https://sharkcraft.dev/schemas/quality-report.json',
|
|
329
329
|
title: 'SharkCraft Quality Report',
|
|
330
330
|
type: 'object',
|
|
331
331
|
required: ['overall', 'gates', 'score'],
|
|
@@ -343,7 +343,7 @@ export const QualityReportSchema = {
|
|
|
343
343
|
};
|
|
344
344
|
export const SafetyAuditSchema = {
|
|
345
345
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
346
|
-
$id: 'https://
|
|
346
|
+
$id: 'https://sharkcraft.dev/schemas/safety-audit.json',
|
|
347
347
|
title: 'SharkCraft Safety Audit',
|
|
348
348
|
type: 'object',
|
|
349
349
|
required: ['mcp', 'commands'],
|
|
@@ -364,7 +364,7 @@ export const SafetyAuditSchema = {
|
|
|
364
364
|
};
|
|
365
365
|
export const DevSessionStateSchema = {
|
|
366
366
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
367
|
-
$id: 'https://
|
|
367
|
+
$id: 'https://sharkcraft.dev/schemas/dev-session-state.json',
|
|
368
368
|
title: 'SharkCraft Dev Session State',
|
|
369
369
|
type: 'object',
|
|
370
370
|
required: ['schema', 'id', 'task', 'phase'],
|
|
@@ -388,7 +388,7 @@ export const DevSessionStateSchema = {
|
|
|
388
388
|
};
|
|
389
389
|
export const DashboardApiEnvelopeSchema = {
|
|
390
390
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
391
|
-
$id: 'https://
|
|
391
|
+
$id: 'https://sharkcraft.dev/schemas/dashboard-api-envelope.json',
|
|
392
392
|
title: 'SharkCraft Dashboard API Envelope',
|
|
393
393
|
type: 'object',
|
|
394
394
|
required: ['schema', 'generatedAt', 'projectRoot', 'data'],
|
|
@@ -405,7 +405,7 @@ export const DashboardApiEnvelopeSchema = {
|
|
|
405
405
|
};
|
|
406
406
|
export const DashboardOverviewResponseSchema = {
|
|
407
407
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
408
|
-
$id: 'https://
|
|
408
|
+
$id: 'https://sharkcraft.dev/schemas/dashboard-overview-response.json',
|
|
409
409
|
title: 'SharkCraft Dashboard Overview Response',
|
|
410
410
|
type: 'object',
|
|
411
411
|
required: ['readiness', 'sharkcraftPresent', 'configPresent', 'summary', 'topRecommendations', 'featureAvailability'],
|
|
@@ -436,7 +436,7 @@ export const DashboardOverviewResponseSchema = {
|
|
|
436
436
|
};
|
|
437
437
|
export const DashboardAdoptionResponseSchema = {
|
|
438
438
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
439
|
-
$id: 'https://
|
|
439
|
+
$id: 'https://sharkcraft.dev/schemas/dashboard-adoption-response.json',
|
|
440
440
|
title: 'SharkCraft Dashboard Adoption Response',
|
|
441
441
|
type: 'object',
|
|
442
442
|
required: ['available', 'nextCommands', 'artifacts'],
|
|
@@ -449,7 +449,7 @@ export const DashboardAdoptionResponseSchema = {
|
|
|
449
449
|
};
|
|
450
450
|
export const DashboardSessionResponseSchema = {
|
|
451
451
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
452
|
-
$id: 'https://
|
|
452
|
+
$id: 'https://sharkcraft.dev/schemas/dashboard-session-response.json',
|
|
453
453
|
title: 'SharkCraft Dashboard Session Response',
|
|
454
454
|
type: 'object',
|
|
455
455
|
required: ['available', 'sessionId', 'artifacts', 'commandHints'],
|
|
@@ -468,7 +468,7 @@ export const DashboardSessionResponseSchema = {
|
|
|
468
468
|
};
|
|
469
469
|
export const AdoptionMergePreviewSchema = {
|
|
470
470
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
471
|
-
$id: 'https://
|
|
471
|
+
$id: 'https://sharkcraft.dev/schemas/adoption-merge-preview.json',
|
|
472
472
|
title: 'SharkCraft Adoption Merge Preview',
|
|
473
473
|
type: 'object',
|
|
474
474
|
required: ['schema', 'targets', 'safeBlocks', 'manualReview', 'lowConfidenceSkipped'],
|
|
@@ -486,7 +486,7 @@ export const AdoptionMergePreviewSchema = {
|
|
|
486
486
|
};
|
|
487
487
|
export const AdoptionReportSchema = {
|
|
488
488
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
489
|
-
$id: 'https://
|
|
489
|
+
$id: 'https://sharkcraft.dev/schemas/adoption-report.json',
|
|
490
490
|
title: 'SharkCraft Adoption Report',
|
|
491
491
|
type: 'object',
|
|
492
492
|
required: ['schema'],
|
|
@@ -506,7 +506,7 @@ export const AdoptionReportSchema = {
|
|
|
506
506
|
};
|
|
507
507
|
export const FeatureBundleSchema = {
|
|
508
508
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
509
|
-
$id: 'https://
|
|
509
|
+
$id: 'https://sharkcraft.dev/schemas/feature-bundle.json',
|
|
510
510
|
title: 'SharkCraft Feature Workflow Bundle',
|
|
511
511
|
type: 'object',
|
|
512
512
|
additionalProperties: true,
|
|
@@ -528,7 +528,7 @@ export const FeatureBundleSchema = {
|
|
|
528
528
|
};
|
|
529
529
|
export const PlanDependencyGraphSchema = {
|
|
530
530
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
531
|
-
$id: 'https://
|
|
531
|
+
$id: 'https://sharkcraft.dev/schemas/plan-dependency-graph.json',
|
|
532
532
|
title: 'SharkCraft Plan Dependency Graph',
|
|
533
533
|
type: 'object',
|
|
534
534
|
required: ['schema', 'bundleId', 'nodes', 'edges'],
|
|
@@ -542,7 +542,7 @@ export const PlanDependencyGraphSchema = {
|
|
|
542
542
|
};
|
|
543
543
|
export const AreaMapSchema = {
|
|
544
544
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
545
|
-
$id: 'https://
|
|
545
|
+
$id: 'https://sharkcraft.dev/schemas/area-map.json',
|
|
546
546
|
title: 'SharkCraft Repository Area Map',
|
|
547
547
|
type: 'object',
|
|
548
548
|
required: ['schema', 'projectRoot', 'areas'],
|
|
@@ -555,7 +555,7 @@ export const AreaMapSchema = {
|
|
|
555
555
|
};
|
|
556
556
|
export const ImpactAnalysisSchema = {
|
|
557
557
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
558
|
-
$id: 'https://
|
|
558
|
+
$id: 'https://sharkcraft.dev/schemas/impact-analysis.json',
|
|
559
559
|
title: 'SharkCraft Impact Analysis',
|
|
560
560
|
type: 'object',
|
|
561
561
|
required: ['schema', 'task'],
|
|
@@ -569,7 +569,7 @@ export const ImpactAnalysisSchema = {
|
|
|
569
569
|
};
|
|
570
570
|
export const TestImpactSchema = {
|
|
571
571
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
572
|
-
$id: 'https://
|
|
572
|
+
$id: 'https://sharkcraft.dev/schemas/test-impact.json',
|
|
573
573
|
title: 'SharkCraft Test Impact',
|
|
574
574
|
type: 'object',
|
|
575
575
|
required: ['schema'],
|
|
@@ -582,7 +582,7 @@ export const TestImpactSchema = {
|
|
|
582
582
|
};
|
|
583
583
|
export const OwnershipRuleSchema = {
|
|
584
584
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
585
|
-
$id: 'https://
|
|
585
|
+
$id: 'https://sharkcraft.dev/schemas/ownership-rule.json',
|
|
586
586
|
title: 'SharkCraft Ownership Rule',
|
|
587
587
|
type: 'object',
|
|
588
588
|
required: ['id', 'title', 'paths', 'owners'],
|
|
@@ -597,7 +597,7 @@ export const OwnershipRuleSchema = {
|
|
|
597
597
|
};
|
|
598
598
|
export const PolicyReportSchema = {
|
|
599
599
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
600
|
-
$id: 'https://
|
|
600
|
+
$id: 'https://sharkcraft.dev/schemas/policy-report.json',
|
|
601
601
|
title: 'SharkCraft Policy Report',
|
|
602
602
|
type: 'object',
|
|
603
603
|
required: ['schema', 'checks', 'summary'],
|
|
@@ -609,7 +609,7 @@ export const PolicyReportSchema = {
|
|
|
609
609
|
};
|
|
610
610
|
export const QualityBaselineSchema = {
|
|
611
611
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
612
|
-
$id: 'https://
|
|
612
|
+
$id: 'https://sharkcraft.dev/schemas/quality-baseline.json',
|
|
613
613
|
title: 'SharkCraft Quality Baseline',
|
|
614
614
|
type: 'object',
|
|
615
615
|
required: ['schema', 'createdAt', 'qualityScore'],
|
|
@@ -624,7 +624,7 @@ export const QualityBaselineSchema = {
|
|
|
624
624
|
};
|
|
625
625
|
export const DriftBaselineSchema = {
|
|
626
626
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
627
|
-
$id: 'https://
|
|
627
|
+
$id: 'https://sharkcraft.dev/schemas/drift-baseline.json',
|
|
628
628
|
title: 'SharkCraft Drift Baseline',
|
|
629
629
|
type: 'object',
|
|
630
630
|
required: ['schema', 'findings'],
|
|
@@ -635,7 +635,7 @@ export const DriftBaselineSchema = {
|
|
|
635
635
|
};
|
|
636
636
|
export const ReviewPacketV2Schema = {
|
|
637
637
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
638
|
-
$id: 'https://
|
|
638
|
+
$id: 'https://sharkcraft.dev/schemas/review-packet-v2.json',
|
|
639
639
|
title: 'SharkCraft Review Packet v2',
|
|
640
640
|
type: 'object',
|
|
641
641
|
required: ['schema', 'base', 'impact'],
|
|
@@ -651,7 +651,7 @@ export const ReviewPacketV2Schema = {
|
|
|
651
651
|
};
|
|
652
652
|
export const PackCompatibilitySchema = {
|
|
653
653
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
654
|
-
$id: 'https://
|
|
654
|
+
$id: 'https://sharkcraft.dev/schemas/pack-compatibility.json',
|
|
655
655
|
title: 'SharkCraft Pack Compatibility',
|
|
656
656
|
type: 'object',
|
|
657
657
|
required: ['schema', 'packageName', 'overall'],
|
|
@@ -664,7 +664,7 @@ export const PackCompatibilitySchema = {
|
|
|
664
664
|
};
|
|
665
665
|
export const PackQualityScoreSchema = {
|
|
666
666
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
667
|
-
$id: 'https://
|
|
667
|
+
$id: 'https://sharkcraft.dev/schemas/pack-quality-score.json',
|
|
668
668
|
title: 'SharkCraft Pack Quality Score',
|
|
669
669
|
type: 'object',
|
|
670
670
|
required: ['schema', 'packageName', 'overall'],
|
|
@@ -677,7 +677,7 @@ export const PackQualityScoreSchema = {
|
|
|
677
677
|
};
|
|
678
678
|
export const ImportGraphAnalysisSchema = {
|
|
679
679
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
680
|
-
$id: 'https://
|
|
680
|
+
$id: 'https://sharkcraft.dev/schemas/import-graph-analysis.json',
|
|
681
681
|
title: 'SharkCraft Import Graph Analysis',
|
|
682
682
|
type: 'object',
|
|
683
683
|
required: ['schema'],
|
|
@@ -691,7 +691,7 @@ export const ImportGraphAnalysisSchema = {
|
|
|
691
691
|
};
|
|
692
692
|
export const AgentContractSchema = {
|
|
693
693
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
694
|
-
$id: 'https://
|
|
694
|
+
$id: 'https://sharkcraft.dev/schemas/agent-contract.json',
|
|
695
695
|
title: 'SharkCraft Agent Contract',
|
|
696
696
|
type: 'object',
|
|
697
697
|
required: ['schema', 'task', 'role', 'mode'],
|
|
@@ -714,7 +714,7 @@ export const AgentContractSchema = {
|
|
|
714
714
|
};
|
|
715
715
|
export const PlanSimulationSchema = {
|
|
716
716
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
717
|
-
$id: 'https://
|
|
717
|
+
$id: 'https://sharkcraft.dev/schemas/plan-simulation.json',
|
|
718
718
|
title: 'SharkCraft Plan Simulation Report',
|
|
719
719
|
type: 'object',
|
|
720
720
|
required: ['schema', 'source', 'planSchema', 'applyReadiness', 'files'],
|
|
@@ -731,7 +731,7 @@ export const PlanSimulationSchema = {
|
|
|
731
731
|
};
|
|
732
732
|
export const RepoMemorySchema = {
|
|
733
733
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
734
|
-
$id: 'https://
|
|
734
|
+
$id: 'https://sharkcraft.dev/schemas/repo-memory.json',
|
|
735
735
|
title: 'SharkCraft Repository Memory Index',
|
|
736
736
|
type: 'object',
|
|
737
737
|
required: ['schema', 'projectRoot', 'sourceCount'],
|
|
@@ -745,7 +745,7 @@ export const RepoMemorySchema = {
|
|
|
745
745
|
};
|
|
746
746
|
export const HealingPlanSchema = {
|
|
747
747
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
748
|
-
$id: 'https://
|
|
748
|
+
$id: 'https://sharkcraft.dev/schemas/healing-plan.json',
|
|
749
749
|
title: 'SharkCraft Healing Plan',
|
|
750
750
|
type: 'object',
|
|
751
751
|
required: ['schema', 'inputKind', 'confidence', 'recommendedCommands'],
|
|
@@ -760,7 +760,7 @@ export const HealingPlanSchema = {
|
|
|
760
760
|
};
|
|
761
761
|
export const ExecutionGraphSchema = {
|
|
762
762
|
$schema: 'https://json-schema.org/draft-07/schema',
|
|
763
|
-
$id: 'https://
|
|
763
|
+
$id: 'https://sharkcraft.dev/schemas/execution-graph.json',
|
|
764
764
|
title: 'SharkCraft Task Execution Graph',
|
|
765
765
|
type: 'object',
|
|
766
766
|
required: ['schema', 'task', 'nodes', 'edges'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"about.d.ts","sourceRoot":"","sources":["../../src/surface/about.ts"],"names":[],"mappings":"AAEA;;;;;;;GAOG;AACH,wBAAgB,WAAW,IAAI,MAAM,
|
|
1
|
+
{"version":3,"file":"about.d.ts","sourceRoot":"","sources":["../../src/surface/about.ts"],"names":[],"mappings":"AAEA;;;;;;;GAOG;AACH,wBAAgB,WAAW,IAAI,MAAM,CAqBpC"}
|