From 07f1c831cf3aff3bd5eb9fd7b7118c1c73c50ab7 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 10:07:36 +0000 Subject: [PATCH] Add CLI config, bin scripts, CI workflow and types --- oclif.config.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 oclif.config.js diff --git a/oclif.config.js b/oclif.config.js new file mode 100644 index 0000000..7222ae0 --- /dev/null +++ b/oclif.config.js @@ -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;