ccguard
Version:
Automated enforcement of net-negative LOC, complexity constraints, and quality standards for Claude code
15 lines • 475 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisableCommand = void 0;
exports.DisableCommand = {
name: 'off',
description: 'Disable CCGuard LOC enforcement',
execute: async (guardManager) => {
await guardManager.disable();
return {
decision: 'block',
reason: 'CCGuard is now DISABLED. LOC changes will not be enforced.',
};
}
};
//# sourceMappingURL=DisableCommand.js.map