Skip to content

Commit a172bc6

Browse files
committed
Published using @Stream44 Studio
Signed-off-by: Christoph <christoph@christoph.diy>
1 parent b22c99a commit a172bc6

17 files changed

Lines changed: 275 additions & 53 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<td><a href="https://Stream44.Studio"><img src=".o/stream44.studio/assets/Icon-v1.svg" width="42" height="42"></a></td>
44
<td><strong><a href="https://Stream44.Studio">Stream44 Studio</a></strong><br/>Open Development Project</td>
55
<td>Preview release for community feedback.<br/>Get in touch on <a href="https://discord.gg/9eBcQXEJAN">discord</a>.</td>
6-
<td>Hand Designed<br/><b>AI Coded Alpha</a></td>
6+
<td>Designed by Hand<br/><b>AI assisted Code</a></td>
77
</tr>
88
</table>
99

caps/HomeRegistry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export async function capsule({
198198
const { readdir, readFile } = await import('fs/promises')
199199
const { join } = await import('path')
200200
const rootDir = await this.rootDir
201-
const keyDir = join(rootDir, '@t44.sh~t44~structs~WorkspaceKey')
201+
const keyDir = join(rootDir, '@stream44.studio~t44~structs~WorkspaceKey')
202202
try {
203203
const files = await readdir(keyDir)
204204
const keys: Array<{ name: string; did: string; createdAt?: string }> = []
@@ -250,7 +250,7 @@ export async function capsule({
250250
const { readdir, readFile } = await import('fs/promises')
251251
const { join } = await import('path')
252252
const rootDir = await this.rootDir
253-
const rackDir = join(rootDir, '@t44.sh~t44~structs~ProjectRack')
253+
const rackDir = join(rootDir, '@stream44.studio~t44~structs~ProjectRack')
254254
try {
255255
const files = await readdir(rackDir)
256256
const racks: Array<{ name: string; did: string; createdAt?: string }> = []

caps/ProjectDeployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function capsule({
6565
const workspaceConfig = await this.$WorkspaceConfig.config
6666
const getProjectionDir = (capsuleName: string) => join(
6767
workspaceConfig.rootDir,
68-
'.~o/workspace.foundation/@t44.sh~t44~caps~ProjectDeployment',
68+
'.~o/workspace.foundation/@stream44.studio~t44~caps~ProjectDeployment',
6969
capsuleName.replace(/\//g, '~')
7070
)
7171

caps/ProjectPublishing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export async function capsule({
184184
const publishingApi = {
185185
getProjectionDir: (capsuleName: string) => join(
186186
this.WorkspaceConfig.workspaceRootDir,
187-
'.~o/workspace.foundation/@t44.sh~t44~caps~ProjectPublishing',
187+
'.~o/workspace.foundation/@stream44.studio~t44~caps~ProjectPublishing',
188188
capsuleName.replace(/\//g, '~')
189189
),
190190
}

caps/ProjectPulling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export async function capsule({
189189
const pullingApi = {
190190
getProjectionDir: (capsuleName: string) => join(
191191
this.WorkspaceConfig.workspaceRootDir,
192-
'.~o/workspace.foundation/@t44.sh~t44~caps~ProjectPulling',
192+
'.~o/workspace.foundation/@stream44.studio~t44~caps~ProjectPulling',
193193
capsuleName.replace(/\//g, '~')
194194
),
195195
}

caps/ProjectRepository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export async function capsule({
3030
const normalizedUri = repoUri.replace(/[\/]/g, '~')
3131
return join(
3232
this.WorkspaceConfig.workspaceRootDir,
33-
'.~o/workspace.foundation/@t44.sh~t44~caps~ProjectRepository/stage',
33+
'.~o/workspace.foundation/@stream44.studio~t44~caps~ProjectRepository/stage',
3434
normalizedUri
3535
)
3636
}

caps/WorkspaceConfig.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$schema: ../../../../.~o/workspace.foundation/@t44.sh~t44~caps~JsonSchemas/@t44.sh~t44~structs~WorkspaceConfigFile.json
1+
$schema: ../../../../.~o/workspace.foundation/@stream44.studio~t44~caps~JsonSchemas/@stream44.studio~t44~structs~WorkspaceConfigFile.json
22
extends:
33
- ./WorkspaceShell.yaml
44
"#@stream44.studio/t44/structs/WorkspaceCliConfig":

caps/WorkspaceConfigFile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ async function writeConfigMetadataCache(
696696
workspaceRootDir: string
697697
): Promise<void> {
698698
const { mkdir, writeFile } = await import('fs/promises')
699-
const metaCacheDir = join(workspaceRootDir, '.~o', 'workspace.foundation', '@t44.sh~t44~caps~WorkspaceEntityFact', '@t44.sh~t44~structs~WorkspaceConfigFileMeta')
699+
const metaCacheDir = join(workspaceRootDir, '.~o', 'workspace.foundation', '@stream44.studio~t44~caps~WorkspaceEntityFact', '@stream44.studio~t44~structs~WorkspaceConfigFileMeta')
700700

701701
await mkdir(metaCacheDir, { recursive: true })
702702

@@ -847,7 +847,7 @@ function resolveSchemaRef(dataFilePath: string, capsuleName: string, workspaceRo
847847
workspaceRootDir,
848848
'.~o',
849849
'workspace.foundation',
850-
'@t44.sh~t44~caps~JsonSchemas'
850+
'@stream44.studio~t44~caps~JsonSchemas'
851851
)
852852
const schemaFilename = capsuleName.replace(/\//g, '~') + '.json'
853853
const schemaFilePath = join(jsonSchemaDir, schemaFilename)

caps/WorkspaceConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export async function capsule({
7777
const workspaceConfigStruct = workspaceConfig?.['#@stream44.studio/t44/structs/WorkspaceConfig'] || {}
7878
const workspaceName = workspaceConfigStruct.name
7979
const connectionType = this.capsuleName.replace(/\//g, '~')
80-
return join(registryDir, '@t44.sh~t44~caps~WorkspaceConnection', workspaceName, `${connectionType}.json`)
80+
return join(registryDir, '@stream44.studio~t44~caps~WorkspaceConnection', workspaceName, `${connectionType}.json`)
8181
}
8282
},
8383
getRelativeFilepath: {

caps/WorkspaceModel.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ export async function capsule({
4747
// Build resolver context with all required paths
4848
const registryDir = await this.Home.registryDir
4949
const foundationDir = join(workspaceRootDir, '.~o', 'workspace.foundation')
50-
const homeRegistryConnectionsDir = join(registryDir, '@t44.sh~t44~caps~WorkspaceConnection', workspaceName)
50+
const homeRegistryConnectionsDir = join(registryDir, '@stream44.studio~t44~caps~WorkspaceConnection', workspaceName)
5151

5252
const resolver = Resolver({
5353
workspaceRootDir,
5454
workspaceName,
55-
schemasDir: join(foundationDir, '@t44.sh~t44~caps~JsonSchemas'),
56-
factsDir: join(foundationDir, '@t44.sh~t44~caps~WorkspaceEntityFact'),
57-
metaCacheDir: join(foundationDir, '@t44.sh~t44~caps~WorkspaceEntityFact', '@t44.sh~t44~structs~WorkspaceConfigFileMeta'),
55+
schemasDir: join(foundationDir, '@stream44.studio~t44~caps~JsonSchemas'),
56+
factsDir: join(foundationDir, '@stream44.studio~t44~caps~WorkspaceEntityFact'),
57+
metaCacheDir: join(foundationDir, '@stream44.studio~t44~caps~WorkspaceEntityFact', '@stream44.studio~t44~structs~WorkspaceConfigFileMeta'),
5858
homeRegistryConnectionsDir
5959
})
6060

@@ -100,7 +100,7 @@ export async function capsule({
100100

101101
// Build schema lookup: entity name (without #) → schema file path
102102
const schemaMap = new Map<string, string>()
103-
const schemasDir = join(workspaceRootDir, '.~o', 'workspace.foundation', '@t44.sh~t44~caps~JsonSchemas')
103+
const schemasDir = join(workspaceRootDir, '.~o', 'workspace.foundation', '@stream44.studio~t44~caps~JsonSchemas')
104104
for (const [schemaId] of schemas) {
105105
const entityName = schemaId.replace(/\.v\d+$/, '')
106106
// Schema files don't include version in filename, only in $id

0 commit comments

Comments
 (0)