sequential-thinking-engine-custom
Version:
Sequential Thinking Engine v3.0 - 完全実装5軸思考品質評価システム with Claude Code サブエージェント統合
13 lines • 468 B
JavaScript
/**
* Sequential Thinking Engine カスタム版 - 型定義
* オリジナルのSequential Thinking Engineをベースに、サブエージェント機能を統合
*/
// エラー・警告レベル
export var AlertLevel;
(function (AlertLevel) {
AlertLevel["INFO"] = "info";
AlertLevel["WARNING"] = "warning";
AlertLevel["ERROR"] = "error";
AlertLevel["CRITICAL"] = "critical";
})(AlertLevel || (AlertLevel = {}));
//# sourceMappingURL=index.js.map