Add CLI config, bin scripts, CI workflow and types

This commit is contained in:
2026-01-29 10:07:36 +00:00
parent 3fc42a104b
commit 07f1c831cf

21
oclif.config.js Normal file
View File

@@ -0,0 +1,21 @@
const oclifConfig = {
name: 'testspec',
version: '1.0.0',
description: 'Convert natural language requirements into structured unit test cases',
author: 'TestSpec CLI Team',
bin: 'testspec',
commands: './dist/commands',
plugins: ['@oclif/plugin-help'],
topics: {
commands: {
description: 'Commands for generating and managing test cases'
}
},
oclif: {
bin: 'testspec',
dirname: 'testspec',
commands: './dist/commands'
}
};
export default oclifConfig;