hataraku
Version:
An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.
27 lines • 809 B
JavaScript
import chalk from 'chalk';
/**
* Color constants for consistent CLI output
*/
export const colors = {
// System/status messages and verbose information
system: chalk.blue,
// Successful outputs
success: chalk.green,
// Errors
error: chalk.red,
// Warnings and debug information
warning: chalk.yellow,
// Neutral information (no color)
info: (text) => text
};
/**
* Helper functions for common message types
*/
export const log = {
system: (message) => console.log(colors.system(message)),
success: (message) => console.log(colors.success(message)),
error: (message) => console.error(colors.error(message)),
warning: (message) => console.warn(colors.warning(message)),
info: (message) => console.log(message)
};
//# sourceMappingURL=colors.js.map