forgeos 0.1.0-alpha.2 → 0.1.0-alpha.21
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/.npmignore +4 -0
- package/AGENTS.md +168 -81
- package/CHANGELOG.md +211 -0
- package/README.md +88 -14
- package/adapters/go/README.md +23 -0
- package/adapters/go/go.mod +3 -0
- package/adapters/go/http.go +149 -0
- package/adapters/go/registry.go +234 -0
- package/adapters/go/types.go +136 -0
- package/adapters/java/README.md +68 -0
- package/adapters/java/pom.xml +34 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Auth.java +20 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Diagnostic.java +16 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Entry.java +38 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/EntryKind.java +16 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ErrorInfo.java +4 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Forge.java +94 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ForgeCall.java +12 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ForgeContext.java +11 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ForgeHandler.java +8 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ForgeHttpHandler.java +179 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ForgeRegistry.java +121 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Json.java +14 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Manifest.java +14 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/RequestEnvelope.java +6 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/ResponseEnvelope.java +25 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Risk.java +18 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Schemas.java +36 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/Service.java +65 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/TransactionMode.java +18 -0
- package/adapters/java/src/main/java/dev/forgeos/adapter/TypedForgeHandler.java +6 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Auth.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Diagnostic.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Entry.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/EntryKind.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ErrorInfo.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Forge.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeCall.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeContext.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeHandler.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeHttpHandler.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeRegistry$EntryOption.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeRegistry$RegisteredEntry.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeRegistry$RegistryOption.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ForgeRegistry.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Json.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Manifest.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/RequestEnvelope.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/ResponseEnvelope.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Risk.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Schemas.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/Service.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/TransactionMode.class +0 -0
- package/adapters/java/target/classes/dev/forgeos/adapter/TypedForgeHandler.class +0 -0
- package/adapters/java/target/forge-java-adapter-0.1.0-alpha.11.jar +0 -0
- package/adapters/java/target/maven-archiver/pom.properties +3 -0
- package/adapters/java/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +23 -0
- package/adapters/java/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +20 -0
- package/adapters/java-spring-boot-starter/README.md +32 -0
- package/adapters/java-spring-boot-starter/pom.xml +36 -0
- package/adapters/java-spring-boot-starter/src/main/java/dev/forgeos/adapter/spring/ForgeCommand.java +22 -0
- package/adapters/java-spring-boot-starter/src/main/java/dev/forgeos/adapter/spring/ForgeExternalService.java +15 -0
- package/adapters/java-spring-boot-starter/src/main/java/dev/forgeos/adapter/spring/ForgeQuery.java +16 -0
- package/adapters/java-spring-boot-starter/src/main/java/dev/forgeos/adapter/spring/ForgeServiceBeanCondition.java +18 -0
- package/adapters/java-spring-boot-starter/src/main/java/dev/forgeos/adapter/spring/ForgeSpringAutoConfiguration.java +16 -0
- package/adapters/java-spring-boot-starter/src/main/java/dev/forgeos/adapter/spring/ForgeSpringRuntime.java +104 -0
- package/adapters/java-spring-boot-starter/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports +1 -0
- package/adapters/java-spring-boot-starter/target/classes/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports +1 -0
- package/adapters/java-spring-boot-starter/target/classes/dev/forgeos/adapter/spring/ForgeCommand.class +0 -0
- package/adapters/java-spring-boot-starter/target/classes/dev/forgeos/adapter/spring/ForgeExternalService.class +0 -0
- package/adapters/java-spring-boot-starter/target/classes/dev/forgeos/adapter/spring/ForgeQuery.class +0 -0
- package/adapters/java-spring-boot-starter/target/classes/dev/forgeos/adapter/spring/ForgeServiceBeanCondition.class +0 -0
- package/adapters/java-spring-boot-starter/target/classes/dev/forgeos/adapter/spring/ForgeSpringAutoConfiguration.class +0 -0
- package/adapters/java-spring-boot-starter/target/classes/dev/forgeos/adapter/spring/ForgeSpringRuntime.class +0 -0
- package/adapters/java-spring-boot-starter/target/forge-java-spring-boot-starter-0.1.0-alpha.11.jar +0 -0
- package/adapters/java-spring-boot-starter/target/maven-archiver/pom.properties +3 -0
- package/adapters/java-spring-boot-starter/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +6 -0
- package/adapters/java-spring-boot-starter/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +6 -0
- package/bin/forge.mjs +18 -0
- package/docs/changelog.md +242 -0
- package/docs/forge-protocol.md +189 -0
- package/examples/go-billing/go.mod +7 -0
- package/examples/go-billing/main.go +120 -0
- package/examples/java-billing/pom.xml +52 -0
- package/examples/java-billing/src/main/java/dev/forgeos/examples/billing/CreateInvoiceInput.java +4 -0
- package/examples/java-billing/src/main/java/dev/forgeos/examples/billing/Invoice.java +11 -0
- package/examples/java-billing/src/main/java/dev/forgeos/examples/billing/Main.java +127 -0
- package/examples/java-billing/target/classes/dev/forgeos/examples/billing/CreateInvoiceInput.class +0 -0
- package/examples/java-billing/target/classes/dev/forgeos/examples/billing/Invoice.class +0 -0
- package/examples/java-billing/target/classes/dev/forgeos/examples/billing/Main$EmptyInput.class +0 -0
- package/examples/java-billing/target/classes/dev/forgeos/examples/billing/Main$Options.class +0 -0
- package/examples/java-billing/target/classes/dev/forgeos/examples/billing/Main.class +0 -0
- package/examples/java-billing/target/java-billing-0.1.0-alpha.11-all.jar +0 -0
- package/examples/java-billing/target/java-billing-0.1.0-alpha.11.jar +0 -0
- package/examples/java-billing/target/maven-archiver/pom.properties +3 -0
- package/examples/java-billing/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +5 -0
- package/examples/java-billing/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +3 -0
- package/package.json +29 -7
- package/schemas/forge-manifest.schema.json +57 -0
- package/src/forge/_generated/releaseManifest.json +1 -2
- package/src/forge/_generated/releaseManifest.ts +3 -3
- package/src/forge/agent-adapters/index.ts +1511 -123
- package/src/forge/agent-adapters/types.ts +216 -1
- package/src/forge/agent-memory/bridge.ts +1245 -0
- package/src/forge/agent-memory/context-pack.ts +151 -0
- package/src/forge/agent-memory/hook-runner.ts +312 -0
- package/src/forge/agent-memory/mcp.ts +224 -0
- package/src/forge/agent-memory/normalize.ts +498 -0
- package/src/forge/agent-memory/redaction.ts +103 -0
- package/src/forge/agent-memory/sources/claude-code.ts +51 -0
- package/src/forge/agent-memory/sources/codex-hook-runner.mjs +273 -0
- package/src/forge/agent-memory/sources/codex.ts +119 -0
- package/src/forge/agent-memory/sources/cursor.ts +35 -0
- package/src/forge/agent-memory/types.ts +191 -0
- package/src/forge/bench.ts +248 -0
- package/src/forge/brownfield-import/index.ts +801 -0
- package/src/forge/brownfield-import/types.ts +127 -0
- package/src/forge/cair/action-journal.ts +61 -0
- package/src/forge/cair/action-parser.ts +314 -0
- package/src/forge/cair/action-validator.ts +40 -0
- package/src/forge/cair/actions.ts +1818 -0
- package/src/forge/cair/format.ts +77 -0
- package/src/forge/cair/index.ts +106 -0
- package/src/forge/cair/query.ts +478 -0
- package/src/forge/cair/snapshot.ts +315 -0
- package/src/forge/cair/types.ts +248 -0
- package/src/forge/cli/ai.ts +671 -3
- package/src/forge/cli/auth.ts +36 -1
- package/src/forge/cli/build.ts +20 -4
- package/src/forge/cli/changed.ts +300 -0
- package/src/forge/cli/codex-app-server.ts +877 -0
- package/src/forge/cli/commands.ts +1285 -7
- package/src/forge/cli/db.ts +121 -2
- package/src/forge/cli/deps.ts +79 -12
- package/src/forge/cli/dev.ts +502 -38
- package/src/forge/cli/docs.ts +265 -0
- package/src/forge/cli/handoff.ts +250 -0
- package/src/forge/cli/index.ts +1 -0
- package/src/forge/cli/main.ts +49 -3
- package/src/forge/cli/new.ts +3 -1
- package/src/forge/cli/next-actions.ts +23 -0
- package/src/forge/cli/output.ts +290 -1
- package/src/forge/cli/parse.ts +770 -36
- package/src/forge/cli/query.ts +32 -0
- package/src/forge/cli/release.ts +35 -11
- package/src/forge/cli/rls.ts +568 -17
- package/src/forge/cli/run.ts +41 -0
- package/src/forge/cli/secrets.ts +46 -1
- package/src/forge/cli/security.ts +381 -0
- package/src/forge/cli/self-host.ts +56 -14
- package/src/forge/cli/studio.ts +2163 -0
- package/src/forge/cli/verify.ts +1422 -32
- package/src/forge/compiler/agent-contract/build.ts +725 -41
- package/src/forge/compiler/agent-contract/types.ts +85 -0
- package/src/forge/compiler/ai-registry/build.ts +62 -1
- package/src/forge/compiler/ai-registry/constants.ts +1 -1
- package/src/forge/compiler/ai-registry/parse.ts +168 -5
- package/src/forge/compiler/api-surface/build.ts +47 -0
- package/src/forge/compiler/app-graph/build.ts +68 -8
- package/src/forge/compiler/app-graph/extract.ts +107 -0
- package/src/forge/compiler/app-graph/forge-apis.ts +1 -0
- package/src/forge/compiler/app-graph/module-graph.ts +73 -78
- package/src/forge/compiler/app-graph/parser.ts +24 -24
- package/src/forge/compiler/app-graph/profile.ts +26 -0
- package/src/forge/compiler/app-graph/versions.ts +1 -1
- package/src/forge/compiler/classifier/capabilities.ts +3 -2
- package/src/forge/compiler/classifier/classify.ts +32 -8
- package/src/forge/compiler/classifier/secrets.ts +3 -2
- package/src/forge/compiler/classifier/signals.ts +91 -1
- package/src/forge/compiler/client-sdk/build-manifest.ts +59 -0
- package/src/forge/compiler/client-sdk/render-client.ts +188 -13
- package/src/forge/compiler/data-graph/parse.ts +3 -3
- package/src/forge/compiler/data-graph/sql/ddl.ts +60 -2
- package/src/forge/compiler/data-graph/sql/serialize.ts +4 -0
- package/src/forge/compiler/data-graph/sql/types.ts +1 -0
- package/src/forge/compiler/dev-manifest/build.ts +3 -0
- package/src/forge/compiler/diagnostics/codes.ts +35 -0
- package/src/forge/compiler/diagnostics/create.ts +8 -3
- package/src/forge/compiler/diagnostics/index.ts +2 -0
- package/src/forge/compiler/emitter/barrel.ts +3 -0
- package/src/forge/compiler/emitter/render.ts +5 -0
- package/src/forge/compiler/external-manifest/registry.ts +205 -0
- package/src/forge/compiler/external-manifest/types.ts +91 -0
- package/src/forge/compiler/external-manifest/validate.ts +373 -0
- package/src/forge/compiler/frontend-graph/build.ts +85 -13
- package/src/forge/compiler/integration/add.ts +498 -22
- package/src/forge/compiler/integration/snapshot.ts +2 -0
- package/src/forge/compiler/make-registry/build.ts +19 -7
- package/src/forge/compiler/orchestrator/plan-profile.ts +23 -0
- package/src/forge/compiler/orchestrator/plan.ts +78 -7
- package/src/forge/compiler/orchestrator/profile.ts +65 -0
- package/src/forge/compiler/orchestrator/run.ts +97 -31
- package/src/forge/compiler/orchestrator/serialize.ts +101 -8
- package/src/forge/compiler/package-graph/compiler.ts +13 -3
- package/src/forge/compiler/package-manager/adapter.ts +4 -1
- package/src/forge/compiler/package-manager/commands.ts +4 -0
- package/src/forge/compiler/package-manager/executor.ts +30 -1
- package/src/forge/compiler/policy-registry/build.ts +44 -1
- package/src/forge/compiler/test-graph/build.ts +11 -3
- package/src/forge/compiler/types/ai-registry.ts +25 -1
- package/src/forge/compiler/types/app-graph.ts +9 -2
- package/src/forge/compiler/types/cli.ts +76 -1
- package/src/forge/compiler/types/dev-manifest.ts +3 -0
- package/src/forge/compiler/types/frontend-graph.ts +2 -2
- package/src/forge/delta/classifier.ts +52 -0
- package/src/forge/delta/explain.ts +126 -0
- package/src/forge/delta/git-observer.ts +43 -0
- package/src/forge/delta/ids.ts +44 -0
- package/src/forge/delta/index.ts +13 -0
- package/src/forge/delta/recorder.ts +402 -0
- package/src/forge/delta/redaction.ts +50 -0
- package/src/forge/delta/schema.ts +240 -0
- package/src/forge/delta/session.ts +142 -0
- package/src/forge/delta/status.ts +489 -0
- package/src/forge/delta/store.ts +2975 -0
- package/src/forge/delta/timeline.ts +104 -0
- package/src/forge/dev/server.ts +768 -15
- package/src/forge/dev/types.ts +15 -1
- package/src/forge/dev/watch.ts +17 -7
- package/src/forge/dev-console/cycle.ts +233 -21
- package/src/forge/dev-console/types.ts +46 -1
- package/src/forge/impact/index.ts +46 -8
- package/src/forge/impact/types.ts +6 -0
- package/src/forge/intent/index.ts +35 -16
- package/src/forge/make/index.ts +149 -6
- package/src/forge/make/templates.ts +343 -2
- package/src/forge/make/types.ts +3 -1
- package/src/forge/refactor/index.ts +1 -0
- package/src/forge/repair/rules/index.ts +2 -2
- package/src/forge/review/index.ts +158 -12
- package/src/forge/review/types.ts +15 -0
- package/src/forge/runtime/ai/context.ts +210 -5
- package/src/forge/runtime/ai/types.ts +70 -0
- package/src/forge/runtime/auth/claims.ts +32 -0
- package/src/forge/runtime/auth/errors.ts +2 -0
- package/src/forge/runtime/context/create-context.ts +30 -6
- package/src/forge/runtime/db/generated-client.ts +13 -2
- package/src/forge/runtime/db/memory-adapter.ts +2 -2
- package/src/forge/runtime/db/pglite-adapter.ts +77 -2
- package/src/forge/runtime/db/postgres-adapter.ts +6 -3
- package/src/forge/runtime/executor.ts +112 -2
- package/src/forge/runtime/external/bridge.ts +649 -0
- package/src/forge/runtime/runner/run-entry.ts +16 -7
- package/src/forge/runtime/telemetry/scrubber.ts +91 -10
- package/src/forge/runtime/webhooks/security.ts +184 -0
- package/src/forge/server.ts +100 -2
- package/src/forge/version.ts +1 -1
- package/src/forge/vue/index.ts +407 -0
- package/src/forge/workspace/change-summary.ts +209 -0
- package/src/forge/workspace/forge-cli.ts +14 -0
- package/src/forge/workspace/git-summary.ts +279 -0
- package/templates/agent-workroom/AGENTS.md +29 -0
- package/templates/agent-workroom/README.md +34 -0
- package/templates/agent-workroom/forge.config.ts +3 -0
- package/templates/agent-workroom/package.json +33 -0
- package/templates/agent-workroom/src/actions/indexAgentSignal.ts +10 -0
- package/templates/agent-workroom/src/commands/openWorkroom.ts +61 -0
- package/templates/agent-workroom/src/commands/recordAgentSignal.ts +119 -0
- package/templates/agent-workroom/src/commands/recordCheckRun.ts +52 -0
- package/templates/agent-workroom/src/forge/schema.ts +54 -0
- package/templates/agent-workroom/src/policies.ts +6 -0
- package/templates/agent-workroom/src/queries/listWorkrooms.ts +11 -0
- package/templates/agent-workroom/src/queries/liveWorkroom.ts +63 -0
- package/templates/agent-workroom/tsconfig.json +16 -0
- package/templates/agent-workroom/web/index.html +12 -0
- package/templates/agent-workroom/web/package.json +21 -0
- package/templates/agent-workroom/web/src/App.tsx +345 -0
- package/templates/agent-workroom/web/src/lib/forge.ts +13 -0
- package/templates/agent-workroom/web/src/main.tsx +13 -0
- package/templates/agent-workroom/web/src/styles.css +545 -0
- package/templates/agent-workroom/web/tsconfig.json +27 -0
- package/templates/b2b-support-web/package.json +2 -0
- package/templates/b2b-support-web/tsconfig.json +4 -1
- package/templates/b2b-support-web/web/package.json +1 -1
- package/templates/minimal-web/package.json +2 -1
- package/templates/minimal-web/tsconfig.json +3 -1
- package/templates/minimal-web/web/package.json +2 -2
- package/src/forge/_generated/actionSubscriptions.json +0 -2
- package/src/forge/_generated/actionSubscriptions.ts +0 -10
- package/src/forge/_generated/agentAdapterManifest.json +0 -2
- package/src/forge/_generated/agentAdapterManifest.ts +0 -73
- package/src/forge/_generated/agentContract.json +0 -2
- package/src/forge/_generated/agentContract.ts +0 -7696
- package/src/forge/_generated/agentQuickstart.md +0 -32
- package/src/forge/_generated/aiContext.ts +0 -59
- package/src/forge/_generated/aiModels.json +0 -2
- package/src/forge/_generated/aiModels.ts +0 -35
- package/src/forge/_generated/aiProviders.json +0 -2
- package/src/forge/_generated/aiProviders.ts +0 -23
- package/src/forge/_generated/aiRegistry.json +0 -2
- package/src/forge/_generated/aiRegistry.ts +0 -29
- package/src/forge/_generated/api.json +0 -2
- package/src/forge/_generated/api.ts +0 -8
- package/src/forge/_generated/appGraph.json +0 -2
- package/src/forge/_generated/appGraph.ts +0 -14667
- package/src/forge/_generated/appMap.md +0 -35
- package/src/forge/_generated/artifactManifest.json +0 -2
- package/src/forge/_generated/artifactManifest.ts +0 -7
- package/src/forge/_generated/authClaims.json +0 -2
- package/src/forge/_generated/authClaims.ts +0 -13
- package/src/forge/_generated/authConfig.json +0 -2
- package/src/forge/_generated/authConfig.ts +0 -17
- package/src/forge/_generated/authContext.ts +0 -23
- package/src/forge/_generated/authRegistry.json +0 -2
- package/src/forge/_generated/authRegistry.ts +0 -25
- package/src/forge/_generated/buildInfo.json +0 -2
- package/src/forge/_generated/buildInfo.ts +0 -9
- package/src/forge/_generated/capabilityMap.json +0 -2
- package/src/forge/_generated/capabilityMap.md +0 -15
- package/src/forge/_generated/capabilityMap.ts +0 -17
- package/src/forge/_generated/client.ts +0 -282
- package/src/forge/_generated/clientApi.ts +0 -9
- package/src/forge/_generated/clientManifest.json +0 -2
- package/src/forge/_generated/clientManifest.ts +0 -39
- package/src/forge/_generated/clientTypes.ts +0 -78
- package/src/forge/_generated/configRegistry.json +0 -2
- package/src/forge/_generated/configRegistry.ts +0 -4
- package/src/forge/_generated/dataGraph.json +0 -2
- package/src/forge/_generated/dataGraph.ts +0 -8
- package/src/forge/_generated/db.json +0 -2
- package/src/forge/_generated/db.ts +0 -2
- package/src/forge/_generated/dbSecurityManifest.json +0 -2
- package/src/forge/_generated/dbSecurityManifest.ts +0 -15
- package/src/forge/_generated/dbSessionContext.json +0 -2
- package/src/forge/_generated/dbSessionContext.ts +0 -39
- package/src/forge/_generated/deployManifest.json +0 -2
- package/src/forge/_generated/deployManifest.ts +0 -14
- package/src/forge/_generated/devManifest.json +0 -2
- package/src/forge/_generated/devManifest.ts +0 -47
- package/src/forge/_generated/envSchema.json +0 -2
- package/src/forge/_generated/envSchema.ts +0 -59
- package/src/forge/_generated/frontendGraph.json +0 -2
- package/src/forge/_generated/frontendGraph.ts +0 -27
- package/src/forge/_generated/importGuards.json +0 -2
- package/src/forge/_generated/importGuards.ts +0 -686
- package/src/forge/_generated/index.ts +0 -67
- package/src/forge/_generated/liveProductionManifest.json +0 -2
- package/src/forge/_generated/liveProductionManifest.ts +0 -23
- package/src/forge/_generated/liveProtocol.json +0 -2
- package/src/forge/_generated/liveProtocol.ts +0 -21
- package/src/forge/_generated/liveQueryRegistry.json +0 -2
- package/src/forge/_generated/liveQueryRegistry.ts +0 -9
- package/src/forge/_generated/liveTransportConfig.json +0 -2
- package/src/forge/_generated/liveTransportConfig.ts +0 -19
- package/src/forge/_generated/makeRegistry.json +0 -2
- package/src/forge/_generated/makeRegistry.ts +0 -163
- package/src/forge/_generated/makeTemplates.json +0 -2
- package/src/forge/_generated/makeTemplates.ts +0 -61
- package/src/forge/_generated/mockMap.json +0 -2
- package/src/forge/_generated/mockMap.ts +0 -7
- package/src/forge/_generated/operationPlaybooks.md +0 -147
- package/src/forge/_generated/packageGraph.json +0 -2
- package/src/forge/_generated/packageGraph.ts +0 -245249
- package/src/forge/_generated/packageUpgradeRegistry.json +0 -2
- package/src/forge/_generated/packageUpgradeRegistry.ts +0 -15
- package/src/forge/_generated/permissionMatrix.json +0 -2
- package/src/forge/_generated/permissionMatrix.ts +0 -7
- package/src/forge/_generated/policyRegistry.json +0 -2
- package/src/forge/_generated/policyRegistry.ts +0 -11
- package/src/forge/_generated/queryRegistry.json +0 -2
- package/src/forge/_generated/queryRegistry.ts +0 -9
- package/src/forge/_generated/react.d.ts +0 -22
- package/src/forge/_generated/react.ts +0 -29
- package/src/forge/_generated/reactManifest.json +0 -2
- package/src/forge/_generated/reactManifest.ts +0 -19
- package/src/forge/_generated/rlsPolicies.json +0 -2
- package/src/forge/_generated/rlsPolicies.sql +0 -34
- package/src/forge/_generated/rlsPolicies.ts +0 -6
- package/src/forge/_generated/runtimeGraph.json +0 -2
- package/src/forge/_generated/runtimeGraph.ts +0 -8
- package/src/forge/_generated/runtimeMatrix.json +0 -2
- package/src/forge/_generated/runtimeMatrix.ts +0 -327385
- package/src/forge/_generated/runtimeRegistry.ts +0 -2
- package/src/forge/_generated/runtimeRules.md +0 -79
- package/src/forge/_generated/secretRegistry.json +0 -2
- package/src/forge/_generated/secretRegistry.ts +0 -50
- package/src/forge/_generated/secretsContext.ts +0 -11
- package/src/forge/_generated/serverApi.ts +0 -10
- package/src/forge/_generated/sourceMapManifest.json +0 -2
- package/src/forge/_generated/sourceMapManifest.ts +0 -7
- package/src/forge/_generated/sqlPlan.json +0 -2
- package/src/forge/_generated/sqlPlan.ts +0 -88
- package/src/forge/_generated/subscriptionManifest.json +0 -2
- package/src/forge/_generated/subscriptionManifest.ts +0 -7
- package/src/forge/_generated/symbolicationManifest.json +0 -2
- package/src/forge/_generated/symbolicationManifest.ts +0 -17
- package/src/forge/_generated/telemetryRegistry.json +0 -2
- package/src/forge/_generated/telemetryRegistry.ts +0 -9
- package/src/forge/_generated/telemetrySinks.json +0 -2
- package/src/forge/_generated/telemetrySinks.ts +0 -11
- package/src/forge/_generated/tenantScope.json +0 -2
- package/src/forge/_generated/tenantScope.ts +0 -8
- package/src/forge/_generated/testGraph.json +0 -2
- package/src/forge/_generated/testGraph.ts +0 -3108
- package/src/forge/_generated/testPlanRegistry.json +0 -2
- package/src/forge/_generated/testPlanRegistry.ts +0 -33
- package/src/forge/_generated/uiRoutes.json +0 -2
- package/src/forge/_generated/uiRoutes.ts +0 -16
- package/src/forge/_generated/uiScenarios.json +0 -2
- package/src/forge/_generated/uiScenarios.ts +0 -30
- package/src/forge/_generated/uiTestManifest.json +0 -2
- package/src/forge/_generated/uiTestManifest.ts +0 -27
- package/src/forge/_generated/workflowRegistry.json +0 -2
- package/src/forge/_generated/workflowRegistry.ts +0 -9
- package/src/forge/_generated/workflowSubscriptions.json +0 -2
- package/src/forge/_generated/workflowSubscriptions.ts +0 -10
|
@@ -1,686 +0,0 @@
|
|
|
1
|
-
// @forge-generated generator=0.1.0-alpha.2 input=2ce189e4d3555acfca07eb3bb3d103b22a8da52f3c26f9ac2197254f0563234f content=e432d0f4305ef18d98e0d14b95def5b007ce3ac3498ac5ce46c10dd6f14b5502
|
|
2
|
-
export const importGuards = {
|
|
3
|
-
"schemaVersion": "1",
|
|
4
|
-
"entries": [
|
|
5
|
-
{
|
|
6
|
-
"packageName": "@ai-sdk/anthropic",
|
|
7
|
-
"alias": "ai-provider-anthropic",
|
|
8
|
-
"compatible": [
|
|
9
|
-
"server",
|
|
10
|
-
"action",
|
|
11
|
-
"workflow",
|
|
12
|
-
"endpoint",
|
|
13
|
-
"test",
|
|
14
|
-
"build"
|
|
15
|
-
],
|
|
16
|
-
"incompatible": [
|
|
17
|
-
"shared",
|
|
18
|
-
"client",
|
|
19
|
-
"query",
|
|
20
|
-
"liveQuery",
|
|
21
|
-
"command",
|
|
22
|
-
"edge"
|
|
23
|
-
],
|
|
24
|
-
"rationale": {
|
|
25
|
-
"shared": "denied by integration recipe",
|
|
26
|
-
"client": "denied by integration recipe",
|
|
27
|
-
"server": "allowed by integration recipe",
|
|
28
|
-
"query": "denied by integration recipe",
|
|
29
|
-
"liveQuery": "denied by integration recipe",
|
|
30
|
-
"command": "denied by integration recipe",
|
|
31
|
-
"action": "allowed by integration recipe",
|
|
32
|
-
"workflow": "allowed by integration recipe",
|
|
33
|
-
"endpoint": "allowed by integration recipe",
|
|
34
|
-
"edge": "denied by integration recipe",
|
|
35
|
-
"test": "allowed by integration recipe",
|
|
36
|
-
"build": "allowed by integration recipe"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"packageName": "@ai-sdk/openai",
|
|
41
|
-
"alias": "ai-provider-openai",
|
|
42
|
-
"compatible": [
|
|
43
|
-
"server",
|
|
44
|
-
"action",
|
|
45
|
-
"workflow",
|
|
46
|
-
"endpoint",
|
|
47
|
-
"test",
|
|
48
|
-
"build"
|
|
49
|
-
],
|
|
50
|
-
"incompatible": [
|
|
51
|
-
"shared",
|
|
52
|
-
"client",
|
|
53
|
-
"query",
|
|
54
|
-
"liveQuery",
|
|
55
|
-
"command",
|
|
56
|
-
"edge"
|
|
57
|
-
],
|
|
58
|
-
"rationale": {
|
|
59
|
-
"shared": "denied by integration recipe",
|
|
60
|
-
"client": "denied by integration recipe",
|
|
61
|
-
"server": "allowed by integration recipe",
|
|
62
|
-
"query": "denied by integration recipe",
|
|
63
|
-
"liveQuery": "denied by integration recipe",
|
|
64
|
-
"command": "denied by integration recipe",
|
|
65
|
-
"action": "allowed by integration recipe",
|
|
66
|
-
"workflow": "allowed by integration recipe",
|
|
67
|
-
"endpoint": "allowed by integration recipe",
|
|
68
|
-
"edge": "denied by integration recipe",
|
|
69
|
-
"test": "allowed by integration recipe",
|
|
70
|
-
"build": "allowed by integration recipe"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"packageName": "@changesets/changelog-github",
|
|
75
|
-
"alias": "@changesets/changelog-github",
|
|
76
|
-
"compatible": [
|
|
77
|
-
"server",
|
|
78
|
-
"action",
|
|
79
|
-
"workflow",
|
|
80
|
-
"endpoint",
|
|
81
|
-
"edge",
|
|
82
|
-
"test",
|
|
83
|
-
"build"
|
|
84
|
-
],
|
|
85
|
-
"incompatible": [
|
|
86
|
-
"shared",
|
|
87
|
-
"client",
|
|
88
|
-
"query",
|
|
89
|
-
"liveQuery",
|
|
90
|
-
"command"
|
|
91
|
-
],
|
|
92
|
-
"rationale": {
|
|
93
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
94
|
-
"client": "insufficient signals for client compatibility",
|
|
95
|
-
"server": "server-side context allows IO capabilities",
|
|
96
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
97
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
98
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
99
|
-
"action": "server-side context allows IO capabilities",
|
|
100
|
-
"workflow": "server-side context allows IO capabilities",
|
|
101
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
102
|
-
"edge": "edge-compatible by heuristic",
|
|
103
|
-
"test": "test/build contexts allow broad compatibility",
|
|
104
|
-
"build": "test/build contexts allow broad compatibility"
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"packageName": "@changesets/cli",
|
|
109
|
-
"alias": "@changesets/cli",
|
|
110
|
-
"compatible": [
|
|
111
|
-
"server",
|
|
112
|
-
"action",
|
|
113
|
-
"workflow",
|
|
114
|
-
"endpoint",
|
|
115
|
-
"edge",
|
|
116
|
-
"test",
|
|
117
|
-
"build"
|
|
118
|
-
],
|
|
119
|
-
"incompatible": [
|
|
120
|
-
"shared",
|
|
121
|
-
"client",
|
|
122
|
-
"query",
|
|
123
|
-
"liveQuery",
|
|
124
|
-
"command"
|
|
125
|
-
],
|
|
126
|
-
"rationale": {
|
|
127
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
128
|
-
"client": "insufficient signals for client compatibility",
|
|
129
|
-
"server": "server-side context allows IO capabilities",
|
|
130
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
131
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
132
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
133
|
-
"action": "server-side context allows IO capabilities",
|
|
134
|
-
"workflow": "server-side context allows IO capabilities",
|
|
135
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
136
|
-
"edge": "edge-compatible by heuristic",
|
|
137
|
-
"test": "test/build contexts allow broad compatibility",
|
|
138
|
-
"build": "test/build contexts allow broad compatibility"
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"packageName": "@electric-sql/pglite",
|
|
143
|
-
"alias": "@electric-sql/pglite",
|
|
144
|
-
"compatible": [
|
|
145
|
-
"server",
|
|
146
|
-
"action",
|
|
147
|
-
"workflow",
|
|
148
|
-
"endpoint",
|
|
149
|
-
"edge",
|
|
150
|
-
"test",
|
|
151
|
-
"build"
|
|
152
|
-
],
|
|
153
|
-
"incompatible": [
|
|
154
|
-
"shared",
|
|
155
|
-
"client",
|
|
156
|
-
"query",
|
|
157
|
-
"liveQuery",
|
|
158
|
-
"command"
|
|
159
|
-
],
|
|
160
|
-
"rationale": {
|
|
161
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
162
|
-
"client": "insufficient signals for client compatibility",
|
|
163
|
-
"server": "server-side context allows IO capabilities",
|
|
164
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
165
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
166
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
167
|
-
"action": "server-side context allows IO capabilities",
|
|
168
|
-
"workflow": "server-side context allows IO capabilities",
|
|
169
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
170
|
-
"edge": "edge-compatible by heuristic",
|
|
171
|
-
"test": "test/build contexts allow broad compatibility",
|
|
172
|
-
"build": "test/build contexts allow broad compatibility"
|
|
173
|
-
}
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"packageName": "@types/bun",
|
|
177
|
-
"alias": "@types/bun",
|
|
178
|
-
"compatible": [
|
|
179
|
-
"server",
|
|
180
|
-
"action",
|
|
181
|
-
"workflow",
|
|
182
|
-
"endpoint",
|
|
183
|
-
"edge",
|
|
184
|
-
"test",
|
|
185
|
-
"build"
|
|
186
|
-
],
|
|
187
|
-
"incompatible": [
|
|
188
|
-
"shared",
|
|
189
|
-
"client",
|
|
190
|
-
"query",
|
|
191
|
-
"liveQuery",
|
|
192
|
-
"command"
|
|
193
|
-
],
|
|
194
|
-
"rationale": {
|
|
195
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
196
|
-
"client": "insufficient signals for client compatibility",
|
|
197
|
-
"server": "server-side context allows IO capabilities",
|
|
198
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
199
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
200
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
201
|
-
"action": "server-side context allows IO capabilities",
|
|
202
|
-
"workflow": "server-side context allows IO capabilities",
|
|
203
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
204
|
-
"edge": "edge-compatible by heuristic",
|
|
205
|
-
"test": "test/build contexts allow broad compatibility",
|
|
206
|
-
"build": "test/build contexts allow broad compatibility"
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
"packageName": "@types/node",
|
|
211
|
-
"alias": "@types/node",
|
|
212
|
-
"compatible": [
|
|
213
|
-
"server",
|
|
214
|
-
"action",
|
|
215
|
-
"workflow",
|
|
216
|
-
"endpoint",
|
|
217
|
-
"edge",
|
|
218
|
-
"test",
|
|
219
|
-
"build"
|
|
220
|
-
],
|
|
221
|
-
"incompatible": [
|
|
222
|
-
"shared",
|
|
223
|
-
"client",
|
|
224
|
-
"query",
|
|
225
|
-
"liveQuery",
|
|
226
|
-
"command"
|
|
227
|
-
],
|
|
228
|
-
"rationale": {
|
|
229
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
230
|
-
"client": "insufficient signals for client compatibility",
|
|
231
|
-
"server": "server-side context allows IO capabilities",
|
|
232
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
233
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
234
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
235
|
-
"action": "server-side context allows IO capabilities",
|
|
236
|
-
"workflow": "server-side context allows IO capabilities",
|
|
237
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
238
|
-
"edge": "edge-compatible by heuristic",
|
|
239
|
-
"test": "test/build contexts allow broad compatibility",
|
|
240
|
-
"build": "test/build contexts allow broad compatibility"
|
|
241
|
-
}
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"packageName": "@types/react",
|
|
245
|
-
"alias": "@types/react",
|
|
246
|
-
"compatible": [
|
|
247
|
-
"server",
|
|
248
|
-
"action",
|
|
249
|
-
"workflow",
|
|
250
|
-
"endpoint",
|
|
251
|
-
"edge",
|
|
252
|
-
"test",
|
|
253
|
-
"build"
|
|
254
|
-
],
|
|
255
|
-
"incompatible": [
|
|
256
|
-
"shared",
|
|
257
|
-
"client",
|
|
258
|
-
"query",
|
|
259
|
-
"liveQuery",
|
|
260
|
-
"command"
|
|
261
|
-
],
|
|
262
|
-
"rationale": {
|
|
263
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
264
|
-
"client": "insufficient signals for client compatibility",
|
|
265
|
-
"server": "server-side context allows IO capabilities",
|
|
266
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
267
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
268
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
269
|
-
"action": "server-side context allows IO capabilities",
|
|
270
|
-
"workflow": "server-side context allows IO capabilities",
|
|
271
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
272
|
-
"edge": "edge-compatible by heuristic",
|
|
273
|
-
"test": "test/build contexts allow broad compatibility",
|
|
274
|
-
"build": "test/build contexts allow broad compatibility"
|
|
275
|
-
}
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"packageName": "@types/react-test-renderer",
|
|
279
|
-
"alias": "@types/react-test-renderer",
|
|
280
|
-
"compatible": [
|
|
281
|
-
"server",
|
|
282
|
-
"action",
|
|
283
|
-
"workflow",
|
|
284
|
-
"endpoint",
|
|
285
|
-
"edge",
|
|
286
|
-
"test",
|
|
287
|
-
"build"
|
|
288
|
-
],
|
|
289
|
-
"incompatible": [
|
|
290
|
-
"shared",
|
|
291
|
-
"client",
|
|
292
|
-
"query",
|
|
293
|
-
"liveQuery",
|
|
294
|
-
"command"
|
|
295
|
-
],
|
|
296
|
-
"rationale": {
|
|
297
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
298
|
-
"client": "insufficient signals for client compatibility",
|
|
299
|
-
"server": "server-side context allows IO capabilities",
|
|
300
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
301
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
302
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
303
|
-
"action": "server-side context allows IO capabilities",
|
|
304
|
-
"workflow": "server-side context allows IO capabilities",
|
|
305
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
306
|
-
"edge": "edge-compatible by heuristic",
|
|
307
|
-
"test": "test/build contexts allow broad compatibility",
|
|
308
|
-
"build": "test/build contexts allow broad compatibility"
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
"packageName": "ai",
|
|
313
|
-
"alias": "ai-gateway",
|
|
314
|
-
"compatible": [
|
|
315
|
-
"server",
|
|
316
|
-
"action",
|
|
317
|
-
"workflow",
|
|
318
|
-
"endpoint",
|
|
319
|
-
"test",
|
|
320
|
-
"build"
|
|
321
|
-
],
|
|
322
|
-
"incompatible": [
|
|
323
|
-
"shared",
|
|
324
|
-
"client",
|
|
325
|
-
"query",
|
|
326
|
-
"liveQuery",
|
|
327
|
-
"command",
|
|
328
|
-
"edge"
|
|
329
|
-
],
|
|
330
|
-
"rationale": {
|
|
331
|
-
"shared": "denied by integration recipe",
|
|
332
|
-
"client": "denied by integration recipe",
|
|
333
|
-
"server": "allowed by integration recipe",
|
|
334
|
-
"query": "denied by integration recipe",
|
|
335
|
-
"liveQuery": "denied by integration recipe",
|
|
336
|
-
"command": "denied by integration recipe",
|
|
337
|
-
"action": "allowed by integration recipe",
|
|
338
|
-
"workflow": "allowed by integration recipe",
|
|
339
|
-
"endpoint": "allowed by integration recipe",
|
|
340
|
-
"edge": "denied by integration recipe",
|
|
341
|
-
"test": "allowed by integration recipe",
|
|
342
|
-
"build": "allowed by integration recipe"
|
|
343
|
-
}
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"packageName": "fast-check",
|
|
347
|
-
"alias": "fast-check",
|
|
348
|
-
"compatible": [
|
|
349
|
-
"server",
|
|
350
|
-
"action",
|
|
351
|
-
"workflow",
|
|
352
|
-
"endpoint",
|
|
353
|
-
"edge",
|
|
354
|
-
"test",
|
|
355
|
-
"build"
|
|
356
|
-
],
|
|
357
|
-
"incompatible": [
|
|
358
|
-
"shared",
|
|
359
|
-
"client",
|
|
360
|
-
"query",
|
|
361
|
-
"liveQuery",
|
|
362
|
-
"command"
|
|
363
|
-
],
|
|
364
|
-
"rationale": {
|
|
365
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
366
|
-
"client": "insufficient signals for client compatibility",
|
|
367
|
-
"server": "server-side context allows IO capabilities",
|
|
368
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
369
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
370
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
371
|
-
"action": "server-side context allows IO capabilities",
|
|
372
|
-
"workflow": "server-side context allows IO capabilities",
|
|
373
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
374
|
-
"edge": "edge-compatible by heuristic",
|
|
375
|
-
"test": "test/build contexts allow broad compatibility",
|
|
376
|
-
"build": "test/build contexts allow broad compatibility"
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"packageName": "jose",
|
|
381
|
-
"alias": "jose",
|
|
382
|
-
"compatible": [
|
|
383
|
-
"client",
|
|
384
|
-
"server",
|
|
385
|
-
"action",
|
|
386
|
-
"workflow",
|
|
387
|
-
"endpoint",
|
|
388
|
-
"edge",
|
|
389
|
-
"test",
|
|
390
|
-
"build"
|
|
391
|
-
],
|
|
392
|
-
"incompatible": [
|
|
393
|
-
"shared",
|
|
394
|
-
"query",
|
|
395
|
-
"liveQuery",
|
|
396
|
-
"command"
|
|
397
|
-
],
|
|
398
|
-
"rationale": {
|
|
399
|
-
"shared": "shared context requires pure code without network/fs/process",
|
|
400
|
-
"client": "client may perform network egress",
|
|
401
|
-
"server": "server-side context allows IO capabilities",
|
|
402
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
403
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
404
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
405
|
-
"action": "server-side context allows IO capabilities",
|
|
406
|
-
"workflow": "server-side context allows IO capabilities",
|
|
407
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
408
|
-
"edge": "edge-compatible by heuristic",
|
|
409
|
-
"test": "test/build contexts allow broad compatibility",
|
|
410
|
-
"build": "test/build contexts allow broad compatibility"
|
|
411
|
-
}
|
|
412
|
-
},
|
|
413
|
-
{
|
|
414
|
-
"packageName": "postgres",
|
|
415
|
-
"alias": "postgres",
|
|
416
|
-
"compatible": [
|
|
417
|
-
"server",
|
|
418
|
-
"action",
|
|
419
|
-
"workflow",
|
|
420
|
-
"endpoint",
|
|
421
|
-
"edge",
|
|
422
|
-
"test",
|
|
423
|
-
"build"
|
|
424
|
-
],
|
|
425
|
-
"incompatible": [
|
|
426
|
-
"shared",
|
|
427
|
-
"client",
|
|
428
|
-
"query",
|
|
429
|
-
"liveQuery",
|
|
430
|
-
"command"
|
|
431
|
-
],
|
|
432
|
-
"rationale": {
|
|
433
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
434
|
-
"client": "insufficient signals for client compatibility",
|
|
435
|
-
"server": "server-side context allows IO capabilities",
|
|
436
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
437
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
438
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
439
|
-
"action": "server-side context allows IO capabilities",
|
|
440
|
-
"workflow": "server-side context allows IO capabilities",
|
|
441
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
442
|
-
"edge": "edge-compatible by heuristic",
|
|
443
|
-
"test": "test/build contexts allow broad compatibility",
|
|
444
|
-
"build": "test/build contexts allow broad compatibility"
|
|
445
|
-
}
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
"packageName": "react",
|
|
449
|
-
"alias": "react",
|
|
450
|
-
"compatible": [
|
|
451
|
-
"server",
|
|
452
|
-
"action",
|
|
453
|
-
"workflow",
|
|
454
|
-
"endpoint",
|
|
455
|
-
"edge",
|
|
456
|
-
"test",
|
|
457
|
-
"build"
|
|
458
|
-
],
|
|
459
|
-
"incompatible": [
|
|
460
|
-
"shared",
|
|
461
|
-
"client",
|
|
462
|
-
"query",
|
|
463
|
-
"liveQuery",
|
|
464
|
-
"command"
|
|
465
|
-
],
|
|
466
|
-
"rationale": {
|
|
467
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
468
|
-
"client": "insufficient signals for client compatibility",
|
|
469
|
-
"server": "server-side context allows IO capabilities",
|
|
470
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
471
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
472
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
473
|
-
"action": "server-side context allows IO capabilities",
|
|
474
|
-
"workflow": "server-side context allows IO capabilities",
|
|
475
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
476
|
-
"edge": "edge-compatible by heuristic",
|
|
477
|
-
"test": "test/build contexts allow broad compatibility",
|
|
478
|
-
"build": "test/build contexts allow broad compatibility"
|
|
479
|
-
}
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"packageName": "react-test-renderer",
|
|
483
|
-
"alias": "react-test-renderer",
|
|
484
|
-
"compatible": [
|
|
485
|
-
"server",
|
|
486
|
-
"action",
|
|
487
|
-
"workflow",
|
|
488
|
-
"endpoint",
|
|
489
|
-
"edge",
|
|
490
|
-
"test",
|
|
491
|
-
"build"
|
|
492
|
-
],
|
|
493
|
-
"incompatible": [
|
|
494
|
-
"shared",
|
|
495
|
-
"client",
|
|
496
|
-
"query",
|
|
497
|
-
"liveQuery",
|
|
498
|
-
"command"
|
|
499
|
-
],
|
|
500
|
-
"rationale": {
|
|
501
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
502
|
-
"client": "insufficient signals for client compatibility",
|
|
503
|
-
"server": "server-side context allows IO capabilities",
|
|
504
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
505
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
506
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
507
|
-
"action": "server-side context allows IO capabilities",
|
|
508
|
-
"workflow": "server-side context allows IO capabilities",
|
|
509
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
510
|
-
"edge": "edge-compatible by heuristic",
|
|
511
|
-
"test": "test/build contexts allow broad compatibility",
|
|
512
|
-
"build": "test/build contexts allow broad compatibility"
|
|
513
|
-
}
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"packageName": "tree-sitter",
|
|
517
|
-
"alias": "tree-sitter",
|
|
518
|
-
"compatible": [
|
|
519
|
-
"server",
|
|
520
|
-
"action",
|
|
521
|
-
"workflow",
|
|
522
|
-
"endpoint",
|
|
523
|
-
"edge",
|
|
524
|
-
"test",
|
|
525
|
-
"build"
|
|
526
|
-
],
|
|
527
|
-
"incompatible": [
|
|
528
|
-
"shared",
|
|
529
|
-
"client",
|
|
530
|
-
"query",
|
|
531
|
-
"liveQuery",
|
|
532
|
-
"command"
|
|
533
|
-
],
|
|
534
|
-
"rationale": {
|
|
535
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
536
|
-
"client": "insufficient signals for client compatibility",
|
|
537
|
-
"server": "server-side context allows IO capabilities",
|
|
538
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
539
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
540
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
541
|
-
"action": "server-side context allows IO capabilities",
|
|
542
|
-
"workflow": "server-side context allows IO capabilities",
|
|
543
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
544
|
-
"edge": "edge-compatible by heuristic",
|
|
545
|
-
"test": "test/build contexts allow broad compatibility",
|
|
546
|
-
"build": "test/build contexts allow broad compatibility"
|
|
547
|
-
}
|
|
548
|
-
},
|
|
549
|
-
{
|
|
550
|
-
"packageName": "tree-sitter-typescript",
|
|
551
|
-
"alias": "tree-sitter-typescript",
|
|
552
|
-
"compatible": [
|
|
553
|
-
"server",
|
|
554
|
-
"action",
|
|
555
|
-
"workflow",
|
|
556
|
-
"endpoint",
|
|
557
|
-
"edge",
|
|
558
|
-
"test",
|
|
559
|
-
"build"
|
|
560
|
-
],
|
|
561
|
-
"incompatible": [
|
|
562
|
-
"shared",
|
|
563
|
-
"client",
|
|
564
|
-
"query",
|
|
565
|
-
"liveQuery",
|
|
566
|
-
"command"
|
|
567
|
-
],
|
|
568
|
-
"rationale": {
|
|
569
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
570
|
-
"client": "insufficient signals for client compatibility",
|
|
571
|
-
"server": "server-side context allows IO capabilities",
|
|
572
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
573
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
574
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
575
|
-
"action": "server-side context allows IO capabilities",
|
|
576
|
-
"workflow": "server-side context allows IO capabilities",
|
|
577
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
578
|
-
"edge": "edge-compatible by heuristic",
|
|
579
|
-
"test": "test/build contexts allow broad compatibility",
|
|
580
|
-
"build": "test/build contexts allow broad compatibility"
|
|
581
|
-
}
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
"packageName": "tsx",
|
|
585
|
-
"alias": "tsx",
|
|
586
|
-
"compatible": [
|
|
587
|
-
"server",
|
|
588
|
-
"action",
|
|
589
|
-
"workflow",
|
|
590
|
-
"endpoint",
|
|
591
|
-
"edge",
|
|
592
|
-
"test",
|
|
593
|
-
"build"
|
|
594
|
-
],
|
|
595
|
-
"incompatible": [
|
|
596
|
-
"shared",
|
|
597
|
-
"client",
|
|
598
|
-
"query",
|
|
599
|
-
"liveQuery",
|
|
600
|
-
"command"
|
|
601
|
-
],
|
|
602
|
-
"rationale": {
|
|
603
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
604
|
-
"client": "insufficient signals for client compatibility",
|
|
605
|
-
"server": "server-side context allows IO capabilities",
|
|
606
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
607
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
608
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
609
|
-
"action": "server-side context allows IO capabilities",
|
|
610
|
-
"workflow": "server-side context allows IO capabilities",
|
|
611
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
612
|
-
"edge": "edge-compatible by heuristic",
|
|
613
|
-
"test": "test/build contexts allow broad compatibility",
|
|
614
|
-
"build": "test/build contexts allow broad compatibility"
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
"packageName": "typescript",
|
|
619
|
-
"alias": "typescript",
|
|
620
|
-
"compatible": [
|
|
621
|
-
"server",
|
|
622
|
-
"action",
|
|
623
|
-
"workflow",
|
|
624
|
-
"endpoint",
|
|
625
|
-
"edge",
|
|
626
|
-
"test",
|
|
627
|
-
"build"
|
|
628
|
-
],
|
|
629
|
-
"incompatible": [
|
|
630
|
-
"shared",
|
|
631
|
-
"client",
|
|
632
|
-
"query",
|
|
633
|
-
"liveQuery",
|
|
634
|
-
"command"
|
|
635
|
-
],
|
|
636
|
-
"rationale": {
|
|
637
|
-
"shared": "insufficient signals to prove shared-safe purity",
|
|
638
|
-
"client": "node builtins/process not allowed in client",
|
|
639
|
-
"server": "server-side context allows IO capabilities",
|
|
640
|
-
"query": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
641
|
-
"liveQuery": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
642
|
-
"command": "capability is `unknown`; cannot prove determinism (static analysis cannot prove absence of network/fs)",
|
|
643
|
-
"action": "server-side context allows IO capabilities",
|
|
644
|
-
"workflow": "server-side context allows IO capabilities",
|
|
645
|
-
"endpoint": "server-side context allows IO capabilities",
|
|
646
|
-
"edge": "edge-compatible by heuristic",
|
|
647
|
-
"test": "test/build contexts allow broad compatibility",
|
|
648
|
-
"build": "test/build contexts allow broad compatibility"
|
|
649
|
-
}
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
"packageName": "zod",
|
|
653
|
-
"alias": "zod",
|
|
654
|
-
"compatible": [
|
|
655
|
-
"shared",
|
|
656
|
-
"client",
|
|
657
|
-
"server",
|
|
658
|
-
"query",
|
|
659
|
-
"liveQuery",
|
|
660
|
-
"command",
|
|
661
|
-
"action",
|
|
662
|
-
"workflow",
|
|
663
|
-
"endpoint",
|
|
664
|
-
"edge",
|
|
665
|
-
"test",
|
|
666
|
-
"build"
|
|
667
|
-
],
|
|
668
|
-
"incompatible": [],
|
|
669
|
-
"rationale": {
|
|
670
|
-
"shared": "allowed by integration recipe",
|
|
671
|
-
"client": "allowed by integration recipe",
|
|
672
|
-
"server": "allowed by integration recipe",
|
|
673
|
-
"query": "allowed by integration recipe",
|
|
674
|
-
"liveQuery": "allowed by integration recipe",
|
|
675
|
-
"command": "allowed by integration recipe",
|
|
676
|
-
"action": "allowed by integration recipe",
|
|
677
|
-
"workflow": "allowed by integration recipe",
|
|
678
|
-
"endpoint": "allowed by integration recipe",
|
|
679
|
-
"edge": "allowed by integration recipe",
|
|
680
|
-
"test": "allowed by integration recipe",
|
|
681
|
-
"build": "allowed by integration recipe"
|
|
682
|
-
}
|
|
683
|
-
}
|
|
684
|
-
],
|
|
685
|
-
"moduleContexts": []
|
|
686
|
-
} as const;
|