From b27e93ff04ab93ebebd5bc0770c6b70eaf99b28e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 16:51:41 +0000 Subject: [PATCH] Version Packages --- .changeset/gold-ideas-grin.md | 11 ------- .changeset/great-deer-check.md | 21 ------------- .changeset/metal-moles-stop.md | 7 ----- .changeset/social-geese-jog.md | 23 --------------- packages/cli/CHANGELOG.md | 54 ++++++++++++++++++++++++++++++++++ packages/cli/package.json | 2 +- 6 files changed, 55 insertions(+), 63 deletions(-) delete mode 100644 .changeset/gold-ideas-grin.md delete mode 100644 .changeset/great-deer-check.md delete mode 100644 .changeset/metal-moles-stop.md delete mode 100644 .changeset/social-geese-jog.md diff --git a/.changeset/gold-ideas-grin.md b/.changeset/gold-ideas-grin.md deleted file mode 100644 index 5236fa28b..000000000 --- a/.changeset/gold-ideas-grin.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@arkenv/cli": patch ---- - -#### Add agent skill support - -The CLI now has a new `--agent` flag that lets the ArkEnv agent skill interact with it in a token-sensitive way. The skill has been updated to support this new mode. - -Also, the CLI will now suggest to install the agent skill for you when in non-`--agent` mode. - -Read more in the [ArkEnv CLI docs](https://arkenv.js.org/docs/cli). diff --git a/.changeset/great-deer-check.md b/.changeset/great-deer-check.md deleted file mode 100644 index 45db90ef0..000000000 --- a/.changeset/great-deer-check.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -"@arkenv/cli": patch ---- - -#### Improve "done" message text - -The output now clearly distinguishes between the local scaffolding and the AI-powered refinement: - -``` - 1 │ - 2 ◇ Next steps ─────────────────────────────────────────────────────────────────╮ - 3 │ │ - 4 │ 1. Check ./src/env.ts and refine your environment schema. │ - 5 │ 2. Import and use: import { env } from "./src/env" │ - 6 │ 3. (Recommended) Install the AI skill: pnpm dlx skills add yamcodes/arkenv │ - 7 │ Then run /arkenv inside your AI assistant to finish. │ - 8 │ │ - 9 ├──────────────────────────────────────────────────────────────────────────────╯ - 10 │ - 11 └ ⛯ ArkEnv scaffolding complete. Happy coding! -``` diff --git a/.changeset/metal-moles-stop.md b/.changeset/metal-moles-stop.md deleted file mode 100644 index c71ef65ca..000000000 --- a/.changeset/metal-moles-stop.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@arkenv/cli": patch ---- - -#### Install framework plugins - -The ArkEnv CLI now installs framework plugins as part of the scaffolding process if a relevant runtime/framework is selected. diff --git a/.changeset/social-geese-jog.md b/.changeset/social-geese-jog.md deleted file mode 100644 index bb283b439..000000000 --- a/.changeset/social-geese-jog.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -"@arkenv/cli": patch ---- - -#### Passthrough `--yes` and `--quiet` to underlying process - -The ArkEnv CLI will now pass the flags `--yes` and `--quiet` to underlying processes. - -This means that if you run: - -```sh -pnx @arkenv/cli init --yes -``` - -It would now use the recommended settings and avoid prompts even in sub-processes like the Vercel Skills process to add the ArkEnv skill. - -Similarly, if you run: - -```sh -pnx @arkenv/cli init --quiet -``` - -You will not be exposed to the underlying Vercel Skills output, except for errors which are buffered in memory. (Resolves on exit code 0, discarding buffered output on success) diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9590bfc12..06666ffc2 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,59 @@ # @arkenv/cli +## 0.0.5 + +### Patch Changes + +- #### Add agent skill support _[`#945`](https://github.com/yamcodes/arkenv/pull/945) [`63d6237`](https://github.com/yamcodes/arkenv/commit/63d6237d5d928e965aca64e473e7940eedc019cf) [@yamcodes](https://github.com/yamcodes)_ + + The CLI now has a new `--agent` flag that lets the ArkEnv agent skill interact with it in a token-sensitive way. The skill has been updated to support this new mode. + + Also, the CLI will now suggest to install the agent skill for you when in non-`--agent` mode. + + Read more in the [ArkEnv CLI docs](https://arkenv.js.org/docs/cli). + +- #### Improve "done" message text _[`#954`](https://github.com/yamcodes/arkenv/pull/954) [`fe10ef4`](https://github.com/yamcodes/arkenv/commit/fe10ef416d4605a3f0486d2dd32a68c7a6521d95) [@yamcodes](https://github.com/yamcodes)_ + + The output now clearly distinguishes between the local scaffolding and the AI-powered refinement: + + ``` + 1 │ + 2 ◇ Next steps ─────────────────────────────────────────────────────────────────╮ + 3 │ │ + 4 │ 1. Check ./src/env.ts and refine your environment schema. │ + 5 │ 2. Import and use: import { env } from "./src/env" │ + 6 │ 3. (Recommended) Install the AI skill: pnpm dlx skills add yamcodes/arkenv │ + 7 │ Then run /arkenv inside your AI assistant to finish. │ + 8 │ │ + 9 ├──────────────────────────────────────────────────────────────────────────────╯ + 10 │ + 11 └ ⛯ ArkEnv scaffolding complete. Happy coding! + ``` + +- #### Install framework plugins _[`#948`](https://github.com/yamcodes/arkenv/pull/948) [`1dca74c`](https://github.com/yamcodes/arkenv/commit/1dca74c26a00681794943526ada6923a5aee6330) [@yamcodes](https://github.com/yamcodes)_ + + The ArkEnv CLI now installs framework plugins as part of the scaffolding process if a relevant runtime/framework is selected. + +- #### Passthrough `--yes` and `--quiet` to underlying process _[`#952`](https://github.com/yamcodes/arkenv/pull/952) [`10cbb7d`](https://github.com/yamcodes/arkenv/commit/10cbb7d4061ad868f313660709db39e35260c94e) [@yamcodes](https://github.com/yamcodes)_ + + The ArkEnv CLI will now pass the flags `--yes` and `--quiet` to underlying processes. + + This means that if you run: + + ```sh + pnx @arkenv/cli init --yes + ``` + + It would now use the recommended settings and avoid prompts even in sub-processes like the Vercel Skills process to add the ArkEnv skill. + + Similarly, if you run: + + ```sh + pnx @arkenv/cli init --quiet + ``` + + You will not be exposed to the underlying Vercel Skills output, except for errors which are buffered in memory. (Resolves on exit code 0, discarding buffered output on success) + ## 0.0.4 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index ec3307fe9..f91c105af 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@arkenv/cli", "type": "module", - "version": "0.0.4", + "version": "0.0.5", "description": "Interactive CLI for scaffolding ArkEnv projects", "bin": { "arkenv": "./dist/index.cjs"