@pimzino/claude-code-spec-workflow
Version:
Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent task execution, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have
12 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.error = exports.debug = void 0;
const DEBUG = process.env.CLAUDE_SPEC_DEBUG === 'true';
const debug = (...args) => {
if (DEBUG) {
console.log('[DEBUG]', ...args);
}
};
exports.debug = debug;
exports.error = console.error;
//# sourceMappingURL=logger.js.map