@kody-ade/kody-engine 0.4.76 → 0.4.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/bin/kody.js +17 -17
  2. package/package.json +3 -3
package/dist/bin/kody.js CHANGED
@@ -868,12 +868,12 @@ var init_loadPriorArt = __esm({
868
868
  // package.json
869
869
  var package_default = {
870
870
  name: "@kody-ade/kody-engine",
871
- version: "0.4.76",
871
+ version: "0.4.77",
872
872
  description: "kody \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
873
873
  license: "MIT",
874
874
  type: "module",
875
875
  bin: {
876
- kody: "dist/bin/kody.js"
876
+ "kody-engine": "dist/bin/kody.js"
877
877
  },
878
878
  files: [
879
879
  "dist",
@@ -881,7 +881,7 @@ var package_default = {
881
881
  "kody.config.schema.json"
882
882
  ],
883
883
  scripts: {
884
- kody: "tsx bin/kody.ts",
884
+ "kody:run": "tsx bin/kody.ts",
885
885
  serve: "tsx bin/kody.ts serve",
886
886
  "serve:vscode": "tsx bin/kody.ts serve vscode",
887
887
  "serve:claude": "tsx bin/kody.ts serve claude",
@@ -7168,7 +7168,7 @@ jobs:
7168
7168
 
7169
7169
  - env:
7170
7170
  ALL_SECRETS: \${{ toJSON(secrets) }}
7171
- run: npx -y -p @kody-ade/kody-engine@latest kody ci --issue \${{ github.event.inputs.issue_number || github.event.issue.number }}
7171
+ run: npx -y -p @kody-ade/kody-engine@latest kody-engine ci --issue \${{ github.event.inputs.issue_number || github.event.issue.number }}
7172
7172
  `;
7173
7173
  function defaultBranchFromGit(cwd) {
7174
7174
  try {
@@ -7294,7 +7294,7 @@ jobs:
7294
7294
  node-version: 22
7295
7295
  - env:
7296
7296
  GH_TOKEN: \${{ secrets.KODY_TOKEN || github.token }}
7297
- run: npx -y -p @kody-ade/kody-engine@latest kody ${name}
7297
+ run: npx -y -p @kody-ade/kody-engine@latest kody-engine ${name}
7298
7298
  `;
7299
7299
  }
7300
7300
  var initFlow = async (ctx) => {
@@ -11895,20 +11895,20 @@ function formatMs(ms) {
11895
11895
  }
11896
11896
 
11897
11897
  // src/entry.ts
11898
- var HELP_TEXT = `kody \u2014 single-session autonomous engineer
11898
+ var HELP_TEXT = `kody-engine \u2014 single-session autonomous engineer
11899
11899
 
11900
11900
  Usage:
11901
- kody run --issue <N> [--cwd <path>] [--verbose|--quiet]
11902
- kody fix --pr <N> [--feedback "..."] [--cwd <path>] [--verbose|--quiet]
11903
- kody fix-ci --pr <N> [--run-id <ID>] [--cwd <path>] [--verbose|--quiet]
11904
- kody resolve --pr <N> [--cwd <path>] [--verbose|--quiet]
11905
- kody review --pr <N> [--cwd <path>] [--verbose|--quiet]
11906
- kody <other> [--cwd <path>] [--verbose|--quiet]
11907
- kody ci --issue <N> [preflight flags \u2014 see: kody ci --help]
11908
- kody chat [chat flags \u2014 see: kody chat --help]
11909
- kody stats [--since 7d|--run <id>|--json|--cwd <path>]
11910
- kody help
11911
- kody version
11901
+ kody-engine run --issue <N> [--cwd <path>] [--verbose|--quiet]
11902
+ kody-engine fix --pr <N> [--feedback "..."] [--cwd <path>] [--verbose|--quiet]
11903
+ kody-engine fix-ci --pr <N> [--run-id <ID>] [--cwd <path>] [--verbose|--quiet]
11904
+ kody-engine resolve --pr <N> [--cwd <path>] [--verbose|--quiet]
11905
+ kody-engine review --pr <N> [--cwd <path>] [--verbose|--quiet]
11906
+ kody-engine <other> [--cwd <path>] [--verbose|--quiet]
11907
+ kody-engine ci --issue <N> [preflight flags \u2014 see: kody-engine ci --help]
11908
+ kody-engine chat [chat flags \u2014 see: kody-engine chat --help]
11909
+ kody-engine stats [--since 7d|--run <id>|--json|--cwd <path>]
11910
+ kody-engine help
11911
+ kody-engine version
11912
11912
 
11913
11913
  Each top-level command (run, fix, fix-ci, resolve, review, \u2026) is a discovered
11914
11914
  executable under \`src/executables/<name>/profile.json\`. Drop in a new
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.4.76",
3
+ "version": "0.4.77",
4
4
  "description": "kody — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "bin": {
8
- "kody": "dist/bin/kody.js"
8
+ "kody-engine": "dist/bin/kody.js"
9
9
  },
10
10
  "files": [
11
11
  "dist",
@@ -35,7 +35,7 @@
35
35
  "homepage": "https://github.com/aharonyaircohen/kody-engine",
36
36
  "bugs": "https://github.com/aharonyaircohen/kody-engine/issues",
37
37
  "scripts": {
38
- "kody": "tsx bin/kody.ts",
38
+ "kody:run": "tsx bin/kody.ts",
39
39
  "serve": "tsx bin/kody.ts serve",
40
40
  "serve:vscode": "tsx bin/kody.ts serve vscode",
41
41
  "serve:claude": "tsx bin/kody.ts serve claude",