spawnfile 0.1.0 → 0.1.2
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 +80 -397
- package/dist/cli/modelCommands.d.ts +3 -0
- package/dist/cli/modelCommands.js +68 -0
- package/dist/cli/runCli.d.ts +6 -1
- package/dist/cli/runCli.js +12 -67
- package/dist/cli/runtimeCommands.d.ts +3 -0
- package/dist/cli/runtimeCommands.js +20 -0
- package/dist/cli/surfaceCommands.d.ts +3 -0
- package/dist/cli/surfaceCommands.js +98 -0
- package/dist/compiler/agentSurfaces.js +51 -5
- package/dist/compiler/buildCompilePlan.js +36 -40
- package/dist/compiler/buildCompilePlanRuntime.d.ts +14 -0
- package/dist/compiler/buildCompilePlanRuntime.js +39 -0
- package/dist/compiler/buildCompilePlanTeams.d.ts +5 -0
- package/dist/compiler/buildCompilePlanTeams.js +38 -0
- package/dist/compiler/compilePlanHelpers.js +4 -1
- package/dist/compiler/compileProject.js +62 -13
- package/dist/compiler/compileProjectSupport.d.ts +17 -0
- package/dist/compiler/compileProjectSupport.js +136 -0
- package/dist/compiler/containerArtifacts.d.ts +6 -1
- package/dist/compiler/containerArtifacts.js +26 -4
- package/dist/compiler/containerArtifactsPlans.js +16 -1
- package/dist/compiler/containerArtifactsRender.d.ts +4 -2
- package/dist/compiler/containerArtifactsRender.js +21 -126
- package/dist/compiler/containerArtifactsTypes.d.ts +7 -0
- package/dist/compiler/containerEntrypointRender.d.ts +12 -0
- package/dist/compiler/containerEntrypointRender.js +186 -0
- package/dist/compiler/index.d.ts +2 -0
- package/dist/compiler/index.js +2 -0
- package/dist/compiler/interactiveSurfaceScopes.d.ts +2 -0
- package/dist/compiler/interactiveSurfaceScopes.js +21 -0
- package/dist/compiler/moltnetArtifacts.d.ts +27 -0
- package/dist/compiler/moltnetArtifacts.js +204 -0
- package/dist/compiler/moltnetBinaries.d.ts +4 -0
- package/dist/compiler/moltnetBinaries.js +103 -0
- package/dist/compiler/moltnetClientConfig.d.ts +11 -0
- package/dist/compiler/moltnetClientConfig.js +89 -0
- package/dist/compiler/moltnetRepresentativeResolution.d.ts +16 -0
- package/dist/compiler/moltnetRepresentativeResolution.js +86 -0
- package/dist/compiler/moltnetResolution.d.ts +3 -0
- package/dist/compiler/moltnetResolution.js +201 -0
- package/dist/compiler/runProject.js +1 -1
- package/dist/compiler/surfaceDefinitions.d.ts +55 -0
- package/dist/compiler/surfaceDefinitions.js +204 -0
- package/dist/compiler/teamContextHelpers.d.ts +18 -0
- package/dist/compiler/teamContextHelpers.js +112 -0
- package/dist/compiler/teamContextSupport.d.ts +4 -0
- package/dist/compiler/teamContextSupport.js +264 -0
- package/dist/compiler/teamContextSupport.testHelpers.d.ts +16 -0
- package/dist/compiler/teamContextSupport.testHelpers.js +68 -0
- package/dist/compiler/teamContextTypes.d.ts +28 -0
- package/dist/compiler/teamRoster.d.ts +12 -0
- package/dist/compiler/teamRoster.js +48 -0
- package/dist/compiler/teamRosterEntries.d.ts +13 -0
- package/dist/compiler/teamRosterEntries.js +230 -0
- package/dist/compiler/teamRosterTypes.d.ts +45 -0
- package/dist/compiler/types.d.ts +72 -6
- package/dist/compiler/updateProjectRuntime.d.ts +9 -0
- package/dist/compiler/updateProjectRuntime.js +67 -0
- package/dist/compiler/updateProjectSurfaces.d.ts +8 -0
- package/dist/compiler/updateProjectSurfaces.js +106 -0
- package/dist/manifest/loadManifest.js +4 -4
- package/dist/manifest/renderSpawnfile.js +74 -8
- package/dist/manifest/scaffold.js +1 -3
- package/dist/manifest/schemas.d.ts +227 -17
- package/dist/manifest/schemas.js +62 -20
- package/dist/manifest/surfaceSchemas.d.ts +154 -0
- package/dist/manifest/surfaceSchemas.js +77 -5
- package/dist/runtime/common.js +3 -0
- package/dist/runtime/openclaw/adapter.js +38 -5
- package/dist/runtime/openclaw/moltnet.d.ts +12 -0
- package/dist/runtime/openclaw/moltnet.js +124 -0
- package/dist/runtime/openclaw/surfaces.js +3 -0
- package/dist/runtime/picoclaw/adapter.js +27 -8
- package/dist/runtime/picoclaw/pico.d.ts +2 -0
- package/dist/runtime/picoclaw/pico.js +2 -0
- package/dist/runtime/picoclaw/surfaces.js +11 -0
- package/dist/runtime/tinyclaw/adapter.js +22 -8
- package/dist/runtime/tinyclaw/runAuth.js +28 -1
- package/dist/runtime/tinyclaw/surfaces.js +8 -0
- package/dist/runtime/types.d.ts +11 -0
- package/package.json +10 -3
- package/runtimes.yaml +4 -4
- package/dist/.env.example +0 -5
- package/dist/Dockerfile +0 -21
- package/dist/compiler/discordSurface.d.ts +0 -4
- package/dist/compiler/discordSurface.js +0 -28
- package/dist/container/rootfs/var/lib/spawnfile/instances/picoclaw/agent-assistant/picoclaw/config.json +0 -16
- package/dist/container/rootfs/var/lib/spawnfile/instances/picoclaw/agent-assistant/picoclaw/workspace/AGENTS.md +0 -1
- package/dist/e2e/cli.js +0 -40
- package/dist/e2e/dockerAuth.d.ts +0 -18
- package/dist/e2e/dockerAuth.js +0 -212
- package/dist/e2e/fixtures.d.ts +0 -2
- package/dist/e2e/fixtures.js +0 -49
- package/dist/e2e/index.d.ts +0 -4
- package/dist/e2e/index.js +0 -4
- package/dist/e2e/runtimePrompts.d.ts +0 -13
- package/dist/e2e/runtimePrompts.js +0 -132
- package/dist/e2e/scenarios.d.ts +0 -3
- package/dist/e2e/scenarios.js +0 -84
- package/dist/e2e/types.d.ts +0 -35
- package/dist/entrypoint.sh +0 -71
- package/dist/runtimes/picoclaw/agents/assistant/config.json +0 -16
- package/dist/runtimes/picoclaw/agents/assistant/workspace/AGENTS.md +0 -1
- package/dist/spawnfile-report.json +0 -71
- /package/dist/{e2e/cli.d.ts → compiler/teamContextTypes.js} +0 -0
- /package/dist/{e2e/types.js → compiler/teamRosterTypes.js} +0 -0
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"container": {
|
|
3
|
-
"dockerfile": "Dockerfile",
|
|
4
|
-
"entrypoint": "entrypoint.sh",
|
|
5
|
-
"env_example": ".env.example",
|
|
6
|
-
"model_secrets_required": [
|
|
7
|
-
"ANTHROPIC_API_KEY"
|
|
8
|
-
],
|
|
9
|
-
"ports": [
|
|
10
|
-
18790
|
|
11
|
-
],
|
|
12
|
-
"runtime_instances": [
|
|
13
|
-
{
|
|
14
|
-
"config_path": "/var/lib/spawnfile/instances/picoclaw/agent-assistant/picoclaw/config.json",
|
|
15
|
-
"home_path": "/var/lib/spawnfile/instances/picoclaw/agent-assistant/picoclaw",
|
|
16
|
-
"id": "agent-assistant",
|
|
17
|
-
"model_secrets_required": [
|
|
18
|
-
"ANTHROPIC_API_KEY"
|
|
19
|
-
],
|
|
20
|
-
"runtime": "picoclaw"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"runtime_homes": [
|
|
24
|
-
"/var/lib/spawnfile/instances/picoclaw/agent-assistant/picoclaw"
|
|
25
|
-
],
|
|
26
|
-
"runtime_secrets_required": [],
|
|
27
|
-
"runtimes_installed": [
|
|
28
|
-
"picoclaw"
|
|
29
|
-
],
|
|
30
|
-
"secrets_required": [
|
|
31
|
-
"ANTHROPIC_API_KEY"
|
|
32
|
-
]
|
|
33
|
-
},
|
|
34
|
-
"diagnostics": [],
|
|
35
|
-
"nodes": [
|
|
36
|
-
{
|
|
37
|
-
"capabilities": [
|
|
38
|
-
{
|
|
39
|
-
"key": "docs.system",
|
|
40
|
-
"message": "",
|
|
41
|
-
"outcome": "supported"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"key": "execution.model",
|
|
45
|
-
"message": "",
|
|
46
|
-
"outcome": "supported"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"key": "execution.workspace",
|
|
50
|
-
"message": "",
|
|
51
|
-
"outcome": "supported"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"key": "execution.sandbox",
|
|
55
|
-
"message": "",
|
|
56
|
-
"outcome": "supported"
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"diagnostics": [],
|
|
60
|
-
"id": "agent:assistant",
|
|
61
|
-
"kind": "agent",
|
|
62
|
-
"output_dir": "runtimes/picoclaw/agents/assistant",
|
|
63
|
-
"runtime": "picoclaw",
|
|
64
|
-
"runtime_ref": "v0.2.3",
|
|
65
|
-
"runtime_status": "active",
|
|
66
|
-
"source": "/tmp/spawnfile-e2e/picoclaw-anthropic/Spawnfile"
|
|
67
|
-
}
|
|
68
|
-
],
|
|
69
|
-
"root": "/tmp/spawnfile-e2e/picoclaw-anthropic/Spawnfile",
|
|
70
|
-
"spawnfile_version": "0.1"
|
|
71
|
-
}
|
|
File without changes
|
|
File without changes
|