diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 27fe556..820ff05 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # Global code owner -* @localden +* @localden \ No newline at end of file diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index d4822a9..0edbd90 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -169,4 +169,4 @@ Command instructions with {SCRIPT} and $ARGUMENTS placeholders --- -_This file is generated by analyzing the Spec Kit codebase patterns and should be updated when major architectural changes occur._ +_This file is generated by analyzing the Spec Kit codebase patterns and should be updated when major architectural changes occur._``` diff --git a/.specify/wizard.json b/.specify/wizard.json deleted file mode 100644 index be10306..0000000 --- a/.specify/wizard.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ai": "copilot", - "script": "sh", - "here": true, - "noGit": false, - "ignoreAgentTools": true, - "debug": false, - "lastProjectName": "test2" -} diff --git a/package-lock.json b/package-lock.json index de738e0..0d9bc43 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@letuscode/spec-kit", - "version": "0.1.2", + "version": "0.1.3-beta.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@letuscode/spec-kit", - "version": "0.1.2", + "version": "0.1.3-beta.0", "dependencies": { "commander": "^12.1.0", "cross-spawn": "^7.0.3", diff --git a/package.json b/package.json index 8664538..0d24fcf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@letuscode/spec-kit", - "version": "0.1.2", + "version": "0.1.3-beta.0", "description": "Node.js CLI for Spec Kit (migration from Python)", "keywords": [ "spec-kit", @@ -25,8 +25,11 @@ "speckit": "bin/speckit.js" }, "files": [ - "dist", - "bin/speckit.js", + "dist/", + "bin/", + "src/", + "templates/", + "scripts/", "README.md", "LICENSE" ], diff --git a/project.toml b/project.toml deleted file mode 100644 index f5853a7..0000000 --- a/project.toml +++ /dev/null @@ -1,23 +0,0 @@ -[project] -name = "specify-cli" -version = "0.0.9" -description = "Specify CLI, part of GitHub Spec Kit. A tool to bootstrap your projects for Spec-Driven Development (SDD)." -requires-python = ">=3.11" -dependencies = [ - "typer", - "rich", - "httpx[socks]", - "platformdirs", - "readchar", - "truststore>=0.10.4", -] - -[project.scripts] -specify = "specify_cli:main" - -[build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" - -[tool.hatch.build.targets.wheel] -packages = ["src/specify_cli"]