@agentxm/client-core 0.19.2 → 0.19.3
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/dist/src/unstable/agent-capabilities/derive.d.ts +9 -9
- package/dist/src/unstable/app-error/builders.js +2 -2
- package/dist/src/unstable/app-error/builders.js.map +1 -1
- package/dist/src/unstable/commands/operations/publish.d.ts +2 -2
- package/dist/src/unstable/commands/operations/publish.js +3 -3
- package/dist/src/unstable/commands/operations/publish.js.map +1 -1
- package/dist/src/unstable/commands/operations/shared-command-helpers.d.ts +16 -15
- package/dist/src/unstable/commands/operations/shared-command-helpers.d.ts.map +1 -1
- package/dist/src/unstable/extensions/common.d.ts.map +1 -1
- package/dist/src/unstable/extensions/common.js +4 -2
- package/dist/src/unstable/extensions/common.js.map +1 -1
- package/dist/src/unstable/install-meta/install-meta.d.ts +4 -4
- package/dist/src/unstable/install-meta/install-meta.d.ts.map +1 -1
- package/dist/src/unstable/lint/cli.d.ts +1 -1
- package/dist/src/unstable/lint/cli.js +1 -1
- package/dist/src/unstable/lockfile/lockfile.d.ts +733 -760
- package/dist/src/unstable/lockfile/lockfile.d.ts.map +1 -1
- package/dist/src/unstable/mcps/operations/publish.d.ts +2 -2
- package/dist/src/unstable/mcps/operations/publish.js +3 -3
- package/dist/src/unstable/mcps/operations/publish.js.map +1 -1
- package/dist/src/unstable/packaging/reader-io.d.ts +2 -2
- package/dist/src/unstable/packs/operations/publish.d.ts +2 -2
- package/dist/src/unstable/packs/operations/publish.js +3 -3
- package/dist/src/unstable/packs/operations/publish.js.map +1 -1
- package/dist/src/unstable/plan/index.d.ts +1 -2
- package/dist/src/unstable/plan/index.d.ts.map +1 -1
- package/dist/src/unstable/plan/index.js +1 -2
- package/dist/src/unstable/plan/index.js.map +1 -1
- package/dist/src/unstable/registry/__generated__/registry-client.js.map +1 -1
- package/dist/src/unstable/registry/admin-client.d.ts +42 -42
- package/dist/src/unstable/registry/admin-client.d.ts.map +1 -1
- package/dist/src/unstable/registry/local-client.d.ts.map +1 -1
- package/dist/src/unstable/registry/local-client.js +0 -4
- package/dist/src/unstable/registry/local-client.js.map +1 -1
- package/dist/src/unstable/settings/schema.d.ts.map +1 -1
- package/dist/src/unstable/settings/schema.js +27 -9
- package/dist/src/unstable/settings/schema.js.map +1 -1
- package/dist/src/unstable/skills/operations/publish.d.ts +2 -2
- package/dist/src/unstable/skills/operations/publish.js +3 -3
- package/dist/src/unstable/skills/operations/publish.js.map +1 -1
- package/dist/src/unstable/source-resolution/providers/azurerepos/scp.d.ts +9 -8
- package/dist/src/unstable/source-resolution/providers/azurerepos/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/azurerepos/url.d.ts +9 -9
- package/dist/src/unstable/source-resolution/providers/azurerepos/url.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/bitbucket/scp.d.ts +8 -7
- package/dist/src/unstable/source-resolution/providers/bitbucket/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/bitbucket/url.d.ts +8 -8
- package/dist/src/unstable/source-resolution/providers/bitbucket/url.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/github/scp.d.ts +8 -7
- package/dist/src/unstable/source-resolution/providers/github/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/github/url.d.ts +8 -8
- package/dist/src/unstable/source-resolution/providers/github/url.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/gitlab/scp.d.ts +8 -7
- package/dist/src/unstable/source-resolution/providers/gitlab/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/gitlab/url.d.ts +8 -8
- package/dist/src/unstable/source-resolution/providers/gitlab/url.d.ts.map +1 -1
- package/dist/src/unstable/subagents/operations/publish.d.ts +2 -2
- package/dist/src/unstable/subagents/operations/publish.js +3 -3
- package/dist/src/unstable/subagents/operations/publish.js.map +1 -1
- package/dist/src/unstable/telemetry/__generated__/telemetry-client.js.map +1 -1
- package/dist/src/unstable/update-check/update-check.d.ts +4 -4
- package/dist/src/unstable/update-check/update-check.d.ts.map +1 -1
- package/dist/src/unstable/workspace/initialization.d.ts +386 -394
- package/dist/src/unstable/workspace/initialization.d.ts.map +1 -1
- package/dist/src/unstable/workspace/service.d.ts +557 -586
- package/dist/src/unstable/workspace/service.d.ts.map +1 -1
- package/package.json +6 -6
- package/site-content/__generated__/schemas/pack.schema.json +18 -14
- package/site-content/__generated__/schemas/settings.schema.json +99 -36
|
@@ -13,134 +13,132 @@ import { CliRenderer } from "../cli-renderer/index.js";
|
|
|
13
13
|
import type { WorkspaceMutationsOptions } from "./service-interface.js";
|
|
14
14
|
import { type WorkspaceLocation } from "./paths.js";
|
|
15
15
|
export declare const initializeProjectWorkspace: (localDir: string, options: WorkspaceMutationsOptions) => Effect.Effect<{
|
|
16
|
-
readonly
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
readonly fileName?: string;
|
|
24
|
-
readonly gitignoreAliases?: boolean;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
readonly sources?: readonly ({
|
|
28
|
-
readonly name: string;
|
|
29
|
-
readonly type: "github";
|
|
30
|
-
readonly url: URL;
|
|
31
|
-
} | {
|
|
32
|
-
readonly name: string;
|
|
33
|
-
readonly type: "gitlab";
|
|
34
|
-
readonly url: URL;
|
|
35
|
-
} | {
|
|
36
|
-
readonly name: string;
|
|
37
|
-
readonly type: "bitbucket";
|
|
38
|
-
readonly url: URL;
|
|
39
|
-
} | {
|
|
40
|
-
readonly name: string;
|
|
41
|
-
readonly type: "azurerepos";
|
|
42
|
-
readonly url: URL;
|
|
43
|
-
} | {
|
|
44
|
-
readonly name: string;
|
|
45
|
-
readonly type: "registry";
|
|
46
|
-
readonly location: URL;
|
|
47
|
-
})[];
|
|
48
|
-
readonly vars?: {
|
|
49
|
-
readonly [x: string]: string | number | boolean;
|
|
16
|
+
readonly files?: {
|
|
17
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
18
|
+
readonly source: import("effect/Schema").String;
|
|
19
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
20
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
21
|
+
readonly inputs: import("effect/Schema").$Record<import("effect/Schema").String, import("effect/Schema").Union<readonly [import("effect/Schema").String, import("effect/Schema").Number, import("effect/Schema").Boolean]>>;
|
|
22
|
+
}, "Type">;
|
|
50
23
|
};
|
|
51
|
-
readonly
|
|
24
|
+
readonly sources?: readonly (import("effect/Schema").Struct.ReadonlySide<{
|
|
25
|
+
readonly name: import("effect/Schema").String;
|
|
26
|
+
readonly type: import("effect/Schema").Literal<"github">;
|
|
27
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
28
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
29
|
+
readonly name: import("effect/Schema").String;
|
|
30
|
+
readonly type: import("effect/Schema").Literal<"gitlab">;
|
|
31
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
32
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
33
|
+
readonly name: import("effect/Schema").String;
|
|
34
|
+
readonly type: import("effect/Schema").Literal<"bitbucket">;
|
|
35
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
36
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
37
|
+
readonly name: import("effect/Schema").String;
|
|
38
|
+
readonly type: import("effect/Schema").Literal<"azurerepos">;
|
|
39
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
40
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
41
|
+
readonly name: import("effect/Schema").String;
|
|
42
|
+
readonly type: import("effect/Schema").Literal<"registry">;
|
|
43
|
+
readonly location: import("effect/Schema").URLFromString;
|
|
44
|
+
}, "Type">)[];
|
|
45
|
+
readonly mcpServers?: {
|
|
52
46
|
readonly [x: string]: {
|
|
47
|
+
readonly env: {
|
|
48
|
+
readonly [x: string]: string;
|
|
49
|
+
};
|
|
53
50
|
readonly source: string;
|
|
54
51
|
readonly enabled: boolean;
|
|
55
52
|
readonly authored: boolean;
|
|
53
|
+
readonly url?: string | undefined;
|
|
54
|
+
readonly command?: string | undefined;
|
|
55
|
+
readonly headers?: {
|
|
56
|
+
readonly [x: string]: string;
|
|
57
|
+
} | undefined;
|
|
58
|
+
readonly args?: readonly string[] | undefined;
|
|
56
59
|
};
|
|
57
60
|
};
|
|
58
|
-
readonly
|
|
59
|
-
readonly
|
|
61
|
+
readonly hooks?: {
|
|
62
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
63
|
+
readonly source: import("effect/Schema").String;
|
|
64
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
65
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
66
|
+
}, "Type">;
|
|
60
67
|
};
|
|
61
|
-
readonly
|
|
62
|
-
readonly [x: string]: {
|
|
63
|
-
readonly source:
|
|
64
|
-
readonly enabled:
|
|
65
|
-
readonly authored:
|
|
66
|
-
}
|
|
68
|
+
readonly skills?: {
|
|
69
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
70
|
+
readonly source: import("effect/Schema").String;
|
|
71
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
72
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
73
|
+
}, "Type">;
|
|
67
74
|
};
|
|
68
|
-
readonly
|
|
69
|
-
readonly
|
|
75
|
+
readonly subagents?: {
|
|
76
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
77
|
+
readonly source: import("effect/Schema").String;
|
|
78
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
79
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
80
|
+
}, "Type">;
|
|
70
81
|
};
|
|
71
|
-
readonly
|
|
72
|
-
readonly [x: string]: {
|
|
73
|
-
readonly source:
|
|
74
|
-
readonly enabled:
|
|
75
|
-
readonly authored:
|
|
76
|
-
|
|
77
|
-
readonly [x: string]: string | number | boolean;
|
|
78
|
-
};
|
|
79
|
-
};
|
|
82
|
+
readonly commands?: {
|
|
83
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
84
|
+
readonly source: import("effect/Schema").String;
|
|
85
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
86
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
87
|
+
}, "Type">;
|
|
80
88
|
};
|
|
81
89
|
readonly rules?: {
|
|
82
|
-
readonly [x: string]: {
|
|
83
|
-
readonly source:
|
|
84
|
-
readonly enabled:
|
|
85
|
-
readonly authored:
|
|
86
|
-
}
|
|
90
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
91
|
+
readonly source: import("effect/Schema").String;
|
|
92
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
93
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
94
|
+
}, "Type">;
|
|
87
95
|
};
|
|
88
|
-
readonly
|
|
89
|
-
readonly [x: string]: {
|
|
90
|
-
readonly source:
|
|
91
|
-
readonly
|
|
92
|
-
|
|
93
|
-
};
|
|
96
|
+
readonly packs?: {
|
|
97
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
98
|
+
readonly source: import("effect/Schema").String;
|
|
99
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
100
|
+
}, "Type">;
|
|
94
101
|
};
|
|
95
|
-
readonly
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
readonly
|
|
99
|
-
readonly authored: boolean;
|
|
102
|
+
readonly owner?: string & import("effect/Brand").Brand<"Handle">;
|
|
103
|
+
readonly lint?: {
|
|
104
|
+
readonly rules?: {
|
|
105
|
+
readonly [x: string]: "error" | "warn" | "off" | "info";
|
|
100
106
|
};
|
|
101
107
|
};
|
|
102
|
-
readonly
|
|
103
|
-
|
|
108
|
+
readonly $schema?: string;
|
|
109
|
+
readonly libraries?: {
|
|
110
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
111
|
+
readonly source: import("effect/Schema").String;
|
|
112
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
113
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
114
|
+
}, "Type">;
|
|
104
115
|
};
|
|
105
|
-
readonly
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
116
|
+
readonly telemetry?: boolean | "errors";
|
|
117
|
+
readonly minimumReleaseAge?: string;
|
|
118
|
+
readonly vars?: {
|
|
119
|
+
readonly [x: string]: string | number | boolean;
|
|
120
|
+
};
|
|
121
|
+
readonly agents?: readonly ("adal" | "aider-desk" | "amp" | "antigravity" | "augment" | "claude-code" | "cline" | "codearts-agent" | "codebuddy" | "codemaker" | "codestudio" | "codex" | "command-code" | "continue" | "cortex" | "crush" | "cursor" | "deepagents" | "devin" | "dexto" | "droid" | "firebender" | "forgecode" | "gemini-cli" | "github-copilot-cli" | "goose" | "grok-cli" | "hermes" | "ibm-bob" | "junie" | "kilo" | "kimi-cli" | "kiro-cli" | "kode" | "mcpjam" | "mistral-vibe" | "mux" | "neovate" | "openclaw" | "opencode" | "openhands" | "pi" | "pochi" | "qoder" | "qwen-code" | "replit" | "roo" | "rovodev" | "tabnine-cli" | "trae-cn" | "trae" | "warp" | "windsurf" | "zencoder")[];
|
|
122
|
+
readonly rulesConfig?: {
|
|
123
|
+
readonly instructions?: false | {
|
|
124
|
+
readonly fileName?: string;
|
|
125
|
+
readonly gitignoreAliases?: boolean;
|
|
109
126
|
};
|
|
110
127
|
};
|
|
111
|
-
readonly
|
|
128
|
+
readonly skillsConfig?: {
|
|
112
129
|
readonly ignore?: readonly string[];
|
|
113
130
|
};
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
116
|
-
readonly source: string;
|
|
117
|
-
readonly enabled: boolean;
|
|
118
|
-
readonly authored: boolean;
|
|
119
|
-
};
|
|
131
|
+
readonly commandsConfig?: {
|
|
132
|
+
readonly ignore?: readonly string[];
|
|
120
133
|
};
|
|
121
|
-
readonly
|
|
122
|
-
readonly
|
|
123
|
-
readonly source: string;
|
|
124
|
-
readonly enabled: boolean;
|
|
125
|
-
readonly authored: boolean;
|
|
126
|
-
readonly env: {
|
|
127
|
-
readonly [x: string]: string;
|
|
128
|
-
};
|
|
129
|
-
readonly command?: string | undefined;
|
|
130
|
-
readonly args?: readonly string[] | undefined;
|
|
131
|
-
readonly url?: string | undefined;
|
|
132
|
-
readonly headers?: {
|
|
133
|
-
readonly [x: string]: string;
|
|
134
|
-
} | undefined;
|
|
135
|
-
};
|
|
134
|
+
readonly subagentsConfig?: {
|
|
135
|
+
readonly ignore?: readonly string[];
|
|
136
136
|
};
|
|
137
|
-
readonly
|
|
137
|
+
readonly packsConfig?: {
|
|
138
138
|
readonly ignore?: readonly string[];
|
|
139
139
|
};
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly [x: string]: "error" | "warn" | "off" | "info";
|
|
143
|
-
};
|
|
140
|
+
readonly mcpServersConfig?: {
|
|
141
|
+
readonly ignore?: readonly string[];
|
|
144
142
|
};
|
|
145
143
|
}, import("../app-error/app-error.ts").AppError | import("../cli-prompt/prompt-cancelled.ts").PromptCancelled, Path.Path | FileSystem.FileSystem | "effect/unstable/cli/GlobalFlag/axm-non-interactive" | CliRenderer>;
|
|
146
144
|
/**
|
|
@@ -162,143 +160,242 @@ export declare const ensureGlobalWorkspaceInitialized: (globalDir: string) => Ef
|
|
|
162
160
|
*/
|
|
163
161
|
export declare const ensureProjectWorkspaceInitialized: (localDir: string, options: WorkspaceMutationsOptions) => Effect.Effect<{
|
|
164
162
|
settings: {
|
|
165
|
-
readonly
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
readonly
|
|
187
|
-
readonly
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
readonly
|
|
191
|
-
readonly
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
readonly location: URL;
|
|
196
|
-
})[];
|
|
197
|
-
readonly vars?: {
|
|
198
|
-
readonly [x: string]: string | number | boolean;
|
|
199
|
-
};
|
|
200
|
-
readonly skills?: {
|
|
163
|
+
readonly files?: {
|
|
164
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
165
|
+
readonly source: import("effect/Schema").String;
|
|
166
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
167
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
168
|
+
readonly inputs: import("effect/Schema").$Record<import("effect/Schema").String, import("effect/Schema").Union<readonly [import("effect/Schema").String, import("effect/Schema").Number, import("effect/Schema").Boolean]>>;
|
|
169
|
+
}, "Type">;
|
|
170
|
+
};
|
|
171
|
+
readonly sources?: readonly (import("effect/Schema").Struct.ReadonlySide<{
|
|
172
|
+
readonly name: import("effect/Schema").String;
|
|
173
|
+
readonly type: import("effect/Schema").Literal<"github">;
|
|
174
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
175
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
176
|
+
readonly name: import("effect/Schema").String;
|
|
177
|
+
readonly type: import("effect/Schema").Literal<"gitlab">;
|
|
178
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
179
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
180
|
+
readonly name: import("effect/Schema").String;
|
|
181
|
+
readonly type: import("effect/Schema").Literal<"bitbucket">;
|
|
182
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
183
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
184
|
+
readonly name: import("effect/Schema").String;
|
|
185
|
+
readonly type: import("effect/Schema").Literal<"azurerepos">;
|
|
186
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
187
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
188
|
+
readonly name: import("effect/Schema").String;
|
|
189
|
+
readonly type: import("effect/Schema").Literal<"registry">;
|
|
190
|
+
readonly location: import("effect/Schema").URLFromString;
|
|
191
|
+
}, "Type">)[];
|
|
192
|
+
readonly mcpServers?: {
|
|
201
193
|
readonly [x: string]: {
|
|
194
|
+
readonly env: {
|
|
195
|
+
readonly [x: string]: string;
|
|
196
|
+
};
|
|
202
197
|
readonly source: string;
|
|
203
198
|
readonly enabled: boolean;
|
|
204
199
|
readonly authored: boolean;
|
|
200
|
+
readonly url?: string | undefined;
|
|
201
|
+
readonly command?: string | undefined;
|
|
202
|
+
readonly headers?: {
|
|
203
|
+
readonly [x: string]: string;
|
|
204
|
+
} | undefined;
|
|
205
|
+
readonly args?: readonly string[] | undefined;
|
|
205
206
|
};
|
|
206
207
|
};
|
|
207
|
-
readonly
|
|
208
|
-
readonly
|
|
208
|
+
readonly hooks?: {
|
|
209
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
210
|
+
readonly source: import("effect/Schema").String;
|
|
211
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
212
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
213
|
+
}, "Type">;
|
|
209
214
|
};
|
|
210
|
-
readonly
|
|
211
|
-
readonly [x: string]: {
|
|
212
|
-
readonly source:
|
|
213
|
-
readonly enabled:
|
|
214
|
-
readonly authored:
|
|
215
|
-
}
|
|
215
|
+
readonly skills?: {
|
|
216
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
217
|
+
readonly source: import("effect/Schema").String;
|
|
218
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
219
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
220
|
+
}, "Type">;
|
|
216
221
|
};
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
222
|
+
readonly subagents?: {
|
|
223
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
224
|
+
readonly source: import("effect/Schema").String;
|
|
225
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
226
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
227
|
+
}, "Type">;
|
|
219
228
|
};
|
|
220
|
-
readonly
|
|
221
|
-
readonly [x: string]: {
|
|
222
|
-
readonly source:
|
|
223
|
-
readonly enabled:
|
|
224
|
-
readonly authored:
|
|
225
|
-
|
|
226
|
-
readonly [x: string]: string | number | boolean;
|
|
227
|
-
};
|
|
228
|
-
};
|
|
229
|
+
readonly commands?: {
|
|
230
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
231
|
+
readonly source: import("effect/Schema").String;
|
|
232
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
233
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
234
|
+
}, "Type">;
|
|
229
235
|
};
|
|
230
236
|
readonly rules?: {
|
|
231
|
-
readonly [x: string]: {
|
|
232
|
-
readonly source:
|
|
233
|
-
readonly enabled:
|
|
234
|
-
readonly authored:
|
|
235
|
-
}
|
|
237
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
238
|
+
readonly source: import("effect/Schema").String;
|
|
239
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
240
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
241
|
+
}, "Type">;
|
|
236
242
|
};
|
|
237
|
-
readonly
|
|
238
|
-
readonly [x: string]: {
|
|
239
|
-
readonly source:
|
|
240
|
-
readonly
|
|
241
|
-
|
|
243
|
+
readonly packs?: {
|
|
244
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
245
|
+
readonly source: import("effect/Schema").String;
|
|
246
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
247
|
+
}, "Type">;
|
|
248
|
+
};
|
|
249
|
+
readonly owner?: string & import("effect/Brand").Brand<"Handle">;
|
|
250
|
+
readonly lint?: {
|
|
251
|
+
readonly rules?: {
|
|
252
|
+
readonly [x: string]: "error" | "warn" | "off" | "info";
|
|
242
253
|
};
|
|
243
254
|
};
|
|
244
|
-
readonly
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
readonly
|
|
248
|
-
readonly
|
|
255
|
+
readonly $schema?: string;
|
|
256
|
+
readonly libraries?: {
|
|
257
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
258
|
+
readonly source: import("effect/Schema").String;
|
|
259
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
260
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
261
|
+
}, "Type">;
|
|
262
|
+
};
|
|
263
|
+
readonly telemetry?: boolean | "errors";
|
|
264
|
+
readonly minimumReleaseAge?: string;
|
|
265
|
+
readonly vars?: {
|
|
266
|
+
readonly [x: string]: string | number | boolean;
|
|
267
|
+
};
|
|
268
|
+
readonly agents?: readonly ("adal" | "aider-desk" | "amp" | "antigravity" | "augment" | "claude-code" | "cline" | "codearts-agent" | "codebuddy" | "codemaker" | "codestudio" | "codex" | "command-code" | "continue" | "cortex" | "crush" | "cursor" | "deepagents" | "devin" | "dexto" | "droid" | "firebender" | "forgecode" | "gemini-cli" | "github-copilot-cli" | "goose" | "grok-cli" | "hermes" | "ibm-bob" | "junie" | "kilo" | "kimi-cli" | "kiro-cli" | "kode" | "mcpjam" | "mistral-vibe" | "mux" | "neovate" | "openclaw" | "opencode" | "openhands" | "pi" | "pochi" | "qoder" | "qwen-code" | "replit" | "roo" | "rovodev" | "tabnine-cli" | "trae-cn" | "trae" | "warp" | "windsurf" | "zencoder")[];
|
|
269
|
+
readonly rulesConfig?: {
|
|
270
|
+
readonly instructions?: false | {
|
|
271
|
+
readonly fileName?: string;
|
|
272
|
+
readonly gitignoreAliases?: boolean;
|
|
249
273
|
};
|
|
250
274
|
};
|
|
251
|
-
readonly
|
|
275
|
+
readonly skillsConfig?: {
|
|
252
276
|
readonly ignore?: readonly string[];
|
|
253
277
|
};
|
|
254
|
-
readonly
|
|
255
|
-
readonly
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
278
|
+
readonly commandsConfig?: {
|
|
279
|
+
readonly ignore?: readonly string[];
|
|
280
|
+
};
|
|
281
|
+
readonly subagentsConfig?: {
|
|
282
|
+
readonly ignore?: readonly string[];
|
|
259
283
|
};
|
|
260
284
|
readonly packsConfig?: {
|
|
261
285
|
readonly ignore?: readonly string[];
|
|
262
286
|
};
|
|
263
|
-
readonly
|
|
264
|
-
readonly
|
|
265
|
-
readonly source: string;
|
|
266
|
-
readonly enabled: boolean;
|
|
267
|
-
readonly authored: boolean;
|
|
268
|
-
};
|
|
287
|
+
readonly mcpServersConfig?: {
|
|
288
|
+
readonly ignore?: readonly string[];
|
|
269
289
|
};
|
|
290
|
+
};
|
|
291
|
+
initialized: true;
|
|
292
|
+
} | {
|
|
293
|
+
settings: {
|
|
294
|
+
readonly files?: {
|
|
295
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
296
|
+
readonly source: import("effect/Schema").String;
|
|
297
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
298
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
299
|
+
readonly inputs: import("effect/Schema").$Record<import("effect/Schema").String, import("effect/Schema").Union<readonly [import("effect/Schema").String, import("effect/Schema").Number, import("effect/Schema").Boolean]>>;
|
|
300
|
+
}, "Type">;
|
|
301
|
+
};
|
|
302
|
+
readonly sources?: readonly (import("effect/Schema").Struct.ReadonlySide<{
|
|
303
|
+
readonly name: import("effect/Schema").String;
|
|
304
|
+
readonly type: import("effect/Schema").Literal<"github">;
|
|
305
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
306
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
307
|
+
readonly name: import("effect/Schema").String;
|
|
308
|
+
readonly type: import("effect/Schema").Literal<"gitlab">;
|
|
309
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
310
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
311
|
+
readonly name: import("effect/Schema").String;
|
|
312
|
+
readonly type: import("effect/Schema").Literal<"bitbucket">;
|
|
313
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
314
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
315
|
+
readonly name: import("effect/Schema").String;
|
|
316
|
+
readonly type: import("effect/Schema").Literal<"azurerepos">;
|
|
317
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
318
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
319
|
+
readonly name: import("effect/Schema").String;
|
|
320
|
+
readonly type: import("effect/Schema").Literal<"registry">;
|
|
321
|
+
readonly location: import("effect/Schema").URLFromString;
|
|
322
|
+
}, "Type">)[];
|
|
270
323
|
readonly mcpServers?: {
|
|
271
324
|
readonly [x: string]: {
|
|
272
|
-
readonly source: string;
|
|
273
|
-
readonly enabled: boolean;
|
|
274
|
-
readonly authored: boolean;
|
|
275
325
|
readonly env: {
|
|
276
326
|
readonly [x: string]: string;
|
|
277
327
|
};
|
|
278
|
-
readonly
|
|
279
|
-
readonly
|
|
328
|
+
readonly source: string;
|
|
329
|
+
readonly enabled: boolean;
|
|
330
|
+
readonly authored: boolean;
|
|
280
331
|
readonly url?: string | undefined;
|
|
332
|
+
readonly command?: string | undefined;
|
|
281
333
|
readonly headers?: {
|
|
282
334
|
readonly [x: string]: string;
|
|
283
335
|
} | undefined;
|
|
336
|
+
readonly args?: readonly string[] | undefined;
|
|
284
337
|
};
|
|
285
338
|
};
|
|
286
|
-
readonly
|
|
287
|
-
readonly
|
|
339
|
+
readonly hooks?: {
|
|
340
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
341
|
+
readonly source: import("effect/Schema").String;
|
|
342
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
343
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
344
|
+
}, "Type">;
|
|
345
|
+
};
|
|
346
|
+
readonly skills?: {
|
|
347
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
348
|
+
readonly source: import("effect/Schema").String;
|
|
349
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
350
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
351
|
+
}, "Type">;
|
|
352
|
+
};
|
|
353
|
+
readonly subagents?: {
|
|
354
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
355
|
+
readonly source: import("effect/Schema").String;
|
|
356
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
357
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
358
|
+
}, "Type">;
|
|
359
|
+
};
|
|
360
|
+
readonly commands?: {
|
|
361
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
362
|
+
readonly source: import("effect/Schema").String;
|
|
363
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
364
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
365
|
+
}, "Type">;
|
|
366
|
+
};
|
|
367
|
+
readonly rules?: {
|
|
368
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
369
|
+
readonly source: import("effect/Schema").String;
|
|
370
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
371
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
372
|
+
}, "Type">;
|
|
373
|
+
};
|
|
374
|
+
readonly packs?: {
|
|
375
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
376
|
+
readonly source: import("effect/Schema").String;
|
|
377
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
378
|
+
}, "Type">;
|
|
288
379
|
};
|
|
380
|
+
readonly owner?: string & import("effect/Brand").Brand<"Handle">;
|
|
289
381
|
readonly lint?: {
|
|
290
382
|
readonly rules?: {
|
|
291
383
|
readonly [x: string]: "error" | "warn" | "off" | "info";
|
|
292
384
|
};
|
|
293
385
|
};
|
|
294
|
-
};
|
|
295
|
-
initialized: true;
|
|
296
|
-
} | {
|
|
297
|
-
settings: {
|
|
298
386
|
readonly $schema?: string;
|
|
387
|
+
readonly libraries?: {
|
|
388
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
389
|
+
readonly source: import("effect/Schema").String;
|
|
390
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
391
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
392
|
+
}, "Type">;
|
|
393
|
+
};
|
|
299
394
|
readonly telemetry?: boolean | "errors";
|
|
300
|
-
readonly owner?: string & import("effect/Brand").Brand<"Handle">;
|
|
301
395
|
readonly minimumReleaseAge?: string;
|
|
396
|
+
readonly vars?: {
|
|
397
|
+
readonly [x: string]: string | number | boolean;
|
|
398
|
+
};
|
|
302
399
|
readonly agents?: readonly ("adal" | "aider-desk" | "amp" | "antigravity" | "augment" | "claude-code" | "cline" | "codearts-agent" | "codebuddy" | "codemaker" | "codestudio" | "codex" | "command-code" | "continue" | "cortex" | "crush" | "cursor" | "deepagents" | "devin" | "dexto" | "droid" | "firebender" | "forgecode" | "gemini-cli" | "github-copilot-cli" | "goose" | "grok-cli" | "hermes" | "ibm-bob" | "junie" | "kilo" | "kimi-cli" | "kiro-cli" | "kode" | "mcpjam" | "mistral-vibe" | "mux" | "neovate" | "openclaw" | "opencode" | "openhands" | "pi" | "pochi" | "qoder" | "qwen-code" | "replit" | "roo" | "rovodev" | "tabnine-cli" | "trae-cn" | "trae" | "warp" | "windsurf" | "zencoder")[];
|
|
303
400
|
readonly rulesConfig?: {
|
|
304
401
|
readonly instructions?: false | {
|
|
@@ -306,133 +403,131 @@ export declare const ensureProjectWorkspaceInitialized: (localDir: string, optio
|
|
|
306
403
|
readonly gitignoreAliases?: boolean;
|
|
307
404
|
};
|
|
308
405
|
};
|
|
309
|
-
readonly sources?: readonly ({
|
|
310
|
-
readonly name: string;
|
|
311
|
-
readonly type: "github";
|
|
312
|
-
readonly url: URL;
|
|
313
|
-
} | {
|
|
314
|
-
readonly name: string;
|
|
315
|
-
readonly type: "gitlab";
|
|
316
|
-
readonly url: URL;
|
|
317
|
-
} | {
|
|
318
|
-
readonly name: string;
|
|
319
|
-
readonly type: "bitbucket";
|
|
320
|
-
readonly url: URL;
|
|
321
|
-
} | {
|
|
322
|
-
readonly name: string;
|
|
323
|
-
readonly type: "azurerepos";
|
|
324
|
-
readonly url: URL;
|
|
325
|
-
} | {
|
|
326
|
-
readonly name: string;
|
|
327
|
-
readonly type: "registry";
|
|
328
|
-
readonly location: URL;
|
|
329
|
-
})[];
|
|
330
|
-
readonly vars?: {
|
|
331
|
-
readonly [x: string]: string | number | boolean;
|
|
332
|
-
};
|
|
333
|
-
readonly skills?: {
|
|
334
|
-
readonly [x: string]: {
|
|
335
|
-
readonly source: string;
|
|
336
|
-
readonly enabled: boolean;
|
|
337
|
-
readonly authored: boolean;
|
|
338
|
-
};
|
|
339
|
-
};
|
|
340
406
|
readonly skillsConfig?: {
|
|
341
407
|
readonly ignore?: readonly string[];
|
|
342
408
|
};
|
|
343
|
-
readonly commands?: {
|
|
344
|
-
readonly [x: string]: {
|
|
345
|
-
readonly source: string;
|
|
346
|
-
readonly enabled: boolean;
|
|
347
|
-
readonly authored: boolean;
|
|
348
|
-
};
|
|
349
|
-
};
|
|
350
409
|
readonly commandsConfig?: {
|
|
351
410
|
readonly ignore?: readonly string[];
|
|
352
411
|
};
|
|
353
|
-
readonly files?: {
|
|
354
|
-
readonly [x: string]: {
|
|
355
|
-
readonly source: string;
|
|
356
|
-
readonly enabled: boolean;
|
|
357
|
-
readonly authored: boolean;
|
|
358
|
-
readonly inputs: {
|
|
359
|
-
readonly [x: string]: string | number | boolean;
|
|
360
|
-
};
|
|
361
|
-
};
|
|
362
|
-
};
|
|
363
|
-
readonly rules?: {
|
|
364
|
-
readonly [x: string]: {
|
|
365
|
-
readonly source: string;
|
|
366
|
-
readonly enabled: boolean;
|
|
367
|
-
readonly authored: boolean;
|
|
368
|
-
};
|
|
369
|
-
};
|
|
370
|
-
readonly hooks?: {
|
|
371
|
-
readonly [x: string]: {
|
|
372
|
-
readonly source: string;
|
|
373
|
-
readonly enabled: boolean;
|
|
374
|
-
readonly authored: boolean;
|
|
375
|
-
};
|
|
376
|
-
};
|
|
377
|
-
readonly subagents?: {
|
|
378
|
-
readonly [x: string]: {
|
|
379
|
-
readonly source: string;
|
|
380
|
-
readonly enabled: boolean;
|
|
381
|
-
readonly authored: boolean;
|
|
382
|
-
};
|
|
383
|
-
};
|
|
384
412
|
readonly subagentsConfig?: {
|
|
385
413
|
readonly ignore?: readonly string[];
|
|
386
414
|
};
|
|
387
|
-
readonly packs?: {
|
|
388
|
-
readonly [x: string]: {
|
|
389
|
-
readonly source: string;
|
|
390
|
-
readonly authored: boolean;
|
|
391
|
-
};
|
|
392
|
-
};
|
|
393
415
|
readonly packsConfig?: {
|
|
394
416
|
readonly ignore?: readonly string[];
|
|
395
417
|
};
|
|
396
|
-
readonly
|
|
397
|
-
readonly
|
|
398
|
-
readonly source: string;
|
|
399
|
-
readonly enabled: boolean;
|
|
400
|
-
readonly authored: boolean;
|
|
401
|
-
};
|
|
418
|
+
readonly mcpServersConfig?: {
|
|
419
|
+
readonly ignore?: readonly string[];
|
|
402
420
|
};
|
|
421
|
+
};
|
|
422
|
+
initialized: false;
|
|
423
|
+
}, import("../app-error/app-error.ts").AppError | import("../cli-prompt/prompt-cancelled.ts").PromptCancelled, Path.Path | FileSystem.FileSystem | "effect/unstable/cli/GlobalFlag/axm-non-interactive" | CliRenderer>;
|
|
424
|
+
export declare const bootstrapWorkspace: (options: WorkspaceMutationsOptions) => Effect.Effect<{
|
|
425
|
+
settings: {
|
|
426
|
+
readonly files?: {
|
|
427
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
428
|
+
readonly source: import("effect/Schema").String;
|
|
429
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
430
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
431
|
+
readonly inputs: import("effect/Schema").$Record<import("effect/Schema").String, import("effect/Schema").Union<readonly [import("effect/Schema").String, import("effect/Schema").Number, import("effect/Schema").Boolean]>>;
|
|
432
|
+
}, "Type">;
|
|
433
|
+
};
|
|
434
|
+
readonly sources?: readonly (import("effect/Schema").Struct.ReadonlySide<{
|
|
435
|
+
readonly name: import("effect/Schema").String;
|
|
436
|
+
readonly type: import("effect/Schema").Literal<"github">;
|
|
437
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
438
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
439
|
+
readonly name: import("effect/Schema").String;
|
|
440
|
+
readonly type: import("effect/Schema").Literal<"gitlab">;
|
|
441
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
442
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
443
|
+
readonly name: import("effect/Schema").String;
|
|
444
|
+
readonly type: import("effect/Schema").Literal<"bitbucket">;
|
|
445
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
446
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
447
|
+
readonly name: import("effect/Schema").String;
|
|
448
|
+
readonly type: import("effect/Schema").Literal<"azurerepos">;
|
|
449
|
+
readonly url: import("effect/Schema").URLFromString;
|
|
450
|
+
}, "Type"> | import("effect/Schema").Struct.ReadonlySide<{
|
|
451
|
+
readonly name: import("effect/Schema").String;
|
|
452
|
+
readonly type: import("effect/Schema").Literal<"registry">;
|
|
453
|
+
readonly location: import("effect/Schema").URLFromString;
|
|
454
|
+
}, "Type">)[];
|
|
403
455
|
readonly mcpServers?: {
|
|
404
456
|
readonly [x: string]: {
|
|
405
|
-
readonly source: string;
|
|
406
|
-
readonly enabled: boolean;
|
|
407
|
-
readonly authored: boolean;
|
|
408
457
|
readonly env: {
|
|
409
458
|
readonly [x: string]: string;
|
|
410
459
|
};
|
|
411
|
-
readonly
|
|
412
|
-
readonly
|
|
460
|
+
readonly source: string;
|
|
461
|
+
readonly enabled: boolean;
|
|
462
|
+
readonly authored: boolean;
|
|
413
463
|
readonly url?: string | undefined;
|
|
464
|
+
readonly command?: string | undefined;
|
|
414
465
|
readonly headers?: {
|
|
415
466
|
readonly [x: string]: string;
|
|
416
467
|
} | undefined;
|
|
468
|
+
readonly args?: readonly string[] | undefined;
|
|
417
469
|
};
|
|
418
470
|
};
|
|
419
|
-
readonly
|
|
420
|
-
readonly
|
|
471
|
+
readonly hooks?: {
|
|
472
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
473
|
+
readonly source: import("effect/Schema").String;
|
|
474
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
475
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
476
|
+
}, "Type">;
|
|
477
|
+
};
|
|
478
|
+
readonly skills?: {
|
|
479
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
480
|
+
readonly source: import("effect/Schema").String;
|
|
481
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
482
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
483
|
+
}, "Type">;
|
|
484
|
+
};
|
|
485
|
+
readonly subagents?: {
|
|
486
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
487
|
+
readonly source: import("effect/Schema").String;
|
|
488
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
489
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
490
|
+
}, "Type">;
|
|
491
|
+
};
|
|
492
|
+
readonly commands?: {
|
|
493
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
494
|
+
readonly source: import("effect/Schema").String;
|
|
495
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
496
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
497
|
+
}, "Type">;
|
|
421
498
|
};
|
|
499
|
+
readonly rules?: {
|
|
500
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
501
|
+
readonly source: import("effect/Schema").String;
|
|
502
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
503
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
504
|
+
}, "Type">;
|
|
505
|
+
};
|
|
506
|
+
readonly packs?: {
|
|
507
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
508
|
+
readonly source: import("effect/Schema").String;
|
|
509
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
510
|
+
}, "Type">;
|
|
511
|
+
};
|
|
512
|
+
readonly owner?: string & import("effect/Brand").Brand<"Handle">;
|
|
422
513
|
readonly lint?: {
|
|
423
514
|
readonly rules?: {
|
|
424
515
|
readonly [x: string]: "error" | "warn" | "off" | "info";
|
|
425
516
|
};
|
|
426
517
|
};
|
|
427
|
-
};
|
|
428
|
-
initialized: false;
|
|
429
|
-
}, import("../app-error/app-error.ts").AppError | import("../cli-prompt/prompt-cancelled.ts").PromptCancelled, Path.Path | FileSystem.FileSystem | "effect/unstable/cli/GlobalFlag/axm-non-interactive" | CliRenderer>;
|
|
430
|
-
export declare const bootstrapWorkspace: (options: WorkspaceMutationsOptions) => Effect.Effect<{
|
|
431
|
-
settings: {
|
|
432
518
|
readonly $schema?: string;
|
|
519
|
+
readonly libraries?: {
|
|
520
|
+
readonly [x: string]: import("effect/Schema").Struct.ReadonlySide<{
|
|
521
|
+
readonly source: import("effect/Schema").String;
|
|
522
|
+
readonly enabled: import("effect/Schema").Boolean;
|
|
523
|
+
readonly authored: import("effect/Schema").Boolean;
|
|
524
|
+
}, "Type">;
|
|
525
|
+
};
|
|
433
526
|
readonly telemetry?: boolean | "errors";
|
|
434
|
-
readonly owner?: string & import("effect/Brand").Brand<"Handle">;
|
|
435
527
|
readonly minimumReleaseAge?: string;
|
|
528
|
+
readonly vars?: {
|
|
529
|
+
readonly [x: string]: string | number | boolean;
|
|
530
|
+
};
|
|
436
531
|
readonly agents?: readonly ("adal" | "aider-desk" | "amp" | "antigravity" | "augment" | "claude-code" | "cline" | "codearts-agent" | "codebuddy" | "codemaker" | "codestudio" | "codex" | "command-code" | "continue" | "cortex" | "crush" | "cursor" | "deepagents" | "devin" | "dexto" | "droid" | "firebender" | "forgecode" | "gemini-cli" | "github-copilot-cli" | "goose" | "grok-cli" | "hermes" | "ibm-bob" | "junie" | "kilo" | "kimi-cli" | "kiro-cli" | "kode" | "mcpjam" | "mistral-vibe" | "mux" | "neovate" | "openclaw" | "opencode" | "openhands" | "pi" | "pochi" | "qoder" | "qwen-code" | "replit" | "roo" | "rovodev" | "tabnine-cli" | "trae-cn" | "trae" | "warp" | "windsurf" | "zencoder")[];
|
|
437
532
|
readonly rulesConfig?: {
|
|
438
533
|
readonly instructions?: false | {
|
|
@@ -440,124 +535,21 @@ export declare const bootstrapWorkspace: (options: WorkspaceMutationsOptions) =>
|
|
|
440
535
|
readonly gitignoreAliases?: boolean;
|
|
441
536
|
};
|
|
442
537
|
};
|
|
443
|
-
readonly sources?: readonly ({
|
|
444
|
-
readonly name: string;
|
|
445
|
-
readonly type: "github";
|
|
446
|
-
readonly url: URL;
|
|
447
|
-
} | {
|
|
448
|
-
readonly name: string;
|
|
449
|
-
readonly type: "gitlab";
|
|
450
|
-
readonly url: URL;
|
|
451
|
-
} | {
|
|
452
|
-
readonly name: string;
|
|
453
|
-
readonly type: "bitbucket";
|
|
454
|
-
readonly url: URL;
|
|
455
|
-
} | {
|
|
456
|
-
readonly name: string;
|
|
457
|
-
readonly type: "azurerepos";
|
|
458
|
-
readonly url: URL;
|
|
459
|
-
} | {
|
|
460
|
-
readonly name: string;
|
|
461
|
-
readonly type: "registry";
|
|
462
|
-
readonly location: URL;
|
|
463
|
-
})[];
|
|
464
|
-
readonly vars?: {
|
|
465
|
-
readonly [x: string]: string | number | boolean;
|
|
466
|
-
};
|
|
467
|
-
readonly skills?: {
|
|
468
|
-
readonly [x: string]: {
|
|
469
|
-
readonly source: string;
|
|
470
|
-
readonly enabled: boolean;
|
|
471
|
-
readonly authored: boolean;
|
|
472
|
-
};
|
|
473
|
-
};
|
|
474
538
|
readonly skillsConfig?: {
|
|
475
539
|
readonly ignore?: readonly string[];
|
|
476
540
|
};
|
|
477
|
-
readonly commands?: {
|
|
478
|
-
readonly [x: string]: {
|
|
479
|
-
readonly source: string;
|
|
480
|
-
readonly enabled: boolean;
|
|
481
|
-
readonly authored: boolean;
|
|
482
|
-
};
|
|
483
|
-
};
|
|
484
541
|
readonly commandsConfig?: {
|
|
485
542
|
readonly ignore?: readonly string[];
|
|
486
543
|
};
|
|
487
|
-
readonly files?: {
|
|
488
|
-
readonly [x: string]: {
|
|
489
|
-
readonly source: string;
|
|
490
|
-
readonly enabled: boolean;
|
|
491
|
-
readonly authored: boolean;
|
|
492
|
-
readonly inputs: {
|
|
493
|
-
readonly [x: string]: string | number | boolean;
|
|
494
|
-
};
|
|
495
|
-
};
|
|
496
|
-
};
|
|
497
|
-
readonly rules?: {
|
|
498
|
-
readonly [x: string]: {
|
|
499
|
-
readonly source: string;
|
|
500
|
-
readonly enabled: boolean;
|
|
501
|
-
readonly authored: boolean;
|
|
502
|
-
};
|
|
503
|
-
};
|
|
504
|
-
readonly hooks?: {
|
|
505
|
-
readonly [x: string]: {
|
|
506
|
-
readonly source: string;
|
|
507
|
-
readonly enabled: boolean;
|
|
508
|
-
readonly authored: boolean;
|
|
509
|
-
};
|
|
510
|
-
};
|
|
511
|
-
readonly subagents?: {
|
|
512
|
-
readonly [x: string]: {
|
|
513
|
-
readonly source: string;
|
|
514
|
-
readonly enabled: boolean;
|
|
515
|
-
readonly authored: boolean;
|
|
516
|
-
};
|
|
517
|
-
};
|
|
518
544
|
readonly subagentsConfig?: {
|
|
519
545
|
readonly ignore?: readonly string[];
|
|
520
546
|
};
|
|
521
|
-
readonly packs?: {
|
|
522
|
-
readonly [x: string]: {
|
|
523
|
-
readonly source: string;
|
|
524
|
-
readonly authored: boolean;
|
|
525
|
-
};
|
|
526
|
-
};
|
|
527
547
|
readonly packsConfig?: {
|
|
528
548
|
readonly ignore?: readonly string[];
|
|
529
549
|
};
|
|
530
|
-
readonly libraries?: {
|
|
531
|
-
readonly [x: string]: {
|
|
532
|
-
readonly source: string;
|
|
533
|
-
readonly enabled: boolean;
|
|
534
|
-
readonly authored: boolean;
|
|
535
|
-
};
|
|
536
|
-
};
|
|
537
|
-
readonly mcpServers?: {
|
|
538
|
-
readonly [x: string]: {
|
|
539
|
-
readonly source: string;
|
|
540
|
-
readonly enabled: boolean;
|
|
541
|
-
readonly authored: boolean;
|
|
542
|
-
readonly env: {
|
|
543
|
-
readonly [x: string]: string;
|
|
544
|
-
};
|
|
545
|
-
readonly command?: string | undefined;
|
|
546
|
-
readonly args?: readonly string[] | undefined;
|
|
547
|
-
readonly url?: string | undefined;
|
|
548
|
-
readonly headers?: {
|
|
549
|
-
readonly [x: string]: string;
|
|
550
|
-
} | undefined;
|
|
551
|
-
};
|
|
552
|
-
};
|
|
553
550
|
readonly mcpServersConfig?: {
|
|
554
551
|
readonly ignore?: readonly string[];
|
|
555
552
|
};
|
|
556
|
-
readonly lint?: {
|
|
557
|
-
readonly rules?: {
|
|
558
|
-
readonly [x: string]: "error" | "warn" | "off" | "info";
|
|
559
|
-
};
|
|
560
|
-
};
|
|
561
553
|
};
|
|
562
554
|
location: WorkspaceLocation;
|
|
563
555
|
initialized: boolean;
|