@hivetechs/hive-ai
Version:
Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API
40 lines • 1.56 kB
JavaScript
/**
* Create 2025 Flagship Profiles for WOW Consensus
*
* ⚠️ DEPRECATED: This system has been replaced by Expert Profile Templates
* Use the new expert-profile-templates.ts system instead
*/
/**
* Create flagship profiles in the database
*
* ⚠️ DEPRECATED: Use Expert Profile Templates instead
* This function is disabled to prevent creation of old-format profiles
*/
export async function createFlagshipProfiles() {
console.log('⚠️ DEPRECATED: Flagship profiles have been replaced by Expert Profile Templates');
console.log('💡 Use "hive profiles create <expert-template-id>" instead');
console.log('📋 Available templates: lightning-fast, precision-architect, budget-optimizer, etc.');
console.log('🔧 Run: npm run setup:expert-profiles to create the new expert profiles');
return;
}
/**
* Check if flagship profiles need to be created or updated
*
* ⚠️ DEPRECATED: Use Expert Profile Templates instead
*/
export async function ensureFlagshipProfiles() {
console.log('⚠️ DEPRECATED: ensureFlagshipProfiles() has been replaced by Expert Profile Templates');
console.log('💡 Use the new expert profile system instead');
return false;
}
// Run if called directly
if (import.meta.url === `file://${process.argv[1]}`) {
createFlagshipProfiles()
.then(() => process.exit(0))
.catch((error) => {
console.error('This system has been deprecated:', error);
process.exit(1);
});
}
//# sourceMappingURL=create-flagship-profiles.js.map