claude-flow-novice
Version:
Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture Includes Local RuVector Accelerator and all CFN skills for complete functionality.
45 lines (44 loc) • 1.67 kB
JavaScript
/**
* Edge Case Type Definitions
*
* Defines the schema for edge case tracking, deduplication, and feedback loop management.
*/ /**
* Edge Case Types
*/ export var EdgeCaseType = /*#__PURE__*/ function(EdgeCaseType) {
EdgeCaseType["SYNTAX_ERROR"] = "syntax_error";
EdgeCaseType["LOGIC_ERROR"] = "logic_error";
EdgeCaseType["TIMEOUT"] = "timeout";
EdgeCaseType["DATA_VALIDATION"] = "data_validation";
EdgeCaseType["SYSTEM_ERROR"] = "system_error";
return EdgeCaseType;
}({});
/**
* Edge Case Categories
*/ export var EdgeCaseCategory = /*#__PURE__*/ function(EdgeCaseCategory) {
EdgeCaseCategory["SKILL_EXECUTION"] = "skill_execution";
EdgeCaseCategory["DATABASE_OPERATION"] = "database_operation";
EdgeCaseCategory["COORDINATION"] = "coordination";
EdgeCaseCategory["FILE_OPERATION"] = "file_operation";
EdgeCaseCategory["API_CALL"] = "api_call";
return EdgeCaseCategory;
}({});
/**
* Edge Case Priority Levels
*/ export var EdgeCasePriority = /*#__PURE__*/ function(EdgeCasePriority) {
EdgeCasePriority["CRITICAL"] = "critical";
EdgeCasePriority["HIGH"] = "high";
EdgeCasePriority["MEDIUM"] = "medium";
EdgeCasePriority["LOW"] = "low"; // Rare
return EdgeCasePriority;
}({});
/**
* Edge Case Status in Feedback Loop
*/ export var EdgeCaseStatus = /*#__PURE__*/ function(EdgeCaseStatus) {
EdgeCaseStatus["NEW"] = "new";
EdgeCaseStatus["INVESTIGATING"] = "investigating";
EdgeCaseStatus["RESOLVED"] = "resolved";
EdgeCaseStatus["CLOSED"] = "closed";
EdgeCaseStatus["WONT_FIX"] = "wont_fix";
return EdgeCaseStatus;
}({});
//# sourceMappingURL=edge-case.js.map