@astrale-os/cli 1.0.0-beta.0 → 1.0.0-beta.10
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 +23 -12
- package/dist/astrale.js +51494 -56307
- package/dist/public/connect-core.js +2028 -26846
- package/dist/public/keys/index.js +1755 -40694
- package/dist/public/paths/index.js +859 -39518
- package/dist/types/admin/binding.d.ts +19 -0
- package/dist/types/admin/instance/client.d.ts +22 -0
- package/dist/types/admin/instance/index.d.ts +2 -0
- package/dist/types/admin/instance/model.d.ts +5 -12
- package/dist/types/connection/auth.d.ts +3 -0
- package/dist/types/connection/call.d.ts +3 -0
- package/dist/types/connection/command.d.ts +27 -0
- package/dist/types/connection/credential.d.ts +14 -0
- package/dist/types/connection/errors.d.ts +1 -0
- package/dist/types/connection/exchange.d.ts +9 -0
- package/dist/types/connection/failure/classify.d.ts +2 -0
- package/dist/types/connection/failure/index.d.ts +5 -0
- package/dist/types/connection/failure/model.d.ts +25 -0
- package/dist/types/connection/failure/render.d.ts +3 -0
- package/dist/types/connection/index.d.ts +8 -0
- package/dist/types/connection/reasons.d.ts +37 -0
- package/dist/types/connection/self.d.ts +37 -0
- package/dist/types/connection/session.d.ts +31 -0
- package/dist/types/connection/target.d.ts +38 -0
- package/dist/types/errors.d.ts +1 -1
- package/dist/types/lib/admin-instance.d.ts +17 -0
- package/dist/types/lib/admin-target.d.ts +6 -2
- package/dist/types/lib/failure-debug.d.ts +1 -0
- package/dist/types/lib/idp.d.ts +7 -0
- package/dist/types/lib/instance-target.d.ts +1 -1
- package/dist/types/lib/instance.d.ts +10 -2
- package/dist/types/lib/log.d.ts +5 -3
- package/dist/types/lib/meta.d.ts +2 -2
- package/dist/types/lib/proc.d.ts +43 -0
- package/dist/types/lib/self.d.ts +9 -0
- package/dist/types/lib/update.d.ts +131 -0
- package/package.json +8 -10
- package/src/__tests__/fixtures/publication.ts +20 -0
- package/src/admin/__tests__/binding.test.ts +31 -0
- package/src/admin/__tests__/fixture.ts +101 -0
- package/src/admin/binding.ts +98 -0
- package/src/admin/catalog/.spec/api.d.ts +2 -2
- package/src/admin/catalog/__tests__/client.test.ts +20 -49
- package/src/admin/catalog/client.ts +36 -32
- package/src/admin/catalog/model.ts +3 -4
- package/src/admin/graph/.spec/api.d.ts +4 -10
- package/src/admin/graph/nodes.ts +1 -1
- package/src/admin/instance/.spec/api.d.ts +2 -2
- package/src/admin/instance/__tests__/client.test.ts +40 -163
- package/src/admin/instance/client.ts +35 -137
- package/src/admin/instance/index.ts +1 -2
- package/src/admin/instance/model.ts +11 -20
- package/src/commands/__tests__/admin-instance.test.ts +11 -8
- package/src/commands/__tests__/auth-login.test.ts +54 -1
- package/src/commands/__tests__/call-describe.test.ts +46 -33
- package/src/commands/__tests__/call.test.ts +5 -1
- package/src/commands/__tests__/domain-install-operation.test.ts +12 -7
- package/src/commands/__tests__/domain-install-owned.test.ts +6 -2
- package/src/commands/__tests__/domain-list.test.ts +63 -4
- package/src/commands/__tests__/install-identity-override.test.ts +19 -19
- package/src/commands/__tests__/instance-list-rows.test.ts +1 -1
- package/src/commands/__tests__/instance-status.test.ts +139 -0
- package/src/commands/__tests__/read-commands.test.ts +35 -10
- package/src/commands/__tests__/studio-descriptor.test.ts +22 -0
- package/src/commands/__tests__/update.test.ts +95 -0
- package/src/commands/call-describe.ts +60 -68
- package/src/commands/call.ts +43 -56
- package/src/commands/domain/install.ts +13 -17
- package/src/commands/domain/list.ts +18 -13
- package/src/commands/domain/publish.ts +14 -11
- package/src/commands/domain/uninstall.ts +2 -2
- package/src/commands/get.ts +14 -15
- package/src/commands/identity/__tests__/register.test.ts +3 -3
- package/src/commands/identity/register.ts +5 -4
- package/src/commands/instance/create.ts +8 -16
- package/src/commands/instance/delete.ts +12 -9
- package/src/commands/instance/list.ts +2 -2
- package/src/commands/instance/status.ts +66 -20
- package/src/commands/instance/use.ts +16 -12
- package/src/commands/introspect.ts +9 -16
- package/src/commands/logs.ts +24 -25
- package/src/commands/mutate.ts +6 -5
- package/src/commands/query.ts +27 -30
- package/src/commands/studio.ts +20 -0
- package/src/commands/token.ts +8 -7
- package/src/commands/update.ts +68 -22
- package/src/commands/view.ts +7 -6
- package/src/connection/.spec/api.d.ts +7 -8
- package/src/connection/.spec/architecture.md +5 -4
- package/src/connection/.spec/flows/session.ts +2 -2
- package/src/connection/.spec/laws/connection.ts +6 -2
- package/src/connection/.spec/layout.ts +1 -0
- package/src/connection/__tests__/credential.test.ts +20 -1
- package/src/connection/__tests__/errors.test.ts +43 -32
- package/src/connection/__tests__/exchange.test.ts +36 -6
- package/src/connection/__tests__/failure-fixtures.ts +39 -0
- package/src/connection/__tests__/failure-safety.test.ts +75 -0
- package/src/connection/__tests__/self.test.ts +31 -11
- package/src/connection/__tests__/session.test.ts +3 -3
- package/src/connection/__tests__/target.test.ts +1 -0
- package/src/connection/auth.ts +13 -0
- package/src/connection/call.ts +1 -1
- package/src/connection/credential.ts +2 -2
- package/src/connection/errors.ts +1 -355
- package/src/connection/exchange.ts +52 -27
- package/src/connection/failure/classify.ts +110 -0
- package/src/connection/failure/index.ts +18 -0
- package/src/connection/failure/model.ts +28 -0
- package/src/connection/failure/render.ts +116 -0
- package/src/connection/reasons.ts +16 -0
- package/src/connection/self.ts +39 -21
- package/src/connection/session.ts +19 -8
- package/src/errors.ts +3 -2
- package/src/graph/.spec/api.d.ts +12 -5
- package/src/graph/.spec/layout.ts +9 -1
- package/src/graph/__tests__/mutation.test.ts +2 -2
- package/src/graph/__tests__/query.test.ts +25 -6
- package/src/graph/class.ts +30 -0
- package/src/graph/index.ts +1 -0
- package/src/graph/query.ts +21 -32
- package/src/identity/.spec/api.d.ts +2 -2
- package/src/identity/__tests__/registration.test.ts +1 -1
- package/src/identity/registration.ts +3 -3
- package/src/keys/__tests__/keys.test.ts +4 -0
- package/src/keys/credential.ts +1 -0
- package/src/lib/__tests__/admin-target.test.ts +12 -0
- package/src/lib/__tests__/command-dx.test.ts +1 -1
- package/src/lib/__tests__/domain-publication.test.ts +138 -0
- package/src/lib/__tests__/idp-session.test.ts +22 -0
- package/src/lib/__tests__/idp.test.ts +36 -4
- package/src/lib/__tests__/instance-candidates.test.ts +1 -3
- package/src/lib/__tests__/instance-target.test.ts +7 -39
- package/src/lib/__tests__/instance.test.ts +6 -0
- package/src/lib/__tests__/log-errors.test.ts +64 -0
- package/src/lib/__tests__/studio-server-deps.test.ts +53 -16
- package/src/lib/__tests__/update.test.ts +113 -8
- package/src/lib/__tests__/view-open-intent.test.ts +0 -2
- package/src/lib/__tests__/view-server.test.ts +1 -1
- package/src/lib/__tests__/view-session.test.ts +1 -1
- package/src/lib/admin-instance.ts +14 -8
- package/src/lib/admin-target.ts +21 -2
- package/src/lib/command-dx.ts +9 -9
- package/src/lib/domain-publication.ts +104 -0
- package/src/lib/failure-debug.ts +26 -0
- package/src/lib/idp.ts +39 -4
- package/src/lib/instance-candidates.ts +2 -2
- package/src/lib/instance-target.ts +3 -14
- package/src/lib/instance.ts +22 -12
- package/src/lib/log.ts +16 -9
- package/src/lib/login-flow.ts +13 -3
- package/src/lib/meta.ts +2 -2
- package/src/lib/provision-instance.ts +34 -57
- package/src/lib/update.ts +124 -30
- package/src/lib/validation.ts +2 -2
- package/src/lib/view/resolve.ts +1 -1
- package/src/program/__tests__/program.test.ts +20 -4
- package/src/program/build.ts +2 -2
- package/src/setup/__tests__/instance-step.test.ts +27 -10
- package/src/setup/steps/instance.ts +22 -15
- package/studio/client/dist/assets/{elk-api-D2xgMJvi.js → elk-api-ByzoDZWH.js} +1 -1
- package/studio/client/dist/assets/index-B0RCgUOT.js +8 -0
- package/studio/client/dist/assets/index-BiGR8Oo9.css +1 -0
- package/studio/client/dist/assets/index-N8J8EKlB.js +81 -0
- package/studio/client/dist/index.html +2 -2
- package/studio/package.json +5 -10
- package/studio/server/agent/ask.test.ts +1 -1
- package/studio/server/agent/bridge/grant.test.ts +1 -1
- package/studio/server/agent/bridge/routes.test.ts +1 -1
- package/studio/server/agent/bridge/stdio.ts +8 -1
- package/studio/server/agent/conversation.test.ts +10 -5
- package/studio/server/agent/conversation.ts +56 -8
- package/studio/server/agent/harness/claude/adapter.test.ts +15 -5
- package/studio/server/agent/harness/codex/loadout.ts +18 -21
- package/studio/server/agent/harness/gateway/config.ts +20 -18
- package/studio/server/agent/harness/selection.ts +9 -1
- package/studio/server/agent/prompts/anchors.test.ts +32 -36
- package/studio/server/agent/prompts/anchors.ts +20 -49
- package/studio/server/agent/prompts/system.test.ts +3 -2
- package/studio/server/agent/prompts/system.ts +6 -5
- package/studio/server/agent/prompts/turn.ts +13 -4
- package/studio/server/agent/routes.test.ts +1 -1
- package/studio/server/agent/run/completion.ts +2 -2
- package/studio/server/agent/run/coordinator.test.ts +1 -1
- package/studio/server/agent/run/preparation.ts +6 -5
- package/studio/server/agent/run/transcript.test.ts +35 -1
- package/studio/server/agent/run/transcript.ts +169 -3
- package/studio/server/agent/run/usage.test.ts +24 -0
- package/studio/server/agent/run/usage.ts +26 -1
- package/studio/server/api/canvas.ts +43 -0
- package/studio/server/api/comments.ts +85 -0
- package/studio/server/api/context.ts +61 -0
- package/studio/server/api/deployment.ts +39 -0
- package/studio/server/api/documents.ts +55 -0
- package/studio/server/api/domain.ts +59 -0
- package/studio/server/api/http.ts +45 -0
- package/studio/server/api/project.ts +57 -0
- package/studio/server/api/schema.ts +12 -0
- package/studio/server/api/views.ts +57 -0
- package/studio/server/api/workspace.ts +60 -0
- package/studio/server/api-agent-loadout.test.ts +1 -1
- package/studio/server/api.test.ts +147 -0
- package/studio/server/api.ts +20 -422
- package/studio/server/cache.test.ts +122 -0
- package/studio/server/cache.ts +162 -11
- package/studio/server/cli-consumers.test.ts +494 -0
- package/studio/server/cli.test.ts +88 -0
- package/studio/server/cli.ts +240 -0
- package/studio/server/client-package.ts +25 -1
- package/studio/server/domain.test.ts +50 -40
- package/studio/server/domain.ts +83 -52
- package/studio/server/environment/dotenv-preview.test.ts +39 -0
- package/studio/server/environment/dotenv-preview.ts +27 -0
- package/studio/server/environment/files.test.ts +53 -0
- package/studio/server/{state/env.ts → environment/files.ts} +7 -48
- package/studio/server/{state → handoff}/copy.ts +21 -6
- package/studio/server/handoff/service.test.ts +22 -0
- package/studio/server/{state/handoff.ts → handoff/service.ts} +21 -14
- package/studio/server/index.ts +1 -1
- package/studio/server/instances/active.ts +72 -0
- package/studio/server/instances/deploy-record.test.ts +31 -0
- package/studio/server/instances/deploy-record.ts +37 -0
- package/studio/server/instances/deploy.ts +56 -0
- package/studio/server/{state/instance.test.ts → instances/probe.test.ts} +25 -21
- package/studio/server/instances/probe.ts +67 -0
- package/studio/server/instances/status.test.ts +12 -0
- package/studio/server/instances/status.ts +49 -0
- package/studio/server/introspect/anatomy/client-tree.ts +57 -0
- package/studio/server/introspect/anatomy/env-fields.ts +66 -0
- package/studio/server/introspect/anatomy/schema-definition.ts +53 -0
- package/studio/server/introspect/anatomy/source.ts +181 -0
- package/studio/server/introspect/anatomy/views/routes.ts +114 -0
- package/studio/server/introspect/anatomy/views.ts +53 -0
- package/studio/server/introspect/anatomy-extras.test.ts +106 -35
- package/studio/server/introspect/anatomy-extras.ts +7 -726
- package/studio/server/introspect/anatomy.test.ts +22 -14
- package/studio/server/introspect/anatomy.ts +52 -28
- package/studio/server/introspect/bundle.ts +15 -9
- package/studio/server/introspect/canonical-schema.test.ts +93 -309
- package/studio/server/introspect/canonical-schema.ts +257 -425
- package/studio/server/introspect/config-preview.test.ts +32 -0
- package/studio/server/introspect/config-preview.ts +119 -0
- package/studio/server/introspect/core-extractor.ts +18 -127
- package/studio/server/introspect/core.ts +1 -2
- package/studio/server/introspect/diff.test.ts +18 -18
- package/studio/server/introspect/diff.ts +44 -90
- package/studio/server/introspect/extractor.ts +23 -116
- package/studio/server/introspect/hash.ts +5 -2
- package/studio/server/introspect/overlay-tsmorph.test.ts +119 -240
- package/studio/server/introspect/overlay-tsmorph.ts +7 -1305
- package/studio/server/introspect/overlay.test.ts +26 -54
- package/studio/server/introspect/overlay.ts +10 -37
- package/studio/server/introspect/revision.test.ts +54 -0
- package/studio/server/introspect/revision.ts +49 -0
- package/studio/server/introspect/runtime.test.ts +83 -143
- package/studio/server/introspect/runtime.ts +40 -11
- package/studio/server/introspect/schema-ir-json.test.ts +70 -0
- package/studio/server/introspect/schema-ir-json.ts +151 -0
- package/studio/server/introspect/schema-refs.test.ts +43 -88
- package/studio/server/introspect/schema-refs.ts +14 -49
- package/studio/server/introspect/source-overlay/annotations.ts +14 -0
- package/studio/server/introspect/source-overlay/handlers.ts +161 -0
- package/studio/server/introspect/source-overlay/kernel-calls.ts +46 -0
- package/studio/server/introspect/source-overlay/project.ts +248 -0
- package/studio/server/introspect/source-overlay/spans.ts +330 -0
- package/studio/server/json.ts +46 -0
- package/studio/server/lifecycle.ts +5 -1
- package/studio/server/sse.test.ts +26 -0
- package/studio/server/sse.ts +4 -1
- package/studio/server/state/baseline.test.ts +223 -7
- package/studio/server/state/baseline.ts +148 -34
- package/studio/server/state/comments.test.ts +66 -1
- package/studio/server/state/comments.ts +173 -10
- package/studio/server/state/context.ts +34 -2
- package/studio/server/state/documents.ts +42 -1
- package/studio/server/state/integrations.ts +27 -1
- package/studio/server/state/layout.test.ts +34 -0
- package/studio/server/state/layout.ts +44 -17
- package/studio/server/state/settings.ts +29 -22
- package/studio/server/state/store.test.ts +122 -0
- package/studio/server/state/store.ts +66 -17
- package/studio/server/state/visibility.ts +22 -11
- package/studio/server/views/model.test.ts +57 -0
- package/studio/server/views/model.ts +66 -0
- package/studio/server/views/runtime.ts +40 -0
- package/studio/server/views/selection-repository.test.ts +31 -0
- package/studio/server/views/selection-repository.ts +60 -0
- package/studio/server/views/session.test.ts +73 -0
- package/studio/server/views/session.ts +166 -0
- package/studio/server/views/target.test.ts +78 -0
- package/studio/server/views/target.ts +222 -0
- package/studio/server/watch.test.ts +11 -11
- package/studio/server/watch.ts +9 -5
- package/studio/server/workspace/catalog.test.ts +17 -0
- package/studio/server/workspace/catalog.ts +43 -0
- package/studio/server/{state → workspace}/create.test.ts +1 -1
- package/studio/server/{state → workspace}/create.ts +1 -1
- package/studio/server/{state → workspace}/git.ts +1 -1
- package/studio/server/workspace/updates.ts +83 -0
- package/studio/server/workspace-state.ts +1 -1
- package/studio/server/workspace-watch.ts +2 -2
- package/studio/shared/contracts/README.md +16 -0
- package/studio/shared/contracts/agent.ts +270 -0
- package/studio/shared/contracts/runtime.ts +50 -0
- package/studio/shared/contracts/schema.ts +393 -0
- package/studio/shared/contracts/surface.test.ts +317 -0
- package/studio/shared/contracts/workspace.ts +265 -0
- package/studio/shared/layout.test.ts +116 -0
- package/studio/shared/schema/identity.test.ts +34 -0
- package/studio/shared/schema/identity.ts +68 -0
- package/studio/shared/types.ts +11 -1099
- package/studio/tsconfig.json +1 -1
- package/viewer/dist/main.js +40 -61
- package/.check-workspace.cjs +0 -40
- package/src/commands/__tests__/instance-create-hosts.test.ts +0 -29
- package/studio/client/dist/assets/index-BMdnsIJA.css +0 -1
- package/studio/client/dist/assets/index-D-vRV8w7.js +0 -8
- package/studio/client/dist/assets/index-LGSWRrk8.js +0 -81
- package/studio/server/state/catalog.ts +0 -117
- package/studio/server/state/instance.ts +0 -280
- package/studio/server/state/updates.ts +0 -63
- package/studio/server/state/views.test.ts +0 -286
- package/studio/server/state/views.ts +0 -535
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
StudioSchemaBundle,
|
|
3
|
+
ViewInfo,
|
|
4
|
+
ViewSessionResult,
|
|
5
|
+
ViewTargetCandidate,
|
|
6
|
+
} from '../../shared/types'
|
|
7
|
+
import type { StudioCliDecoder } from '../cli'
|
|
8
|
+
|
|
9
|
+
import { decodeJsonObject, runStudioCliJson } from '../cli'
|
|
10
|
+
import { activeInstanceName } from '../instances/active'
|
|
11
|
+
import { rememberTarget } from './selection-repository'
|
|
12
|
+
import { listViewTargets, viewDefinitionBindings } from './target'
|
|
13
|
+
|
|
14
|
+
export { conciseCliFailure } from '../cli'
|
|
15
|
+
|
|
16
|
+
interface AstraleResult<T> {
|
|
17
|
+
ok: boolean
|
|
18
|
+
data: T | null
|
|
19
|
+
detail: string
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
let viewSessionCommandTail: Promise<void> = Promise.resolve()
|
|
23
|
+
|
|
24
|
+
export function viewSessionArgs(
|
|
25
|
+
origin: string,
|
|
26
|
+
slug: string,
|
|
27
|
+
instance: string,
|
|
28
|
+
targetRef?: string,
|
|
29
|
+
): string[] {
|
|
30
|
+
const args = ['view', `/:${assertOrigin(origin)}:view.${assertViewSlug(slug)}`]
|
|
31
|
+
if (targetRef) args.push('--target', targetRef)
|
|
32
|
+
args.push('--no-open', '--json', '-i', instance)
|
|
33
|
+
return args
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
interface OpenedViewPayload {
|
|
37
|
+
session?: {
|
|
38
|
+
id?: string
|
|
39
|
+
pageUrl?: string
|
|
40
|
+
view?: { route?: { href?: string } }
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function decodeOpenedViewPayload(value: unknown): OpenedViewPayload | null {
|
|
45
|
+
const payload = decodeJsonObject(value)
|
|
46
|
+
if (!payload) return null
|
|
47
|
+
const session = decodeJsonObject(payload.session)
|
|
48
|
+
if (!session) return null
|
|
49
|
+
const view = decodeJsonObject(session.view)
|
|
50
|
+
const route = decodeJsonObject(view?.route)
|
|
51
|
+
if (
|
|
52
|
+
typeof session.id !== 'string' ||
|
|
53
|
+
typeof session.pageUrl !== 'string' ||
|
|
54
|
+
typeof route?.href !== 'string'
|
|
55
|
+
) {
|
|
56
|
+
return null
|
|
57
|
+
}
|
|
58
|
+
return {
|
|
59
|
+
session: {
|
|
60
|
+
id: session.id,
|
|
61
|
+
pageUrl: session.pageUrl,
|
|
62
|
+
view: { route: { href: route.href } },
|
|
63
|
+
},
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export function readyViewSession(
|
|
68
|
+
opened: OpenedViewPayload | null,
|
|
69
|
+
target: ViewTargetCandidate | null,
|
|
70
|
+
): Extract<ViewSessionResult, { status: 'ready' }> | null {
|
|
71
|
+
const session = opened?.session
|
|
72
|
+
const viewUrl = session?.view?.route?.href
|
|
73
|
+
if (!session?.id || !session.pageUrl || !viewUrl) return null
|
|
74
|
+
return {
|
|
75
|
+
status: 'ready',
|
|
76
|
+
sessionId: session.id,
|
|
77
|
+
pageUrl: session.pageUrl,
|
|
78
|
+
viewUrl,
|
|
79
|
+
target,
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export async function launchViewSession(
|
|
84
|
+
root: string,
|
|
85
|
+
origin: string,
|
|
86
|
+
view: ViewInfo,
|
|
87
|
+
bundle: StudioSchemaBundle | null,
|
|
88
|
+
request: { targetId?: unknown },
|
|
89
|
+
timeoutMs: number,
|
|
90
|
+
): Promise<ViewSessionResult> {
|
|
91
|
+
const instance = await activeInstanceName()
|
|
92
|
+
if (!instance) return { status: 'unavailable', reason: 'No active Astrale instance.' }
|
|
93
|
+
|
|
94
|
+
let target: ViewTargetCandidate | null = null
|
|
95
|
+
if (viewDefinitionBindings(origin, view, bundle).length > 0) {
|
|
96
|
+
const targetId = typeof request.targetId === 'string' ? request.targetId.trim() : ''
|
|
97
|
+
if (!targetId) return { status: 'unavailable', reason: 'Select a target before opening.' }
|
|
98
|
+
const targets = await listViewTargets(root, origin, view, bundle, instance, timeoutMs)
|
|
99
|
+
if (targets.status !== 'available') {
|
|
100
|
+
return { status: 'unavailable', reason: targets.reason ?? 'Targets could not be queried.' }
|
|
101
|
+
}
|
|
102
|
+
target = targets.items.find((item) => item.id === targetId) ?? null
|
|
103
|
+
if (!target) {
|
|
104
|
+
return {
|
|
105
|
+
status: 'unavailable',
|
|
106
|
+
reason: 'That target no longer exists or is no longer visible. Choose another target.',
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
const opened = await runViewSessionCommand<OpenedViewPayload>(
|
|
112
|
+
viewSessionArgs(origin, view.slug, instance, target?.ref),
|
|
113
|
+
Math.max(20_000, timeoutMs + 12_000),
|
|
114
|
+
decodeOpenedViewPayload,
|
|
115
|
+
)
|
|
116
|
+
const session = opened.ok ? readyViewSession(opened.data, target) : null
|
|
117
|
+
if (!session) {
|
|
118
|
+
return {
|
|
119
|
+
status: 'unavailable',
|
|
120
|
+
reason: opened.detail || '`astrale view` could not start the preview session.',
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
if (target) rememberTarget(root, instance, view.slug, target)
|
|
125
|
+
return session
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export async function closeViewSession(sessionId: string): Promise<{ ok: true }> {
|
|
129
|
+
if (!/^v-[0-9a-f]+$/.test(sessionId)) return { ok: true }
|
|
130
|
+
await runViewSessionCommand(['view', '--close', sessionId, '--json'], 6000, decodeJsonObject)
|
|
131
|
+
return { ok: true }
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
function assertOrigin(value: string): string {
|
|
135
|
+
if (!/^[a-z0-9][a-z0-9.-]*$/i.test(value)) throw new Error(`Invalid domain origin: ${value}`)
|
|
136
|
+
return value
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
function assertViewSlug(value: string): string {
|
|
140
|
+
if (!/^[a-z][a-z0-9-]*$/.test(value)) throw new Error(`Invalid view slug: ${value}`)
|
|
141
|
+
return value
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
function runViewSessionCommand<T>(
|
|
145
|
+
args: string[],
|
|
146
|
+
timeoutMs: number,
|
|
147
|
+
decoder: StudioCliDecoder<T>,
|
|
148
|
+
): Promise<AstraleResult<T>> {
|
|
149
|
+
const command = viewSessionCommandTail.then(
|
|
150
|
+
() => runAstraleJson(args, timeoutMs, decoder),
|
|
151
|
+
() => runAstraleJson(args, timeoutMs, decoder),
|
|
152
|
+
)
|
|
153
|
+
viewSessionCommandTail = command.then(
|
|
154
|
+
() => undefined,
|
|
155
|
+
() => undefined,
|
|
156
|
+
)
|
|
157
|
+
return command
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
async function runAstraleJson<T>(
|
|
161
|
+
args: string[],
|
|
162
|
+
timeoutMs: number,
|
|
163
|
+
decoder: StudioCliDecoder<T>,
|
|
164
|
+
): Promise<AstraleResult<T>> {
|
|
165
|
+
return runStudioCliJson(args, decoder, { timeoutMs })
|
|
166
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import type { StudioSchemaBundle, ViewInfo } from '../../shared/types'
|
|
4
|
+
|
|
5
|
+
import { targetDefinition, viewDefinitionBindings } from './target'
|
|
6
|
+
|
|
7
|
+
describe('View target definitions', () => {
|
|
8
|
+
test('preserves every exact canonical Class target and ignores short-name metadata', () => {
|
|
9
|
+
const view = {
|
|
10
|
+
slug: 'named',
|
|
11
|
+
kind: 'unknown',
|
|
12
|
+
viewFor: 'WrongFallback',
|
|
13
|
+
} satisfies ViewInfo
|
|
14
|
+
const bundle = {
|
|
15
|
+
ir: {
|
|
16
|
+
views: {
|
|
17
|
+
named: {
|
|
18
|
+
name: 'named',
|
|
19
|
+
auth: 'required',
|
|
20
|
+
target: {
|
|
21
|
+
kind: 'definition',
|
|
22
|
+
definitions: [
|
|
23
|
+
{ origin: 'directory.example.dev', kind: 'class', name: 'Named' },
|
|
24
|
+
{ origin: 'people.example.dev', kind: 'class', name: 'Named' },
|
|
25
|
+
],
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
} as unknown as StudioSchemaBundle
|
|
31
|
+
expect(viewDefinitionBindings('shell.astrale.ai', view, bundle)).toEqual([
|
|
32
|
+
{ className: 'Named', classOrigin: 'directory.example.dev', kind: 'class' },
|
|
33
|
+
{ className: 'Named', classOrigin: 'people.example.dev', kind: 'class' },
|
|
34
|
+
])
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
test('treats a canonical Domain target as authoritative', () => {
|
|
38
|
+
const view = { slug: 'home', kind: 'unknown', viewFor: 'User' } satisfies ViewInfo
|
|
39
|
+
const bundle = {
|
|
40
|
+
ir: { views: { home: { name: 'home', auth: 'required', target: { kind: 'domain' } } } },
|
|
41
|
+
} as unknown as StudioSchemaBundle
|
|
42
|
+
expect(viewDefinitionBindings('shell.astrale.ai', view, bundle)).toEqual([])
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
test('resolves fallback targets through local and exact imported Classes', () => {
|
|
46
|
+
const view = { slug: 'named', kind: 'unknown', viewFor: 'Named' } satisfies ViewInfo
|
|
47
|
+
const bundle = {
|
|
48
|
+
ir: {
|
|
49
|
+
domain: 'shell.astrale.ai',
|
|
50
|
+
views: {},
|
|
51
|
+
classes: {
|
|
52
|
+
Named: {
|
|
53
|
+
type: 'node',
|
|
54
|
+
name: 'Named',
|
|
55
|
+
origin: 'shell.astrale.ai',
|
|
56
|
+
properties: {},
|
|
57
|
+
methods: {},
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
importsByKey: {
|
|
61
|
+
'catalog.example.dev:class.Named': {
|
|
62
|
+
origin: 'catalog.example.dev',
|
|
63
|
+
ref: { origin: 'catalog.example.dev', kind: 'class', name: 'Named' },
|
|
64
|
+
key: 'catalog.example.dev:class.Named',
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
} as unknown as StudioSchemaBundle
|
|
69
|
+
expect(viewDefinitionBindings('shell.astrale.ai', view, bundle)).toEqual([
|
|
70
|
+
{ className: 'Named', classOrigin: 'shell.astrale.ai', kind: 'class' },
|
|
71
|
+
{ className: 'Named', classOrigin: 'catalog.example.dev', kind: 'class' },
|
|
72
|
+
])
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
test('addresses exact Class instances through a canonical Definition source', () => {
|
|
76
|
+
expect(targetDefinition('Issue', 'issues.astrale.ai')).toBe('/:issues.astrale.ai:class.Issue')
|
|
77
|
+
})
|
|
78
|
+
})
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
StudioSchemaBundle,
|
|
3
|
+
ViewInfo,
|
|
4
|
+
ViewTargetCandidate,
|
|
5
|
+
ViewTargetResult,
|
|
6
|
+
} from '../../shared/types'
|
|
7
|
+
import type { StudioCliDecoder } from '../cli'
|
|
8
|
+
|
|
9
|
+
import { decodeJsonObject, runStudioCliJson } from '../cli'
|
|
10
|
+
import { reconcileRememberedTarget, targetFromRow, type RawTargetRow } from './model'
|
|
11
|
+
import { readRememberedTarget } from './selection-repository'
|
|
12
|
+
|
|
13
|
+
const TARGET_LIMIT = 200
|
|
14
|
+
|
|
15
|
+
interface AstraleResult<T> {
|
|
16
|
+
ok: boolean
|
|
17
|
+
data: T | null
|
|
18
|
+
detail: string
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
interface RawQueryResult {
|
|
22
|
+
graph?: { nodes?: RawTargetRow[] }
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
function decodeTargetRow(value: unknown): RawTargetRow | null {
|
|
26
|
+
const row = decodeJsonObject(value)
|
|
27
|
+
if (!row) return null
|
|
28
|
+
const props = decodeJsonObject(row.props)
|
|
29
|
+
return {
|
|
30
|
+
...(typeof row.id === 'string' ? { id: row.id } : {}),
|
|
31
|
+
...(props ? { props } : {}),
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function decodeQueryResult(value: unknown): RawQueryResult | null {
|
|
36
|
+
const payload = decodeJsonObject(value)
|
|
37
|
+
const graph = decodeJsonObject(payload?.graph)
|
|
38
|
+
if (!graph || !Array.isArray(graph.nodes)) return null
|
|
39
|
+
const nodes = graph.nodes.map(decodeTargetRow).filter((row) => row !== null)
|
|
40
|
+
return { graph: { nodes } }
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export async function listViewTargets(
|
|
44
|
+
root: string,
|
|
45
|
+
origin: string,
|
|
46
|
+
view: ViewInfo,
|
|
47
|
+
bundle: StudioSchemaBundle | null,
|
|
48
|
+
instance: string,
|
|
49
|
+
timeoutMs: number,
|
|
50
|
+
): Promise<ViewTargetResult> {
|
|
51
|
+
const bindings = viewDefinitionBindings(origin, view, bundle)
|
|
52
|
+
if (bindings.length === 0) {
|
|
53
|
+
return {
|
|
54
|
+
status: 'available',
|
|
55
|
+
items: [],
|
|
56
|
+
selected: null,
|
|
57
|
+
stale: null,
|
|
58
|
+
truncated: false,
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const queried = await Promise.all(
|
|
63
|
+
bindings.map(async (binding) => {
|
|
64
|
+
const definition = targetDefinition(binding.className, binding.classOrigin)
|
|
65
|
+
const result = await runAstraleJson<RawQueryResult>(
|
|
66
|
+
[
|
|
67
|
+
'query',
|
|
68
|
+
'--definition',
|
|
69
|
+
definition,
|
|
70
|
+
'--limit',
|
|
71
|
+
String(TARGET_LIMIT + 1),
|
|
72
|
+
'--json',
|
|
73
|
+
'-i',
|
|
74
|
+
instance,
|
|
75
|
+
],
|
|
76
|
+
timeoutMs,
|
|
77
|
+
decodeQueryResult,
|
|
78
|
+
)
|
|
79
|
+
return { binding, result }
|
|
80
|
+
}),
|
|
81
|
+
)
|
|
82
|
+
const successes = queried.filter(
|
|
83
|
+
(item) => item.result.ok && Array.isArray(item.result.data?.graph?.nodes),
|
|
84
|
+
)
|
|
85
|
+
if (successes.length === 0) {
|
|
86
|
+
const reason = queried.map((item) => item.result.detail).find(Boolean)
|
|
87
|
+
return {
|
|
88
|
+
status: 'unavailable',
|
|
89
|
+
items: [],
|
|
90
|
+
selected: null,
|
|
91
|
+
stale: null,
|
|
92
|
+
truncated: false,
|
|
93
|
+
reason: reason || 'The active instance could not be queried for view targets.',
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const byId = new Map<string, ViewTargetCandidate>()
|
|
98
|
+
let truncated = false
|
|
99
|
+
for (const { binding, result } of successes) {
|
|
100
|
+
const rows = result.data?.graph?.nodes ?? []
|
|
101
|
+
if (rows.length > TARGET_LIMIT) truncated = true
|
|
102
|
+
for (const row of rows.slice(0, TARGET_LIMIT)) {
|
|
103
|
+
const target = targetFromRow(row, binding.className, binding.classOrigin)
|
|
104
|
+
if (target) byId.set(target.id, target)
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
const items = [...byId.values()].sort(
|
|
108
|
+
(a, b) => a.label.localeCompare(b.label) || a.className.localeCompare(b.className),
|
|
109
|
+
)
|
|
110
|
+
const remembered = readRememberedTarget(root, instance, view.slug)
|
|
111
|
+
return {
|
|
112
|
+
status: 'available',
|
|
113
|
+
items,
|
|
114
|
+
...reconcileRememberedTarget(remembered, items),
|
|
115
|
+
truncated,
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export function targetDefinition(className: string, classOrigin: string): string {
|
|
120
|
+
return `/:${assertOrigin(classOrigin)}:class.${assertSchemaName(className)}`
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export interface ViewDefinitionBinding {
|
|
124
|
+
className: string
|
|
125
|
+
classOrigin: string
|
|
126
|
+
kind: 'class'
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/** Preserve exact canonical View target coordinates. */
|
|
130
|
+
export function viewDefinitionBindings(
|
|
131
|
+
origin: string,
|
|
132
|
+
view: ViewInfo,
|
|
133
|
+
bundle: StudioSchemaBundle | null,
|
|
134
|
+
): ViewDefinitionBinding[] {
|
|
135
|
+
const target = bundle?.ir?.views?.[view.slug]?.target
|
|
136
|
+
if (target) {
|
|
137
|
+
if (target.kind === 'domain') return []
|
|
138
|
+
return uniqueViewBindings(
|
|
139
|
+
target.definitions.flatMap((definition) =>
|
|
140
|
+
definition.kind === 'class'
|
|
141
|
+
? [
|
|
142
|
+
{
|
|
143
|
+
className: definition.name,
|
|
144
|
+
classOrigin: definition.origin,
|
|
145
|
+
kind: 'class' as const,
|
|
146
|
+
},
|
|
147
|
+
]
|
|
148
|
+
: [],
|
|
149
|
+
),
|
|
150
|
+
)
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const names = Array.isArray(view.viewFor) ? view.viewFor : view.viewFor ? [view.viewFor] : []
|
|
154
|
+
const ir = bundle?.ir
|
|
155
|
+
if (!ir) {
|
|
156
|
+
return uniqueViewBindings(
|
|
157
|
+
names.map((className) => ({ className, classOrigin: origin, kind: 'class' })),
|
|
158
|
+
)
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return uniqueViewBindings(
|
|
162
|
+
names.flatMap((className) => {
|
|
163
|
+
const local: ViewDefinitionBinding[] = []
|
|
164
|
+
const localClass = ir.classes[className]
|
|
165
|
+
if (localClass) {
|
|
166
|
+
local.push({
|
|
167
|
+
className,
|
|
168
|
+
classOrigin: localClass.ref?.origin ?? localClass.origin ?? ir.domain ?? origin,
|
|
169
|
+
kind: 'class',
|
|
170
|
+
})
|
|
171
|
+
}
|
|
172
|
+
const imported = Object.keys(ir.importsByKey).flatMap((key) => {
|
|
173
|
+
const binding = viewBindingFromDefinitionKey(key)
|
|
174
|
+
return binding?.className === className ? [binding] : []
|
|
175
|
+
})
|
|
176
|
+
if (imported.length > 0) return [...local, ...imported]
|
|
177
|
+
|
|
178
|
+
return local.length > 0 ? local : [{ className, classOrigin: origin, kind: 'class' }]
|
|
179
|
+
}),
|
|
180
|
+
)
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
function viewBindingFromDefinitionKey(key: string): ViewDefinitionBinding | null {
|
|
184
|
+
const separator = key.lastIndexOf(':')
|
|
185
|
+
if (separator <= 0) return null
|
|
186
|
+
const classOrigin = key.slice(0, separator)
|
|
187
|
+
const ref = key.slice(separator + 1)
|
|
188
|
+
const match = /^class\.([A-Za-z_$][\w$]*)$/.exec(ref)
|
|
189
|
+
if (!match) return null
|
|
190
|
+
return {
|
|
191
|
+
className: match[1]!,
|
|
192
|
+
classOrigin,
|
|
193
|
+
kind: 'class',
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
function uniqueViewBindings(bindings: ViewDefinitionBinding[]): ViewDefinitionBinding[] {
|
|
198
|
+
const unique = new Map<string, ViewDefinitionBinding>()
|
|
199
|
+
for (const binding of bindings) {
|
|
200
|
+
const key = `${binding.classOrigin}:${binding.kind}.${binding.className}`
|
|
201
|
+
if (!unique.has(key)) unique.set(key, binding)
|
|
202
|
+
}
|
|
203
|
+
return [...unique.values()]
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
function assertOrigin(value: string): string {
|
|
207
|
+
if (!/^[a-z0-9][a-z0-9.-]*$/i.test(value)) throw new Error(`Invalid domain origin: ${value}`)
|
|
208
|
+
return value
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
function assertSchemaName(value: string): string {
|
|
212
|
+
if (!/^[A-Za-z_$][\w$]*$/.test(value)) throw new Error(`Invalid class name: ${value}`)
|
|
213
|
+
return value
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
async function runAstraleJson<T>(
|
|
217
|
+
args: string[],
|
|
218
|
+
timeoutMs: number,
|
|
219
|
+
decoder: StudioCliDecoder<T>,
|
|
220
|
+
): Promise<AstraleResult<T>> {
|
|
221
|
+
return runStudioCliJson(args, decoder, { timeoutMs })
|
|
222
|
+
}
|
|
@@ -10,27 +10,27 @@ const handle: DomainHandle = {
|
|
|
10
10
|
id: 'current',
|
|
11
11
|
root: '/workspace/current',
|
|
12
12
|
configFile: '/workspace/current/astrale.config.ts',
|
|
13
|
-
|
|
13
|
+
applicationFile: '/workspace/current/application.ts',
|
|
14
14
|
schemaDirName: 'schema',
|
|
15
15
|
schemaDir: '/workspace/current/schema',
|
|
16
16
|
schemaIndex: '/workspace/current/schema/index.ts',
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
test('watches current
|
|
20
|
-
expect(ANATOMY_PATHS).toContain('
|
|
19
|
+
test('watches current Application, Runtime, and vertical authoring roots', () => {
|
|
20
|
+
expect(ANATOMY_PATHS).toContain('application.ts')
|
|
21
|
+
expect(ANATOMY_PATHS).toContain('runtime.ts')
|
|
21
22
|
expect(ANATOMY_PATHS).toContain('ui')
|
|
22
|
-
expect(ANATOMY_PATHS).toContain('
|
|
23
|
+
expect(ANATOMY_PATHS).toContain('providers')
|
|
23
24
|
expect(ANATOMY_PATHS).toContain('queries')
|
|
24
25
|
expect(ANATOMY_PATHS).toContain('workflows')
|
|
25
|
-
expect(DOMAIN_SET_TRIGGER_FILES.has('
|
|
26
|
-
expect(DOMAIN_SET_TRIGGER_FILES.has('
|
|
26
|
+
expect(DOMAIN_SET_TRIGGER_FILES.has('application.ts')).toBe(true)
|
|
27
|
+
expect(DOMAIN_SET_TRIGGER_FILES.has('schema.ts')).toBe(true)
|
|
27
28
|
})
|
|
28
29
|
|
|
29
|
-
test('
|
|
30
|
-
expect(affectsBundle(handle, join(handle.root, '
|
|
31
|
-
expect(affectsBundle(handle, join(handle.root, '
|
|
30
|
+
test('Application, Runtime, Action, and Workflow changes invalidate the schema bundle', () => {
|
|
31
|
+
expect(affectsBundle(handle, join(handle.root, 'application.ts'))).toBe(true)
|
|
32
|
+
expect(affectsBundle(handle, join(handle.root, 'runtime.ts'))).toBe(true)
|
|
32
33
|
expect(affectsBundle(handle, join(handle.root, 'actions', 'risk', 'create.ts'))).toBe(true)
|
|
33
|
-
expect(affectsBundle(handle, join(handle.root, '
|
|
34
|
-
expect(affectsBundle(handle, join(handle.root, 'handlers', 'create.ts'))).toBe(true)
|
|
34
|
+
expect(affectsBundle(handle, join(handle.root, 'workflows', 'user', 'ensure.ts'))).toBe(true)
|
|
35
35
|
expect(affectsBundle(handle, join(handle.root, 'views', 'routes.ts'))).toBe(false)
|
|
36
36
|
})
|
package/studio/server/watch.ts
CHANGED
|
@@ -19,10 +19,9 @@ export const ANATOMY_PATHS = [...ANATOMY_GLOBS.files, ...ANATOMY_GLOBS.dirs]
|
|
|
19
19
|
// part of the schema bundle cache even though they are outside schema/ itself.
|
|
20
20
|
const BUNDLE_SOURCE_DIRS = new Set([
|
|
21
21
|
'actions',
|
|
22
|
-
'
|
|
23
|
-
'functions',
|
|
24
|
-
'handlers',
|
|
22
|
+
'integrations',
|
|
25
23
|
'mutations',
|
|
24
|
+
'providers',
|
|
26
25
|
'queries',
|
|
27
26
|
'rules',
|
|
28
27
|
'runtime',
|
|
@@ -42,7 +41,12 @@ function ignored(p: string): boolean {
|
|
|
42
41
|
export function affectsBundle(handle: DomainHandle, path: string): boolean {
|
|
43
42
|
const rel = relative(handle.root, path).split('\\').join('/')
|
|
44
43
|
const topLevel = rel.split('/')[0]
|
|
45
|
-
return
|
|
44
|
+
return (
|
|
45
|
+
path === handle.applicationFile ||
|
|
46
|
+
rel === 'runtime.ts' ||
|
|
47
|
+
rel.endsWith('/runtime.ts') ||
|
|
48
|
+
BUNDLE_SOURCE_DIRS.has(topLevel)
|
|
49
|
+
)
|
|
46
50
|
}
|
|
47
51
|
|
|
48
52
|
export function watchDomain(handle: DomainHandle): () => void {
|
|
@@ -68,7 +72,7 @@ export function watchDomain(handle: DomainHandle): () => void {
|
|
|
68
72
|
broadcast({
|
|
69
73
|
type: 'schema-diff',
|
|
70
74
|
domainId: handle.id,
|
|
71
|
-
|
|
75
|
+
renderFingerprint: b?.renderFingerprint ?? 'sha-none',
|
|
72
76
|
})
|
|
73
77
|
broadcast({ type: 'anatomy-diff', domainId: handle.id })
|
|
74
78
|
}, 150)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { expect, test } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { buildCatalog } from './catalog'
|
|
4
|
+
|
|
5
|
+
test('workspace catalog contains only discovered domains and never simulated import authorities', () => {
|
|
6
|
+
const catalog = buildCatalog([
|
|
7
|
+
{ origin: 'issues.example.dev', id: 'issues' },
|
|
8
|
+
{ origin: 'billing.example.dev', id: 'billing-service' },
|
|
9
|
+
])
|
|
10
|
+
|
|
11
|
+
expect(catalog.map(({ origin, kind }) => ({ origin, kind }))).toEqual([
|
|
12
|
+
{ origin: 'kernel.astrale.ai', kind: 'kernel' },
|
|
13
|
+
{ origin: 'issues.example.dev', kind: 'local' },
|
|
14
|
+
{ origin: 'billing.example.dev', kind: 'local' },
|
|
15
|
+
])
|
|
16
|
+
expect(catalog.some((entry) => entry.kind === 'external')).toBe(false)
|
|
17
|
+
})
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Display metadata for domains Studio has actually discovered in its workspace.
|
|
3
|
+
* This is not an import registry or an authority for available domains. Until a
|
|
4
|
+
* real registry exists, it contains only the required Kernel and local workspace
|
|
5
|
+
* domains; Studio must not advertise simulated external services as importable.
|
|
6
|
+
*/
|
|
7
|
+
import type { DomainCatalogEntry } from '../../shared/types'
|
|
8
|
+
|
|
9
|
+
const icon = (inner: string) =>
|
|
10
|
+
`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">${inner}</svg>`
|
|
11
|
+
|
|
12
|
+
const HEXAGON = icon(
|
|
13
|
+
'<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><path d="m7.5 4.27 9 5.15"/><path d="m3.3 7 8.7 5 8.7-5"/><path d="M12 22V12"/>',
|
|
14
|
+
)
|
|
15
|
+
const BOXES = icon(
|
|
16
|
+
'<path d="M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"/><path d="m7 16.5-4.74-2.85"/><path d="m7 16.5 5-3"/><path d="M7 16.5v5.17"/><path d="M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"/><path d="m17 16.5-5-3"/><path d="m17 16.5 4.74-2.85"/><path d="M17 16.5v5.17"/><path d="M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"/><path d="M12 8 7.26 5.15"/><path d="m12 8 4.74-2.85"/><path d="M12 13.5V8"/>',
|
|
17
|
+
)
|
|
18
|
+
const KERNEL: DomainCatalogEntry = {
|
|
19
|
+
origin: 'kernel.astrale.ai',
|
|
20
|
+
name: 'Kernel',
|
|
21
|
+
kind: 'kernel',
|
|
22
|
+
description: 'The typed graph every domain is built on.',
|
|
23
|
+
icon: HEXAGON,
|
|
24
|
+
required: true,
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
function humanize(slug: string): string {
|
|
28
|
+
return slug
|
|
29
|
+
.replace(/[-_]+/g, ' ')
|
|
30
|
+
.replace(/\b\w/g, (c) => c.toUpperCase())
|
|
31
|
+
.trim()
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function buildCatalog(locals: { origin: string; id: string }[]): DomainCatalogEntry[] {
|
|
35
|
+
const localEntries: DomainCatalogEntry[] = locals.map((d) => ({
|
|
36
|
+
origin: d.origin,
|
|
37
|
+
name: humanize(d.id),
|
|
38
|
+
kind: 'local',
|
|
39
|
+
description: 'A domain in this workspace.',
|
|
40
|
+
icon: BOXES,
|
|
41
|
+
}))
|
|
42
|
+
return [KERNEL, ...localEntries]
|
|
43
|
+
}
|
|
@@ -11,7 +11,7 @@ afterEach(() => {
|
|
|
11
11
|
while (roots.length) rmSync(roots.pop()!, { recursive: true, force: true })
|
|
12
12
|
})
|
|
13
13
|
|
|
14
|
-
test('annotates the schema definition behind a current barrel', () => {
|
|
14
|
+
test('workspace creation annotates the schema definition behind a current barrel', () => {
|
|
15
15
|
const root = mkdtempSync(join(tmpdir(), 'studio-create-origin-'))
|
|
16
16
|
roots.push(root)
|
|
17
17
|
mkdirSync(join(root, 'schema', 'application'), { recursive: true })
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Scaffold a brand-new domain into the workspace and bring it
|
|
3
3
|
* online. This is the studio's ONE write that ADDS a domain (every other state
|
|
4
4
|
* module operates on an existing one).
|
|
5
5
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Best-effort workspace Git enrichment for change tracking. The fixtures are not
|
|
3
3
|
* git repos, so EVERY function here degrades gracefully and NEVER throws. The
|
|
4
4
|
* baseline (baseline.ts) is the primary tracker; git only enriches when present.
|
|
5
5
|
*/
|