@yaakapp/cli 0.6.2 → 2026.5.0-beta.6

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Yaak CLI
2
2
 
3
- The `yaak` CLI for publishing plugins and creating/updating/sending requests.
3
+ The `yaak` CLI for publishing plugins and creating/updating/sending requests.
4
4
 
5
5
  ## Installation
6
6
 
@@ -24,8 +24,8 @@ Use the `yaak` CLI with agents like Claude or Codex to do useful things for you.
24
24
  Here are some example prompts:
25
25
 
26
26
  ```text
27
- Scan my API routes and create a workspace (using yaak cli) with
28
- all the requests needed for me to do manual testing?
27
+ Scan my API routes and create a workspace (using yaak cli) with
28
+ all the requests needed for me to do manual testing?
29
29
  ```
30
30
 
31
31
  ```text
package/common.js CHANGED
@@ -4,7 +4,7 @@ const BINARY_DISTRIBUTION_PACKAGES = {
4
4
  linux_arm64: "@yaakapp/cli-linux-arm64",
5
5
  linux_x64: "@yaakapp/cli-linux-x64",
6
6
  win32_x64: "@yaakapp/cli-win32-x64",
7
- win32_arm64: "@yaakapp/cli-win32-arm64"
7
+ win32_arm64: "@yaakapp/cli-win32-arm64",
8
8
  };
9
9
 
10
10
  const BINARY_DISTRIBUTION_VERSION = require("./package.json").version;
@@ -16,5 +16,5 @@ module.exports = {
16
16
  BINARY_DISTRIBUTION_PACKAGES,
17
17
  BINARY_DISTRIBUTION_VERSION,
18
18
  BINARY_NAME,
19
- PLATFORM_SPECIFIC_PACKAGE_NAME
19
+ PLATFORM_SPECIFIC_PACKAGE_NAME,
20
20
  };
package/install.js CHANGED
@@ -5,7 +5,7 @@ const https = require("node:https");
5
5
  const {
6
6
  BINARY_DISTRIBUTION_VERSION,
7
7
  BINARY_NAME,
8
- PLATFORM_SPECIFIC_PACKAGE_NAME
8
+ PLATFORM_SPECIFIC_PACKAGE_NAME,
9
9
  } = require("./common");
10
10
 
11
11
  const fallbackBinaryPath = path.join(__dirname, BINARY_NAME);
@@ -27,8 +27,8 @@ function makeRequest(url) {
27
27
  } else {
28
28
  reject(
29
29
  new Error(
30
- `npm responded with status code ${response.statusCode} when downloading package ${url}`
31
- )
30
+ `npm responded with status code ${response.statusCode} when downloading package ${url}`,
31
+ ),
32
32
  );
33
33
  }
34
34
  })
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@yaakapp/cli",
3
- "version": "0.6.2",
4
- "main": "./index.js",
3
+ "version": "2026.5.0-beta.6",
5
4
  "repository": {
6
5
  "type": "git",
7
6
  "url": "git+https://github.com/mountain-loop/yaak.git"
8
7
  },
9
- "scripts": {
10
- "postinstall": "node ./install.js",
11
- "prepublishOnly": "node ./prepublish.js"
12
- },
13
8
  "bin": {
14
9
  "yaak": "bin/cli.js",
15
10
  "yaakcli": "bin/cli.js"
16
11
  },
12
+ "main": "./index.js",
13
+ "scripts": {
14
+ "postinstall": "node ./install.js",
15
+ "prepublishOnly": "node ./prepublish.js"
16
+ },
17
17
  "optionalDependencies": {
18
- "@yaakapp/cli-darwin-x64": "0.6.2",
19
- "@yaakapp/cli-darwin-arm64": "0.6.2",
20
- "@yaakapp/cli-linux-arm64": "0.6.2",
21
- "@yaakapp/cli-linux-x64": "0.6.2",
22
- "@yaakapp/cli-win32-x64": "0.6.2",
23
- "@yaakapp/cli-win32-arm64": "0.6.2"
18
+ "@yaakapp/cli-darwin-x64": "2026.5.0-beta.6",
19
+ "@yaakapp/cli-darwin-arm64": "2026.5.0-beta.6",
20
+ "@yaakapp/cli-linux-arm64": "2026.5.0-beta.6",
21
+ "@yaakapp/cli-linux-x64": "2026.5.0-beta.6",
22
+ "@yaakapp/cli-win32-x64": "2026.5.0-beta.6",
23
+ "@yaakapp/cli-win32-arm64": "2026.5.0-beta.6"
24
24
  }
25
25
  }