ai-expert
Version:
AI Expert CLI - Advanced management system for specialized Claude assistants
23 lines • 710 B
JavaScript
import { Command } from 'commander';
import chalk from 'chalk';
export function contextCommand(_storage) {
const context = new Command('context');
context
.description('Manage context templates')
.alias('c');
// TODO: Implement context commands
context
.command('create')
.description('Create a new context template')
.action(() => {
console.log(chalk.yellow('Context creation coming soon...'));
});
context
.command('list')
.description('List context templates')
.action(() => {
console.log(chalk.yellow('Context listing coming soon...'));
});
return context;
}
//# sourceMappingURL=context.js.map