@asc-agent/runtime 0.3.2 → 0.4.0
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 +1 -1
- package/dist/adapters/claude-code/install.d.ts +7 -0
- package/dist/adapters/claude-code/install.js +114 -38
- package/dist/adapters/claude-code/session-start.d.ts +20 -0
- package/dist/adapters/claude-code/session-start.js +111 -0
- package/dist/adapters/jam/adapter.d.ts +46 -9
- package/dist/adapters/jam/adapter.js +88 -22
- package/dist/adapters/jam/setup.d.ts +62 -0
- package/dist/adapters/jam/setup.js +85 -0
- package/dist/adapters/service/launchd.d.ts +12 -0
- package/dist/adapters/service/launchd.js +80 -0
- package/dist/adapters/service/schtasks.d.ts +16 -0
- package/dist/adapters/service/schtasks.js +67 -0
- package/dist/adapters/service/systemd-user.d.ts +15 -0
- package/dist/adapters/service/systemd-user.js +95 -0
- package/dist/cli/asc.js +840 -143
- package/dist/composition/registry.js +11 -3
- package/dist/composition/runtime.d.ts +33 -0
- package/dist/composition/runtime.js +74 -0
- package/dist/core/attach/setup-plan.d.ts +66 -2
- package/dist/core/attach/setup-plan.js +50 -0
- package/dist/core/distribution/external-command.js +1 -1
- package/dist/core/distribution/persistent-runtime.d.ts +73 -0
- package/dist/core/distribution/persistent-runtime.js +49 -0
- package/dist/core/distribution/release.d.ts +3 -3
- package/dist/core/distribution/release.js +1 -1
- package/dist/core/runtime/background.d.ts +104 -0
- package/dist/core/runtime/background.js +225 -0
- package/dist/core/runtime/front.d.ts +48 -0
- package/dist/core/runtime/front.js +34 -0
- package/dist/core/runtime/workspaces.d.ts +39 -0
- package/dist/core/runtime/workspaces.js +64 -0
- package/dist/core/workspace/resolve.d.ts +36 -0
- package/dist/core/workspace/resolve.js +110 -3
- package/dist/ports/adapter.d.ts +12 -0
- package/dist/schemas/profile.d.ts +6 -6
- package/package.json +1 -1
|
@@ -212,20 +212,20 @@ export declare const ProjectProfile: z.ZodPipeline<z.ZodEffects<z.ZodUnknown, un
|
|
|
212
212
|
resource: z.ZodString;
|
|
213
213
|
}, "strip", z.ZodTypeAny, {
|
|
214
214
|
role: string;
|
|
215
|
-
resource: string;
|
|
216
215
|
adapter: string;
|
|
216
|
+
resource: string;
|
|
217
217
|
}, {
|
|
218
218
|
role: string;
|
|
219
|
-
resource: string;
|
|
220
219
|
adapter: string;
|
|
220
|
+
resource: string;
|
|
221
221
|
}>, "many">>, {
|
|
222
222
|
role: string;
|
|
223
|
-
resource: string;
|
|
224
223
|
adapter: string;
|
|
224
|
+
resource: string;
|
|
225
225
|
}[] | undefined, {
|
|
226
226
|
role: string;
|
|
227
|
-
resource: string;
|
|
228
227
|
adapter: string;
|
|
228
|
+
resource: string;
|
|
229
229
|
}[] | undefined>;
|
|
230
230
|
/** 프로젝트 용어를 Core 개념에 붙인다. 사람이 읽는 문서에만 쓰인다. */
|
|
231
231
|
terminology: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -280,8 +280,8 @@ export declare const ProjectProfile: z.ZodPipeline<z.ZodEffects<z.ZodUnknown, un
|
|
|
280
280
|
}> | undefined;
|
|
281
281
|
bindings?: {
|
|
282
282
|
role: string;
|
|
283
|
-
resource: string;
|
|
284
283
|
adapter: string;
|
|
284
|
+
resource: string;
|
|
285
285
|
}[] | undefined;
|
|
286
286
|
}, {
|
|
287
287
|
id: string;
|
|
@@ -318,8 +318,8 @@ export declare const ProjectProfile: z.ZodPipeline<z.ZodEffects<z.ZodUnknown, un
|
|
|
318
318
|
}> | undefined;
|
|
319
319
|
bindings?: {
|
|
320
320
|
role: string;
|
|
321
|
-
resource: string;
|
|
322
321
|
adapter: string;
|
|
322
|
+
resource: string;
|
|
323
323
|
}[] | undefined;
|
|
324
324
|
policy?: {
|
|
325
325
|
hardDeny?: string[] | undefined;
|