@executor-js/cli 0.0.1 → 0.1.0

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,13 +1,13 @@
1
- # @executor/cli
1
+ # @executor-js/cli
2
2
 
3
- Command-line tool for `@executor/sdk` projects. Generates Drizzle schema files from the plugins registered in your `executor.config.ts` so database migrations stay in sync with the executor you actually run.
3
+ Command-line tool for `@executor-js/sdk` projects. Generates Drizzle schema files from the plugins registered in your `executor.config.ts` so database migrations stay in sync with the executor you actually run.
4
4
 
5
5
  ## Install
6
6
 
7
7
  ```sh
8
- bun add -d @executor/cli
8
+ bun add -d @executor-js/cli
9
9
  # or
10
- npm install --save-dev @executor/cli
10
+ npm install --save-dev @executor-js/cli
11
11
  ```
12
12
 
13
13
  The binary is installed as `executor`.
@@ -17,12 +17,12 @@ The binary is installed as `executor`.
17
17
  Create an `executor.config.ts` alongside your app code:
18
18
 
19
19
  ```ts
20
- import { defineExecutorConfig } from "@executor/sdk";
21
- import { mcpPlugin } from "@executor/plugin-mcp";
22
- import { openApiPlugin } from "@executor/plugin-openapi";
20
+ import { defineExecutorConfig } from "@executor-js/sdk";
21
+ import { mcpPlugin } from "@executor-js/plugin-mcp";
22
+ import { openApiPlugin } from "@executor-js/plugin-openapi";
23
23
 
24
24
  export default defineExecutorConfig({
25
- dialect: "postgres",
25
+ dialect: "pg",
26
26
  plugins: [mcpPlugin(), openApiPlugin()],
27
27
  });
28
28
  ```