cmte
Version:
Design by Committee™ except it's just you and LLMs
18 lines (15 loc) • 531 B
JavaScript
import { logger } from '../utils/logger.js';
import { enhanceContext } from '../core/state/context.js';
/**
* Base template context interface - only contains core system properties
* All workflow-specific variables are handled through the index signature
*/
/**
* Creates a new empty context object
* @returns Empty template context
*/
export function createContext() {
return {};
}
// Export enhanceContext from core/state/context.js for backward compatibility
export { enhanceContext } from '../core/state/context.js';