aios-core
Version:
Synkra AIOS: AI-Orchestrated System for Full Stack Development - Core Framework
26 lines (22 loc) • 866 B
JavaScript
/**
* AIOS Validator - Re-export from canonical location
*
* @deprecated Use require('../infrastructure/scripts/aios-validator') directly
* @module utils/aios-validator
*
* This file re-exports from the canonical location in infrastructure/scripts/
* for backward compatibility with CI workflows.
*
* Migration note:
* - Canonical location: .aios-core/infrastructure/scripts/aios-validator.js
* - This file exists for backward compatibility with existing CI workflows
* - New code should import from infrastructure/scripts/aios-validator directly
*/
;
// Re-export from canonical location
module.exports = require('../infrastructure/scripts/aios-validator');
// CLI Interface - delegate to canonical location
if (require.main === module) {
// Pass through to the original script
require('../infrastructure/scripts/aios-validator');
}