From a67b1e8882d9c1f2eae43ccd2fdc862baf599b6f 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.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 oclif.config.ts diff --git a/oclif.config.ts b/oclif.config.ts new file mode 100644 index 0000000..75a113d --- /dev/null +++ b/oclif.config.ts @@ -0,0 +1,19 @@ +export default { + name: 'testspec-cli', + version: '1.0.0', + bin: 'testspec', + commands: { + generate: { + description: 'Generate unit tests from natural language requirements', + load: () => import('./src/commands/generate.js'), + }, + detect: { + description: 'Detect the test framework used in your project', + load: () => import('./src/commands/detect.js'), + }, + interactive: { + description: 'Interactive wizard for creating test cases', + load: () => import('./src/commands/interactive.js'), + }, + }, +};