Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,11 @@
"@executor/api",
"@executor/config",
"@executor/execution",
"@executor/sdk",
"@executor/storage-file",
"@executor/host-mcp",
"@executor/codemode-core",
"@executor/ir",
"@executor/runtime-deno-subprocess",
"@executor/runtime-quickjs",
"@executor/plugin-file-secrets",
"@executor/plugin-google-discovery",
"@executor/plugin-graphql",
"@executor/plugin-keychain",
"@executor/plugin-mcp",
"@executor/plugin-onepassword",
"@executor/plugin-openapi"
"@executor/runtime-quickjs"
]
}
1 change: 1 addition & 0 deletions .reference/executor
Submodule executor added at 2d532f
2 changes: 1 addition & 1 deletion apps/cloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@executor/plugin-mcp": "workspace:*",
"@executor/plugin-openapi": "workspace:*",
"@executor/react": "workspace:*",
"@executor/sdk": "workspace:*",
"@executor/core": "workspace:*",
"@executor/storage-postgres": "workspace:*",
"@tanstack/react-router": "catalog:",
"@tanstack/react-start": "catalog:",
Expand Down
10 changes: 5 additions & 5 deletions apps/cloud/src/services/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@

import { Effect } from "effect";

import { createExecutor } from "@executor/sdk";
import { createExecutor } from "@executor/core";
import type { DrizzleDb } from "@executor/storage-postgres";
import { makePgConfig, makePgKv } from "@executor/storage-postgres";
import {
openApiPlugin,
makeKvOperationStore,
} from "@executor/plugin-openapi";
} from "@executor/plugin-openapi/core";
import {
mcpPlugin,
makeKvBindingStore,
} from "@executor/plugin-mcp";
} from "@executor/plugin-mcp/core";
import {
googleDiscoveryPlugin,
makeKvBindingStore as makeKvGoogleDiscoveryBindingStore,
} from "@executor/plugin-google-discovery";
} from "@executor/plugin-google-discovery/core";
import {
graphqlPlugin,
makeKvOperationStore as makeKvGraphqlOperationStore,
} from "@executor/plugin-graphql";
} from "@executor/plugin-graphql/core";

// ---------------------------------------------------------------------------
// Create a fresh executor for a team (stateless, per-request)
Expand Down
2 changes: 1 addition & 1 deletion apps/local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@executor/plugin-onepassword": "workspace:*",
"@executor/plugin-openapi": "workspace:*",
"@executor/react": "workspace:*",
"@executor/sdk": "workspace:*",
"@executor/core": "workspace:*",
"@executor/storage-file": "workspace:*",
"@modelcontextprotocol/sdk": "^1.12.1",
"@shikijs/langs": "^4.0.2",
Expand Down
16 changes: 8 additions & 8 deletions apps/local/src/server/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as fs from "node:fs";
import { homedir } from "node:os";
import { join } from "node:path";

import { createExecutor, scopeKv } from "@executor/sdk";
import { createExecutor, scopeKv } from "@executor/core";
import {
makeSqliteKv,
makeKvConfig,
Expand All @@ -17,22 +17,22 @@ import { withConfigFile } from "@executor/config";
import {
openApiPlugin,
makeKvOperationStore,
} from "@executor/plugin-openapi";
} from "@executor/plugin-openapi/core";
import {
mcpPlugin,
makeKvBindingStore,
} from "@executor/plugin-mcp";
} from "@executor/plugin-mcp/core";
import {
googleDiscoveryPlugin,
makeKvBindingStore as makeKvGoogleDiscoveryBindingStore,
} from "@executor/plugin-google-discovery";
} from "@executor/plugin-google-discovery/core";
import {
graphqlPlugin,
makeKvOperationStore as makeKvGraphqlOperationStore,
} from "@executor/plugin-graphql";
import { keychainPlugin } from "@executor/plugin-keychain";
import { fileSecretsPlugin } from "@executor/plugin-file-secrets";
import { onepasswordPlugin } from "@executor/plugin-onepassword";
} from "@executor/plugin-graphql/core";
import { keychainPlugin } from "@executor/plugin-keychain/core";
import { fileSecretsPlugin } from "@executor/plugin-file-secrets/core";
import { onepasswordPlugin } from "@executor/plugin-onepassword/core";

// ---------------------------------------------------------------------------
// Data directory
Expand Down
2 changes: 1 addition & 1 deletion apps/marketing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"dependencies": {
"@astrojs/tailwind": "^6.0.2",
"@astrojs/cloudflare": "^13.0.0",
"@executor/sdk": "workspace:*",
"@executor/core": "workspace:*",
"@executor/plugin-openapi": "workspace:*",
"@executor/plugin-graphql": "workspace:*",
"@executor/plugin-google-discovery": "workspace:*",
Expand Down
8 changes: 4 additions & 4 deletions apps/marketing/src/pages/api/detect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import {
createExecutor,
makeTestConfig,
type ToolMetadata,
} from "@executor/sdk";
import { openApiPlugin } from "@executor/plugin-openapi";
import { graphqlPlugin } from "@executor/plugin-graphql";
import { googleDiscoveryPlugin } from "@executor/plugin-google-discovery";
} from "@executor/core";
import { openApiPlugin } from "@executor/plugin-openapi/core";
import { graphqlPlugin } from "@executor/plugin-graphql/core";
import { googleDiscoveryPlugin } from "@executor/plugin-google-discovery/core";

export const prerender = false;

Expand Down
Loading