13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const wiki = {
|
|
type: 'local-jsx',
|
|
name: 'wiki',
|
|
description: 'Initialize and inspect the OpenClaude project wiki',
|
|
argumentHint: '[init|status]',
|
|
immediate: true,
|
|
load: () => import('./wiki.js'),
|
|
} satisfies Command
|
|
|
|
export default wiki
|