@murphai/murph 0.1.1
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/CHANGELOG.md +2009 -0
- package/LICENSE +674 -0
- package/README.md +97 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/assistant/automation/run-loop.d.ts +21 -0
- package/dist/assistant/automation/run-loop.d.ts.map +1 -0
- package/dist/assistant/automation/run-loop.js +31 -0
- package/dist/assistant/automation/run-loop.js.map +1 -0
- package/dist/assistant/automation.d.ts +10 -0
- package/dist/assistant/automation.d.ts.map +1 -0
- package/dist/assistant/automation.js +5 -0
- package/dist/assistant/automation.js.map +1 -0
- package/dist/assistant/cron.d.ts +19 -0
- package/dist/assistant/cron.d.ts.map +1 -0
- package/dist/assistant/cron.js +59 -0
- package/dist/assistant/cron.js.map +1 -0
- package/dist/assistant/doctor-security.d.ts +15 -0
- package/dist/assistant/doctor-security.d.ts.map +1 -0
- package/dist/assistant/doctor-security.js +172 -0
- package/dist/assistant/doctor-security.js.map +1 -0
- package/dist/assistant/doctor.d.ts +5 -0
- package/dist/assistant/doctor.d.ts.map +1 -0
- package/dist/assistant/doctor.js +527 -0
- package/dist/assistant/doctor.js.map +1 -0
- package/dist/assistant/outbox.d.ts +19 -0
- package/dist/assistant/outbox.d.ts.map +1 -0
- package/dist/assistant/outbox.js +28 -0
- package/dist/assistant/outbox.js.map +1 -0
- package/dist/assistant/provider-catalog.d.ts +61 -0
- package/dist/assistant/provider-catalog.d.ts.map +1 -0
- package/dist/assistant/provider-catalog.js +205 -0
- package/dist/assistant/provider-catalog.js.map +1 -0
- package/dist/assistant/service.d.ts +85 -0
- package/dist/assistant/service.d.ts.map +1 -0
- package/dist/assistant/service.js +26 -0
- package/dist/assistant/service.js.map +1 -0
- package/dist/assistant/status.d.ts +9 -0
- package/dist/assistant/status.d.ts.map +1 -0
- package/dist/assistant/status.js +16 -0
- package/dist/assistant/status.js.map +1 -0
- package/dist/assistant/stop.d.ts +20 -0
- package/dist/assistant/stop.d.ts.map +1 -0
- package/dist/assistant/stop.js +142 -0
- package/dist/assistant/stop.js.map +1 -0
- package/dist/assistant/store.d.ts +6 -0
- package/dist/assistant/store.d.ts.map +1 -0
- package/dist/assistant/store.js +21 -0
- package/dist/assistant/store.js.map +1 -0
- package/dist/assistant/ui/ink.d.ts +247 -0
- package/dist/assistant/ui/ink.d.ts.map +1 -0
- package/dist/assistant/ui/ink.js +2417 -0
- package/dist/assistant/ui/ink.js.map +1 -0
- package/dist/assistant/ui/theme.d.ts +64 -0
- package/dist/assistant/ui/theme.d.ts.map +1 -0
- package/dist/assistant/ui/theme.js +180 -0
- package/dist/assistant/ui/theme.js.map +1 -0
- package/dist/assistant/ui/view-model.d.ts +89 -0
- package/dist/assistant/ui/view-model.d.ts.map +1 -0
- package/dist/assistant/ui/view-model.js +298 -0
- package/dist/assistant/ui/view-model.js.map +1 -0
- package/dist/assistant-chat-ink.d.ts +2 -0
- package/dist/assistant-chat-ink.d.ts.map +1 -0
- package/dist/assistant-chat-ink.js +2 -0
- package/dist/assistant-chat-ink.js.map +1 -0
- package/dist/assistant-daemon-client.d.ts +81 -0
- package/dist/assistant-daemon-client.d.ts.map +1 -0
- package/dist/assistant-daemon-client.js +473 -0
- package/dist/assistant-daemon-client.js.map +1 -0
- package/dist/assistant-runtime.d.ts +25 -0
- package/dist/assistant-runtime.d.ts.map +1 -0
- package/dist/assistant-runtime.js +17 -0
- package/dist/assistant-runtime.js.map +1 -0
- package/dist/bin.d.ts +3 -0
- package/dist/bin.d.ts.map +1 -0
- package/dist/bin.js +7 -0
- package/dist/bin.js.map +1 -0
- package/dist/cli-entry.d.ts +10 -0
- package/dist/cli-entry.d.ts.map +1 -0
- package/dist/cli-entry.js +127 -0
- package/dist/cli-entry.js.map +1 -0
- package/dist/commands/assistant.d.ts +5 -0
- package/dist/commands/assistant.d.ts.map +1 -0
- package/dist/commands/assistant.js +1663 -0
- package/dist/commands/assistant.js.map +1 -0
- package/dist/commands/audit-command-helpers.d.ts +15 -0
- package/dist/commands/audit-command-helpers.d.ts.map +1 -0
- package/dist/commands/audit-command-helpers.js +24 -0
- package/dist/commands/audit-command-helpers.js.map +1 -0
- package/dist/commands/audit.d.ts +4 -0
- package/dist/commands/audit.d.ts.map +1 -0
- package/dist/commands/audit.js +107 -0
- package/dist/commands/audit.js.map +1 -0
- package/dist/commands/device.d.ts +4 -0
- package/dist/commands/device.d.ts.map +1 -0
- package/dist/commands/device.js +177 -0
- package/dist/commands/device.js.map +1 -0
- package/dist/commands/document.d.ts +4 -0
- package/dist/commands/document.d.ts.map +1 -0
- package/dist/commands/document.js +117 -0
- package/dist/commands/document.js.map +1 -0
- package/dist/commands/event.d.ts +4 -0
- package/dist/commands/event.d.ts.map +1 -0
- package/dist/commands/event.js +136 -0
- package/dist/commands/event.js.map +1 -0
- package/dist/commands/experiment.d.ts +4 -0
- package/dist/commands/experiment.d.ts.map +1 -0
- package/dist/commands/experiment.js +140 -0
- package/dist/commands/experiment.js.map +1 -0
- package/dist/commands/export-intake-read-helpers.d.ts +150 -0
- package/dist/commands/export-intake-read-helpers.d.ts.map +1 -0
- package/dist/commands/export-intake-read-helpers.js +328 -0
- package/dist/commands/export-intake-read-helpers.js.map +1 -0
- package/dist/commands/export.d.ts +4 -0
- package/dist/commands/export.d.ts.map +1 -0
- package/dist/commands/export.js +179 -0
- package/dist/commands/export.js.map +1 -0
- package/dist/commands/food.d.ts +4 -0
- package/dist/commands/food.d.ts.map +1 -0
- package/dist/commands/food.js +190 -0
- package/dist/commands/food.js.map +1 -0
- package/dist/commands/health-command-factory.d.ts +230 -0
- package/dist/commands/health-command-factory.d.ts.map +1 -0
- package/dist/commands/health-command-factory.js +551 -0
- package/dist/commands/health-command-factory.js.map +1 -0
- package/dist/commands/health-entity-command-registry.d.ts +27 -0
- package/dist/commands/health-entity-command-registry.d.ts.map +1 -0
- package/dist/commands/health-entity-command-registry.js +84 -0
- package/dist/commands/health-entity-command-registry.js.map +1 -0
- package/dist/commands/inbox.d.ts +5 -0
- package/dist/commands/inbox.d.ts.map +1 -0
- package/dist/commands/inbox.js +841 -0
- package/dist/commands/inbox.js.map +1 -0
- package/dist/commands/intake.d.ts +4 -0
- package/dist/commands/intake.d.ts.map +1 -0
- package/dist/commands/intake.js +175 -0
- package/dist/commands/intake.js.map +1 -0
- package/dist/commands/intervention.d.ts +4 -0
- package/dist/commands/intervention.d.ts.map +1 -0
- package/dist/commands/intervention.js +122 -0
- package/dist/commands/intervention.js.map +1 -0
- package/dist/commands/journal.d.ts +12 -0
- package/dist/commands/journal.d.ts.map +1 -0
- package/dist/commands/journal.js +186 -0
- package/dist/commands/journal.js.map +1 -0
- package/dist/commands/meal.d.ts +4 -0
- package/dist/commands/meal.d.ts.map +1 -0
- package/dist/commands/meal.js +123 -0
- package/dist/commands/meal.js.map +1 -0
- package/dist/commands/profile.d.ts +4 -0
- package/dist/commands/profile.d.ts.map +1 -0
- package/dist/commands/profile.js +62 -0
- package/dist/commands/profile.js.map +1 -0
- package/dist/commands/protocol.d.ts +4 -0
- package/dist/commands/protocol.d.ts.map +1 -0
- package/dist/commands/protocol.js +79 -0
- package/dist/commands/protocol.js.map +1 -0
- package/dist/commands/provider.d.ts +4 -0
- package/dist/commands/provider.d.ts.map +1 -0
- package/dist/commands/provider.js +115 -0
- package/dist/commands/provider.js.map +1 -0
- package/dist/commands/read.d.ts +4 -0
- package/dist/commands/read.d.ts.map +1 -0
- package/dist/commands/read.js +55 -0
- package/dist/commands/read.js.map +1 -0
- package/dist/commands/recipe.d.ts +4 -0
- package/dist/commands/recipe.d.ts.map +1 -0
- package/dist/commands/recipe.js +116 -0
- package/dist/commands/recipe.js.map +1 -0
- package/dist/commands/record-mutation-command-helpers.d.ts +196 -0
- package/dist/commands/record-mutation-command-helpers.d.ts.map +1 -0
- package/dist/commands/record-mutation-command-helpers.js +150 -0
- package/dist/commands/record-mutation-command-helpers.js.map +1 -0
- package/dist/commands/research.d.ts +3 -0
- package/dist/commands/research.d.ts.map +1 -0
- package/dist/commands/research.js +104 -0
- package/dist/commands/research.js.map +1 -0
- package/dist/commands/sample-batch-command-helpers.d.ts +24 -0
- package/dist/commands/sample-batch-command-helpers.d.ts.map +1 -0
- package/dist/commands/sample-batch-command-helpers.js +99 -0
- package/dist/commands/sample-batch-command-helpers.js.map +1 -0
- package/dist/commands/sample-import-command-helpers.d.ts +24 -0
- package/dist/commands/sample-import-command-helpers.d.ts.map +1 -0
- package/dist/commands/sample-import-command-helpers.js +49 -0
- package/dist/commands/sample-import-command-helpers.js.map +1 -0
- package/dist/commands/sample-query-command-helpers.d.ts +11 -0
- package/dist/commands/sample-query-command-helpers.d.ts.map +1 -0
- package/dist/commands/sample-query-command-helpers.js +26 -0
- package/dist/commands/sample-query-command-helpers.js.map +1 -0
- package/dist/commands/samples.d.ts +4 -0
- package/dist/commands/samples.d.ts.map +1 -0
- package/dist/commands/samples.js +261 -0
- package/dist/commands/samples.js.map +1 -0
- package/dist/commands/search.d.ts +4 -0
- package/dist/commands/search.d.ts.map +1 -0
- package/dist/commands/search.js +295 -0
- package/dist/commands/search.js.map +1 -0
- package/dist/commands/supplement.d.ts +4 -0
- package/dist/commands/supplement.d.ts.map +1 -0
- package/dist/commands/supplement.js +338 -0
- package/dist/commands/supplement.js.map +1 -0
- package/dist/commands/vault.d.ts +4 -0
- package/dist/commands/vault.d.ts.map +1 -0
- package/dist/commands/vault.js +164 -0
- package/dist/commands/vault.js.map +1 -0
- package/dist/commands/workout.d.ts +4 -0
- package/dist/commands/workout.d.ts.map +1 -0
- package/dist/commands/workout.js +284 -0
- package/dist/commands/workout.js.map +1 -0
- package/dist/incur.generated.d.ts +2164 -0
- package/dist/incur.generated.d.ts.map +1 -0
- package/dist/incur.generated.js +2 -0
- package/dist/incur.generated.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/research-cli-contracts.d.ts +22 -0
- package/dist/research-cli-contracts.d.ts.map +1 -0
- package/dist/research-cli-contracts.js +18 -0
- package/dist/research-cli-contracts.js.map +1 -0
- package/dist/research-runtime.d.ts +79 -0
- package/dist/research-runtime.d.ts.map +1 -0
- package/dist/research-runtime.js +351 -0
- package/dist/research-runtime.js.map +1 -0
- package/dist/run-terminal-logging.d.ts +12 -0
- package/dist/run-terminal-logging.d.ts.map +1 -0
- package/dist/run-terminal-logging.js +323 -0
- package/dist/run-terminal-logging.js.map +1 -0
- package/dist/setup-agentmail.d.ts +30 -0
- package/dist/setup-agentmail.d.ts.map +1 -0
- package/dist/setup-agentmail.js +136 -0
- package/dist/setup-agentmail.js.map +1 -0
- package/dist/setup-assistant-account.d.ts +29 -0
- package/dist/setup-assistant-account.d.ts.map +1 -0
- package/dist/setup-assistant-account.js +443 -0
- package/dist/setup-assistant-account.js.map +1 -0
- package/dist/setup-assistant.d.ts +34 -0
- package/dist/setup-assistant.d.ts.map +1 -0
- package/dist/setup-assistant.js +355 -0
- package/dist/setup-assistant.js.map +1 -0
- package/dist/setup-cli.d.ts +72 -0
- package/dist/setup-cli.d.ts.map +1 -0
- package/dist/setup-cli.js +387 -0
- package/dist/setup-cli.js.map +1 -0
- package/dist/setup-services/channels.d.ts +19 -0
- package/dist/setup-services/channels.d.ts.map +1 -0
- package/dist/setup-services/channels.js +721 -0
- package/dist/setup-services/channels.js.map +1 -0
- package/dist/setup-services/process.d.ts +18 -0
- package/dist/setup-services/process.d.ts.map +1 -0
- package/dist/setup-services/process.js +98 -0
- package/dist/setup-services/process.js.map +1 -0
- package/dist/setup-services/scheduled-updates.d.ts +9 -0
- package/dist/setup-services/scheduled-updates.d.ts.map +1 -0
- package/dist/setup-services/scheduled-updates.js +64 -0
- package/dist/setup-services/scheduled-updates.js.map +1 -0
- package/dist/setup-services/shell.d.ts +18 -0
- package/dist/setup-services/shell.d.ts.map +1 -0
- package/dist/setup-services/shell.js +447 -0
- package/dist/setup-services/shell.js.map +1 -0
- package/dist/setup-services/steps.d.ts +39 -0
- package/dist/setup-services/steps.d.ts.map +1 -0
- package/dist/setup-services/steps.js +86 -0
- package/dist/setup-services/steps.js.map +1 -0
- package/dist/setup-services/toolchain.d.ts +46 -0
- package/dist/setup-services/toolchain.d.ts.map +1 -0
- package/dist/setup-services/toolchain.js +232 -0
- package/dist/setup-services/toolchain.js.map +1 -0
- package/dist/setup-services.d.ts +44 -0
- package/dist/setup-services.d.ts.map +1 -0
- package/dist/setup-services.js +739 -0
- package/dist/setup-services.js.map +1 -0
- package/dist/setup-wizard.d.ts +101 -0
- package/dist/setup-wizard.d.ts.map +1 -0
- package/dist/setup-wizard.js +1458 -0
- package/dist/setup-wizard.js.map +1 -0
- package/dist/usecases/intervention.d.ts +63 -0
- package/dist/usecases/intervention.d.ts.map +1 -0
- package/dist/usecases/intervention.js +205 -0
- package/dist/usecases/intervention.js.map +1 -0
- package/dist/usecases/text-duration.d.ts +4 -0
- package/dist/usecases/text-duration.d.ts.map +1 -0
- package/dist/usecases/text-duration.js +63 -0
- package/dist/usecases/text-duration.js.map +1 -0
- package/dist/usecases/workout-format.d.ts +139 -0
- package/dist/usecases/workout-format.d.ts.map +1 -0
- package/dist/usecases/workout-format.js +445 -0
- package/dist/usecases/workout-format.js.map +1 -0
- package/dist/usecases/workout.d.ts +94 -0
- package/dist/usecases/workout.d.ts.map +1 -0
- package/dist/usecases/workout.js +411 -0
- package/dist/usecases/workout.js.map +1 -0
- package/dist/vault-cli-command-manifest.d.ts +562 -0
- package/dist/vault-cli-command-manifest.d.ts.map +1 -0
- package/dist/vault-cli-command-manifest.js +759 -0
- package/dist/vault-cli-command-manifest.js.map +1 -0
- package/dist/vault-cli.d.ts +6 -0
- package/dist/vault-cli.d.ts.map +1 -0
- package/dist/vault-cli.js +38 -0
- package/dist/vault-cli.js.map +1 -0
- package/package.json +85 -0
|
@@ -0,0 +1,562 @@
|
|
|
1
|
+
import { Cli, z } from 'incur';
|
|
2
|
+
import type { InboxServices } from '@murphai/assistant-core/inbox-services';
|
|
3
|
+
import type { VaultServices } from '@murphai/assistant-core/vault-services';
|
|
4
|
+
type VaultServiceGroupName = Extract<keyof VaultServices, string>;
|
|
5
|
+
type InboxServiceMethodName = Extract<keyof InboxServices, string>;
|
|
6
|
+
type CommandExample = Readonly<Record<string, unknown>>;
|
|
7
|
+
type DirectVaultServiceBindings = {
|
|
8
|
+
[TGroupName in VaultServiceGroupName]?: ReadonlyArray<Extract<keyof VaultServices[TGroupName], string>>;
|
|
9
|
+
};
|
|
10
|
+
export interface VaultCliLeafCommandDescriptor {
|
|
11
|
+
path: readonly [string, ...string[]];
|
|
12
|
+
description: string;
|
|
13
|
+
examples?: readonly CommandExample[];
|
|
14
|
+
hint?: string;
|
|
15
|
+
output?: z.ZodType<unknown>;
|
|
16
|
+
}
|
|
17
|
+
interface BaseVaultCliCommandDescriptor {
|
|
18
|
+
id: string;
|
|
19
|
+
rootCommandNames: readonly [string, ...string[]];
|
|
20
|
+
leafCommands?: readonly VaultCliLeafCommandDescriptor[];
|
|
21
|
+
register(input: {
|
|
22
|
+
cli: Cli.Cli;
|
|
23
|
+
services: VaultServices;
|
|
24
|
+
inboxServices: InboxServices;
|
|
25
|
+
}): void;
|
|
26
|
+
}
|
|
27
|
+
interface DirectBindingCommandDescriptor extends BaseVaultCliCommandDescriptor {
|
|
28
|
+
bindingMode: 'direct';
|
|
29
|
+
directVaultServiceBindings?: DirectVaultServiceBindings;
|
|
30
|
+
directInboxServiceBindings?: readonly InboxServiceMethodName[];
|
|
31
|
+
}
|
|
32
|
+
interface NonDirectBindingCommandDescriptor extends BaseVaultCliCommandDescriptor {
|
|
33
|
+
bindingMode: 'indirect' | 'none';
|
|
34
|
+
}
|
|
35
|
+
export type VaultCliCommandDescriptor = DirectBindingCommandDescriptor | NonDirectBindingCommandDescriptor;
|
|
36
|
+
export interface CollectedVaultCliDirectServiceBindings {
|
|
37
|
+
inbox: readonly InboxServiceMethodName[];
|
|
38
|
+
vault: {
|
|
39
|
+
[TGroupName in VaultServiceGroupName]: ReadonlyArray<Extract<keyof VaultServices[TGroupName], string>>;
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
export declare const vaultCliCommandDescriptors: readonly [{
|
|
43
|
+
readonly id: "vault";
|
|
44
|
+
readonly bindingMode: "direct";
|
|
45
|
+
readonly rootCommandNames: readonly ["init", "validate", "vault"];
|
|
46
|
+
readonly directVaultServiceBindings: {
|
|
47
|
+
readonly core: readonly ["init", "validate", "updateVault", "repairVault"];
|
|
48
|
+
readonly query: readonly ["showVault", "showVaultPaths", "showVaultStats"];
|
|
49
|
+
};
|
|
50
|
+
readonly register: ({ cli, services }: {
|
|
51
|
+
cli: Cli.Cli;
|
|
52
|
+
services: VaultServices;
|
|
53
|
+
inboxServices: InboxServices;
|
|
54
|
+
}) => void;
|
|
55
|
+
}, {
|
|
56
|
+
readonly id: "assistant";
|
|
57
|
+
readonly bindingMode: "indirect";
|
|
58
|
+
readonly rootCommandNames: readonly ["assistant", "chat", "run", "status", "doctor", "stop"];
|
|
59
|
+
readonly register: ({ cli, services, inboxServices }: {
|
|
60
|
+
cli: Cli.Cli;
|
|
61
|
+
services: VaultServices;
|
|
62
|
+
inboxServices: InboxServices;
|
|
63
|
+
}) => void;
|
|
64
|
+
}, {
|
|
65
|
+
readonly id: "audit";
|
|
66
|
+
readonly bindingMode: "none";
|
|
67
|
+
readonly rootCommandNames: readonly ["audit"];
|
|
68
|
+
readonly register: ({ cli, services }: {
|
|
69
|
+
cli: Cli.Cli;
|
|
70
|
+
services: VaultServices;
|
|
71
|
+
inboxServices: InboxServices;
|
|
72
|
+
}) => void;
|
|
73
|
+
}, {
|
|
74
|
+
readonly id: "document";
|
|
75
|
+
readonly bindingMode: "direct";
|
|
76
|
+
readonly rootCommandNames: readonly ["document"];
|
|
77
|
+
readonly leafCommands: readonly [{
|
|
78
|
+
readonly path: readonly ["document", "import"];
|
|
79
|
+
readonly description: "Import one document artifact as a canonical document event plus immutable raw artifacts.";
|
|
80
|
+
}, {
|
|
81
|
+
readonly path: readonly ["document", "show"];
|
|
82
|
+
readonly description: "Show one imported document by document id or canonical event id.";
|
|
83
|
+
}, {
|
|
84
|
+
readonly path: readonly ["document", "list"];
|
|
85
|
+
readonly description: "List imported document events within an optional date range.";
|
|
86
|
+
}, {
|
|
87
|
+
readonly path: readonly ["document", "manifest"];
|
|
88
|
+
readonly description: "Show the immutable raw-import manifest for one imported document.";
|
|
89
|
+
}, {
|
|
90
|
+
readonly path: readonly ["document", "edit"];
|
|
91
|
+
readonly description: "Edit one imported document event by merging a partial JSON patch or path assignments.";
|
|
92
|
+
}, {
|
|
93
|
+
readonly path: readonly ["document", "delete"];
|
|
94
|
+
readonly description: "Delete one imported document event while leaving immutable raw artifacts on disk.";
|
|
95
|
+
}];
|
|
96
|
+
readonly directVaultServiceBindings: {
|
|
97
|
+
readonly importers: readonly ["importDocument"];
|
|
98
|
+
readonly query: readonly ["showDocument", "listDocuments", "showDocumentManifest"];
|
|
99
|
+
};
|
|
100
|
+
readonly register: ({ cli, services }: {
|
|
101
|
+
cli: Cli.Cli;
|
|
102
|
+
services: VaultServices;
|
|
103
|
+
inboxServices: InboxServices;
|
|
104
|
+
}) => void;
|
|
105
|
+
}, {
|
|
106
|
+
readonly id: "device";
|
|
107
|
+
readonly bindingMode: "direct";
|
|
108
|
+
readonly rootCommandNames: readonly ["device"];
|
|
109
|
+
readonly directVaultServiceBindings: {
|
|
110
|
+
readonly devices: readonly ["listProviders", "connect", "listAccounts", "showAccount", "reconcileAccount", "disconnectAccount", "daemonStatus", "daemonStart", "daemonStop"];
|
|
111
|
+
};
|
|
112
|
+
readonly register: ({ cli, services }: {
|
|
113
|
+
cli: Cli.Cli;
|
|
114
|
+
services: VaultServices;
|
|
115
|
+
inboxServices: InboxServices;
|
|
116
|
+
}) => void;
|
|
117
|
+
}, {
|
|
118
|
+
readonly id: "meal";
|
|
119
|
+
readonly bindingMode: "none";
|
|
120
|
+
readonly rootCommandNames: readonly ["meal"];
|
|
121
|
+
readonly leafCommands: readonly [{
|
|
122
|
+
readonly path: readonly ["meal", "add"];
|
|
123
|
+
readonly description: "Record one meal from raw photo/audio artifacts or a freeform note.";
|
|
124
|
+
}, {
|
|
125
|
+
readonly path: readonly ["meal", "show"];
|
|
126
|
+
readonly description: "Show one meal by meal id or canonical event id.";
|
|
127
|
+
}, {
|
|
128
|
+
readonly path: readonly ["meal", "list"];
|
|
129
|
+
readonly description: "List meal events within an optional date range.";
|
|
130
|
+
}, {
|
|
131
|
+
readonly path: readonly ["meal", "manifest"];
|
|
132
|
+
readonly description: "Show the immutable raw-import manifest for one recorded meal.";
|
|
133
|
+
}, {
|
|
134
|
+
readonly path: readonly ["meal", "edit"];
|
|
135
|
+
readonly description: "Edit one meal event by merging a partial JSON patch or path assignments.";
|
|
136
|
+
}, {
|
|
137
|
+
readonly path: readonly ["meal", "delete"];
|
|
138
|
+
readonly description: "Delete one meal event while leaving immutable raw artifacts on disk.";
|
|
139
|
+
}];
|
|
140
|
+
readonly register: ({ cli, services }: {
|
|
141
|
+
cli: Cli.Cli;
|
|
142
|
+
services: VaultServices;
|
|
143
|
+
inboxServices: InboxServices;
|
|
144
|
+
}) => void;
|
|
145
|
+
}, {
|
|
146
|
+
readonly id: "workout";
|
|
147
|
+
readonly bindingMode: "none";
|
|
148
|
+
readonly rootCommandNames: readonly ["workout"];
|
|
149
|
+
readonly leafCommands: readonly [{
|
|
150
|
+
readonly path: readonly ["workout", "add"];
|
|
151
|
+
readonly description: "Record one workout from a freeform note with lightweight structured inference.";
|
|
152
|
+
}, {
|
|
153
|
+
readonly path: readonly ["workout", "edit"];
|
|
154
|
+
readonly description: "Edit one saved workout activity event by merging a partial JSON patch or path assignments.";
|
|
155
|
+
}, {
|
|
156
|
+
readonly path: readonly ["workout", "delete"];
|
|
157
|
+
readonly description: "Delete one workout activity event.";
|
|
158
|
+
}, {
|
|
159
|
+
readonly path: readonly ["workout", "format", "save"];
|
|
160
|
+
readonly description: "Save or update one reusable workout format from a name plus workout text.";
|
|
161
|
+
}, {
|
|
162
|
+
readonly path: readonly ["workout", "format", "show"];
|
|
163
|
+
readonly description: "Show one saved workout format by name, slug, or id.";
|
|
164
|
+
}, {
|
|
165
|
+
readonly path: readonly ["workout", "format", "list"];
|
|
166
|
+
readonly description: "List saved workout formats.";
|
|
167
|
+
}, {
|
|
168
|
+
readonly path: readonly ["workout", "format", "log"];
|
|
169
|
+
readonly description: "Log one dated workout from a saved workout format through the same canonical event path as workout add.";
|
|
170
|
+
}];
|
|
171
|
+
readonly register: ({ cli, services }: {
|
|
172
|
+
cli: Cli.Cli;
|
|
173
|
+
services: VaultServices;
|
|
174
|
+
inboxServices: InboxServices;
|
|
175
|
+
}) => void;
|
|
176
|
+
}, {
|
|
177
|
+
readonly id: "intervention";
|
|
178
|
+
readonly bindingMode: "none";
|
|
179
|
+
readonly rootCommandNames: readonly ["intervention"];
|
|
180
|
+
readonly leafCommands: readonly [{
|
|
181
|
+
readonly path: readonly ["intervention", "add"];
|
|
182
|
+
readonly description: "Record one intervention session from a freeform note with lightweight structured inference.";
|
|
183
|
+
}, {
|
|
184
|
+
readonly path: readonly ["intervention", "edit"];
|
|
185
|
+
readonly description: "Edit one saved intervention session event by merging a partial JSON patch or path assignments.";
|
|
186
|
+
}, {
|
|
187
|
+
readonly path: readonly ["intervention", "delete"];
|
|
188
|
+
readonly description: "Delete one intervention_session event.";
|
|
189
|
+
}];
|
|
190
|
+
readonly register: ({ cli, services }: {
|
|
191
|
+
cli: Cli.Cli;
|
|
192
|
+
services: VaultServices;
|
|
193
|
+
inboxServices: InboxServices;
|
|
194
|
+
}) => void;
|
|
195
|
+
}, {
|
|
196
|
+
readonly id: "provider";
|
|
197
|
+
readonly bindingMode: "direct";
|
|
198
|
+
readonly rootCommandNames: readonly ["provider"];
|
|
199
|
+
readonly leafCommands: readonly [{
|
|
200
|
+
readonly path: readonly ["provider", "scaffold"];
|
|
201
|
+
readonly description: "Emit a provider payload template for `provider upsert`.";
|
|
202
|
+
}, {
|
|
203
|
+
readonly path: readonly ["provider", "show"];
|
|
204
|
+
readonly description: "Show one provider by canonical id or slug.";
|
|
205
|
+
}, {
|
|
206
|
+
readonly path: readonly ["provider", "list"];
|
|
207
|
+
readonly description: "List provider records with an optional status filter.";
|
|
208
|
+
}, {
|
|
209
|
+
readonly path: readonly ["provider", "upsert"];
|
|
210
|
+
readonly description: "Create or update one provider Markdown record from a JSON payload file or stdin.";
|
|
211
|
+
}, {
|
|
212
|
+
readonly path: readonly ["provider", "edit"];
|
|
213
|
+
readonly description: "Edit one provider by merging a partial JSON patch or path assignments.";
|
|
214
|
+
}, {
|
|
215
|
+
readonly path: readonly ["provider", "delete"];
|
|
216
|
+
readonly description: "Delete one provider Markdown record.";
|
|
217
|
+
}];
|
|
218
|
+
readonly directVaultServiceBindings: {
|
|
219
|
+
readonly core: readonly ["scaffoldProvider", "upsertProvider"];
|
|
220
|
+
readonly query: readonly ["showProvider", "listProviders"];
|
|
221
|
+
};
|
|
222
|
+
readonly register: ({ cli, services }: {
|
|
223
|
+
cli: Cli.Cli;
|
|
224
|
+
services: VaultServices;
|
|
225
|
+
inboxServices: InboxServices;
|
|
226
|
+
}) => void;
|
|
227
|
+
}, {
|
|
228
|
+
readonly id: "recipe";
|
|
229
|
+
readonly bindingMode: "direct";
|
|
230
|
+
readonly rootCommandNames: readonly ["recipe"];
|
|
231
|
+
readonly leafCommands: readonly [{
|
|
232
|
+
readonly path: readonly ["recipe", "scaffold"];
|
|
233
|
+
readonly description: "Emit a recipe payload template for `recipe upsert`.";
|
|
234
|
+
}, {
|
|
235
|
+
readonly path: readonly ["recipe", "show"];
|
|
236
|
+
readonly description: "Show one recipe by canonical id or slug.";
|
|
237
|
+
}, {
|
|
238
|
+
readonly path: readonly ["recipe", "list"];
|
|
239
|
+
readonly description: "List recipe records with an optional status filter.";
|
|
240
|
+
}, {
|
|
241
|
+
readonly path: readonly ["recipe", "upsert"];
|
|
242
|
+
readonly description: "Create or update one recipe Markdown record from a JSON payload file or stdin.";
|
|
243
|
+
}, {
|
|
244
|
+
readonly path: readonly ["recipe", "edit"];
|
|
245
|
+
readonly description: "Edit one recipe by merging a partial JSON patch or path assignments.";
|
|
246
|
+
}, {
|
|
247
|
+
readonly path: readonly ["recipe", "delete"];
|
|
248
|
+
readonly description: "Delete one recipe Markdown record.";
|
|
249
|
+
}];
|
|
250
|
+
readonly directVaultServiceBindings: {
|
|
251
|
+
readonly core: readonly ["scaffoldRecipe", "upsertRecipe"];
|
|
252
|
+
readonly query: readonly ["showRecipe", "listRecipes"];
|
|
253
|
+
};
|
|
254
|
+
readonly register: ({ cli, services }: {
|
|
255
|
+
cli: Cli.Cli;
|
|
256
|
+
services: VaultServices;
|
|
257
|
+
inboxServices: InboxServices;
|
|
258
|
+
}) => void;
|
|
259
|
+
}, {
|
|
260
|
+
readonly id: "food";
|
|
261
|
+
readonly bindingMode: "direct";
|
|
262
|
+
readonly rootCommandNames: readonly ["food"];
|
|
263
|
+
readonly leafCommands: readonly [{
|
|
264
|
+
readonly path: readonly ["food", "list"];
|
|
265
|
+
readonly description: "List food records with an optional status filter.";
|
|
266
|
+
}, {
|
|
267
|
+
readonly path: readonly ["food", "scaffold"];
|
|
268
|
+
readonly description: "Emit a food payload template for `food upsert`.";
|
|
269
|
+
}, {
|
|
270
|
+
readonly path: readonly ["food", "show"];
|
|
271
|
+
readonly description: "Show one food by canonical id or slug.";
|
|
272
|
+
}, {
|
|
273
|
+
readonly path: readonly ["food", "upsert"];
|
|
274
|
+
readonly description: "Create or update one food Markdown record from a JSON payload file or stdin.";
|
|
275
|
+
}, {
|
|
276
|
+
readonly path: readonly ["food", "edit"];
|
|
277
|
+
readonly description: "Edit one food by merging a partial JSON patch or path assignments.";
|
|
278
|
+
}, {
|
|
279
|
+
readonly path: readonly ["food", "delete"];
|
|
280
|
+
readonly description: "Delete one remembered food Markdown record.";
|
|
281
|
+
}, {
|
|
282
|
+
readonly path: readonly ["food", "schedule"];
|
|
283
|
+
readonly description: "Schedule one remembered food for daily auto-log meal creation.";
|
|
284
|
+
}];
|
|
285
|
+
readonly directVaultServiceBindings: {
|
|
286
|
+
readonly core: readonly ["scaffoldFood", "upsertFood", "addDailyFood"];
|
|
287
|
+
readonly query: readonly ["showFood", "listFoods"];
|
|
288
|
+
};
|
|
289
|
+
readonly register: ({ cli, services }: {
|
|
290
|
+
cli: Cli.Cli;
|
|
291
|
+
services: VaultServices;
|
|
292
|
+
inboxServices: InboxServices;
|
|
293
|
+
}) => void;
|
|
294
|
+
}, {
|
|
295
|
+
readonly id: "event";
|
|
296
|
+
readonly bindingMode: "direct";
|
|
297
|
+
readonly rootCommandNames: readonly ["event"];
|
|
298
|
+
readonly leafCommands: readonly [{
|
|
299
|
+
readonly path: readonly ["event", "list"];
|
|
300
|
+
readonly description: "List canonical event records with optional date, tag, and experiment filters.";
|
|
301
|
+
}, {
|
|
302
|
+
readonly path: readonly ["event", "scaffold"];
|
|
303
|
+
readonly description: "Emit an event payload template for one supported canonical event kind.";
|
|
304
|
+
}, {
|
|
305
|
+
readonly path: readonly ["event", "show"];
|
|
306
|
+
readonly description: "Show one canonical event by event id.";
|
|
307
|
+
}, {
|
|
308
|
+
readonly path: readonly ["event", "upsert"];
|
|
309
|
+
readonly description: "Create or update one canonical event from a JSON payload file or stdin.";
|
|
310
|
+
}, {
|
|
311
|
+
readonly path: readonly ["event", "edit"];
|
|
312
|
+
readonly description: "Edit one canonical event by merging a partial JSON patch or path assignments.";
|
|
313
|
+
}, {
|
|
314
|
+
readonly path: readonly ["event", "delete"];
|
|
315
|
+
readonly description: "Delete one canonical event by event id.";
|
|
316
|
+
}];
|
|
317
|
+
readonly directVaultServiceBindings: {
|
|
318
|
+
readonly core: readonly ["scaffoldEvent", "upsertEvent"];
|
|
319
|
+
readonly query: readonly ["showEvent", "listEvents"];
|
|
320
|
+
};
|
|
321
|
+
readonly register: ({ cli, services }: {
|
|
322
|
+
cli: Cli.Cli;
|
|
323
|
+
services: VaultServices;
|
|
324
|
+
inboxServices: InboxServices;
|
|
325
|
+
}) => void;
|
|
326
|
+
}, {
|
|
327
|
+
readonly id: "samples";
|
|
328
|
+
readonly bindingMode: "direct";
|
|
329
|
+
readonly rootCommandNames: readonly ["samples"];
|
|
330
|
+
readonly directVaultServiceBindings: {
|
|
331
|
+
readonly core: readonly ["addSamples"];
|
|
332
|
+
};
|
|
333
|
+
readonly register: ({ cli, services }: {
|
|
334
|
+
cli: Cli.Cli;
|
|
335
|
+
services: VaultServices;
|
|
336
|
+
inboxServices: InboxServices;
|
|
337
|
+
}) => void;
|
|
338
|
+
}, {
|
|
339
|
+
readonly id: "experiment";
|
|
340
|
+
readonly bindingMode: "direct";
|
|
341
|
+
readonly rootCommandNames: readonly ["experiment"];
|
|
342
|
+
readonly directVaultServiceBindings: {
|
|
343
|
+
readonly core: readonly ["createExperiment", "updateExperiment", "checkpointExperiment", "stopExperiment"];
|
|
344
|
+
readonly query: readonly ["showExperiment", "listExperiments"];
|
|
345
|
+
};
|
|
346
|
+
readonly register: ({ cli, services }: {
|
|
347
|
+
cli: Cli.Cli;
|
|
348
|
+
services: VaultServices;
|
|
349
|
+
inboxServices: InboxServices;
|
|
350
|
+
}) => void;
|
|
351
|
+
}, {
|
|
352
|
+
readonly id: "journal";
|
|
353
|
+
readonly bindingMode: "direct";
|
|
354
|
+
readonly rootCommandNames: readonly ["journal"];
|
|
355
|
+
readonly directVaultServiceBindings: {
|
|
356
|
+
readonly core: readonly ["ensureJournal", "appendJournal", "linkJournalEvents", "unlinkJournalEvents", "linkJournalStreams", "unlinkJournalStreams"];
|
|
357
|
+
readonly query: readonly ["showJournal", "listJournals"];
|
|
358
|
+
};
|
|
359
|
+
readonly register: ({ cli, services }: {
|
|
360
|
+
cli: Cli.Cli;
|
|
361
|
+
services: VaultServices;
|
|
362
|
+
inboxServices: InboxServices;
|
|
363
|
+
}) => void;
|
|
364
|
+
}, {
|
|
365
|
+
readonly id: "read";
|
|
366
|
+
readonly bindingMode: "direct";
|
|
367
|
+
readonly rootCommandNames: readonly ["show", "list"];
|
|
368
|
+
readonly directVaultServiceBindings: {
|
|
369
|
+
readonly query: readonly ["show", "list"];
|
|
370
|
+
};
|
|
371
|
+
readonly register: ({ cli, services }: {
|
|
372
|
+
cli: Cli.Cli;
|
|
373
|
+
services: VaultServices;
|
|
374
|
+
inboxServices: InboxServices;
|
|
375
|
+
}) => void;
|
|
376
|
+
}, {
|
|
377
|
+
readonly id: "search";
|
|
378
|
+
readonly bindingMode: "none";
|
|
379
|
+
readonly rootCommandNames: readonly ["search", "timeline"];
|
|
380
|
+
readonly register: ({ cli, services }: {
|
|
381
|
+
cli: Cli.Cli;
|
|
382
|
+
services: VaultServices;
|
|
383
|
+
inboxServices: InboxServices;
|
|
384
|
+
}) => void;
|
|
385
|
+
}, {
|
|
386
|
+
readonly id: "research";
|
|
387
|
+
readonly bindingMode: "none";
|
|
388
|
+
readonly rootCommandNames: readonly ["research", "deepthink"];
|
|
389
|
+
readonly leafCommands: readonly [{
|
|
390
|
+
readonly path: readonly ["research"];
|
|
391
|
+
readonly description: "Run ChatGPT Deep Research through review:gpt, auto-send the staged prompt, wait for the response, and save the markdown note into research/ inside the vault. These runs commonly take 10 to 60 minutes.";
|
|
392
|
+
readonly output: z.ZodObject<{
|
|
393
|
+
vault: z.ZodString;
|
|
394
|
+
mode: z.ZodEnum<{
|
|
395
|
+
"deep-research": "deep-research";
|
|
396
|
+
"gpt-pro": "gpt-pro";
|
|
397
|
+
}>;
|
|
398
|
+
title: z.ZodString;
|
|
399
|
+
prompt: z.ZodString;
|
|
400
|
+
notePath: z.ZodString;
|
|
401
|
+
savedAt: z.ZodString;
|
|
402
|
+
response: z.ZodString;
|
|
403
|
+
responseLength: z.ZodNumber;
|
|
404
|
+
chat: z.ZodNullable<z.ZodString>;
|
|
405
|
+
model: z.ZodNullable<z.ZodString>;
|
|
406
|
+
thinking: z.ZodNullable<z.ZodString>;
|
|
407
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
408
|
+
}, z.core.$strip>;
|
|
409
|
+
}, {
|
|
410
|
+
readonly path: readonly ["deepthink"];
|
|
411
|
+
readonly description: "Run GPT Pro through review:gpt, auto-send the staged prompt, wait for the response, and save the markdown note into research/ inside the vault.";
|
|
412
|
+
readonly output: z.ZodObject<{
|
|
413
|
+
vault: z.ZodString;
|
|
414
|
+
mode: z.ZodEnum<{
|
|
415
|
+
"deep-research": "deep-research";
|
|
416
|
+
"gpt-pro": "gpt-pro";
|
|
417
|
+
}>;
|
|
418
|
+
title: z.ZodString;
|
|
419
|
+
prompt: z.ZodString;
|
|
420
|
+
notePath: z.ZodString;
|
|
421
|
+
savedAt: z.ZodString;
|
|
422
|
+
response: z.ZodString;
|
|
423
|
+
responseLength: z.ZodNumber;
|
|
424
|
+
chat: z.ZodNullable<z.ZodString>;
|
|
425
|
+
model: z.ZodNullable<z.ZodString>;
|
|
426
|
+
thinking: z.ZodNullable<z.ZodString>;
|
|
427
|
+
warnings: z.ZodArray<z.ZodString>;
|
|
428
|
+
}, z.core.$strip>;
|
|
429
|
+
}];
|
|
430
|
+
readonly register: ({ cli }: {
|
|
431
|
+
cli: Cli.Cli;
|
|
432
|
+
services: VaultServices;
|
|
433
|
+
inboxServices: InboxServices;
|
|
434
|
+
}) => void;
|
|
435
|
+
}, {
|
|
436
|
+
readonly id: "export";
|
|
437
|
+
readonly bindingMode: "direct";
|
|
438
|
+
readonly rootCommandNames: readonly ["export"];
|
|
439
|
+
readonly directVaultServiceBindings: {
|
|
440
|
+
readonly query: readonly ["exportPack"];
|
|
441
|
+
};
|
|
442
|
+
readonly register: ({ cli, services }: {
|
|
443
|
+
cli: Cli.Cli;
|
|
444
|
+
services: VaultServices;
|
|
445
|
+
inboxServices: InboxServices;
|
|
446
|
+
}) => void;
|
|
447
|
+
}, {
|
|
448
|
+
readonly id: "intake";
|
|
449
|
+
readonly bindingMode: "direct";
|
|
450
|
+
readonly rootCommandNames: readonly ["intake"];
|
|
451
|
+
readonly directVaultServiceBindings: {
|
|
452
|
+
readonly core: readonly ["projectAssessment"];
|
|
453
|
+
readonly query: readonly ["show", "list"];
|
|
454
|
+
};
|
|
455
|
+
readonly register: ({ cli, services }: {
|
|
456
|
+
cli: Cli.Cli;
|
|
457
|
+
services: VaultServices;
|
|
458
|
+
inboxServices: InboxServices;
|
|
459
|
+
}) => void;
|
|
460
|
+
}, {
|
|
461
|
+
readonly id: "inbox";
|
|
462
|
+
readonly bindingMode: "direct";
|
|
463
|
+
readonly rootCommandNames: readonly ["inbox"];
|
|
464
|
+
readonly directInboxServiceBindings: readonly ["init", "bootstrap", "setup", "sourceAdd", "sourceList", "sourceRemove", "doctor", "parse", "requeue", "backfill", "run", "status", "stop", "list", "show", "search", "listAttachments", "showAttachment", "showAttachmentStatus", "parseAttachment", "reparseAttachment", "promoteMeal", "promoteDocument", "promoteJournal", "promoteExperimentNote"];
|
|
465
|
+
readonly register: ({ cli, services, inboxServices }: {
|
|
466
|
+
cli: Cli.Cli;
|
|
467
|
+
services: VaultServices;
|
|
468
|
+
inboxServices: InboxServices;
|
|
469
|
+
}) => void;
|
|
470
|
+
}, DirectBindingCommandDescriptor, ...DirectBindingCommandDescriptor[], {
|
|
471
|
+
readonly id: "supplement";
|
|
472
|
+
readonly bindingMode: "direct";
|
|
473
|
+
readonly rootCommandNames: readonly ["supplement"];
|
|
474
|
+
readonly leafCommands: readonly [{
|
|
475
|
+
readonly path: readonly ["supplement", "list"];
|
|
476
|
+
readonly description: "List supplements through the health read model.";
|
|
477
|
+
readonly output: z.ZodObject<{
|
|
478
|
+
vault: z.ZodString;
|
|
479
|
+
filters: z.ZodObject<{
|
|
480
|
+
from: z.ZodOptional<z.ZodString>;
|
|
481
|
+
to: z.ZodOptional<z.ZodString>;
|
|
482
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
483
|
+
status: z.ZodOptional<z.ZodString>;
|
|
484
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
485
|
+
}, z.core.$strip>;
|
|
486
|
+
items: z.ZodArray<z.ZodObject<{
|
|
487
|
+
id: z.ZodString;
|
|
488
|
+
kind: z.ZodString;
|
|
489
|
+
title: z.ZodNullable<z.ZodString>;
|
|
490
|
+
occurredAt: z.ZodNullable<z.ZodString>;
|
|
491
|
+
path: z.ZodNullable<z.ZodString>;
|
|
492
|
+
markdown: z.ZodNullable<z.ZodString>;
|
|
493
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
494
|
+
links: z.ZodArray<z.ZodObject<{
|
|
495
|
+
id: z.ZodString;
|
|
496
|
+
kind: z.ZodString;
|
|
497
|
+
queryable: z.ZodBoolean;
|
|
498
|
+
}, z.core.$strip>>;
|
|
499
|
+
}, z.core.$strip>>;
|
|
500
|
+
count: z.ZodNumber;
|
|
501
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
502
|
+
}, z.core.$strip>;
|
|
503
|
+
}, {
|
|
504
|
+
readonly path: readonly ["supplement", "scaffold"];
|
|
505
|
+
readonly description: "Emit a payload template for one supplement product.";
|
|
506
|
+
readonly output: z.ZodObject<{
|
|
507
|
+
vault: z.ZodString;
|
|
508
|
+
noun: z.ZodLiteral<"supplement">;
|
|
509
|
+
payload: z.ZodObject<{}, z.core.$catchall<z.ZodUnknown>>;
|
|
510
|
+
}, z.core.$strip>;
|
|
511
|
+
}, {
|
|
512
|
+
readonly path: readonly ["supplement", "show"];
|
|
513
|
+
readonly description: "Show one supplement by canonical id or slug.";
|
|
514
|
+
readonly output: z.ZodObject<{
|
|
515
|
+
vault: z.ZodString;
|
|
516
|
+
entity: z.ZodObject<{
|
|
517
|
+
id: z.ZodString;
|
|
518
|
+
kind: z.ZodString;
|
|
519
|
+
title: z.ZodNullable<z.ZodString>;
|
|
520
|
+
occurredAt: z.ZodNullable<z.ZodString>;
|
|
521
|
+
path: z.ZodNullable<z.ZodString>;
|
|
522
|
+
markdown: z.ZodNullable<z.ZodString>;
|
|
523
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
524
|
+
links: z.ZodArray<z.ZodObject<{
|
|
525
|
+
id: z.ZodString;
|
|
526
|
+
kind: z.ZodString;
|
|
527
|
+
queryable: z.ZodBoolean;
|
|
528
|
+
}, z.core.$strip>>;
|
|
529
|
+
}, z.core.$strip>;
|
|
530
|
+
}, z.core.$strip>;
|
|
531
|
+
}, {
|
|
532
|
+
readonly path: readonly ["supplement", "upsert"];
|
|
533
|
+
readonly description: "Upsert one supplement from a JSON payload file or stdin.";
|
|
534
|
+
}, {
|
|
535
|
+
readonly path: readonly ["supplement", "stop"];
|
|
536
|
+
readonly description: "Stop one supplement while preserving its canonical id.";
|
|
537
|
+
}, {
|
|
538
|
+
readonly path: readonly ["supplement", "compound", "list"];
|
|
539
|
+
readonly description: "List rolled-up supplement compounds across supplements.";
|
|
540
|
+
}, {
|
|
541
|
+
readonly path: readonly ["supplement", "compound", "show"];
|
|
542
|
+
readonly description: "Show one rolled-up supplement compound by name or lookup id.";
|
|
543
|
+
}];
|
|
544
|
+
readonly directVaultServiceBindings: {
|
|
545
|
+
readonly core: readonly ["scaffoldSupplement", "upsertSupplement", "stopSupplement"];
|
|
546
|
+
readonly query: readonly ["showSupplement", "listSupplements", "showSupplementCompound", "listSupplementCompounds"];
|
|
547
|
+
};
|
|
548
|
+
readonly register: ({ cli, services }: {
|
|
549
|
+
cli: Cli.Cli;
|
|
550
|
+
services: VaultServices;
|
|
551
|
+
inboxServices: InboxServices;
|
|
552
|
+
}) => void;
|
|
553
|
+
}, DirectBindingCommandDescriptor];
|
|
554
|
+
export declare function registerVaultCliCommandDescriptors(input: {
|
|
555
|
+
cli: Cli.Cli;
|
|
556
|
+
services: VaultServices;
|
|
557
|
+
inboxServices: InboxServices;
|
|
558
|
+
}): void;
|
|
559
|
+
export declare function collectVaultCliDescriptorRootCommandNames(): string[];
|
|
560
|
+
export declare function collectVaultCliDirectServiceBindings(): CollectedVaultCliDirectServiceBindings;
|
|
561
|
+
export {};
|
|
562
|
+
//# sourceMappingURL=vault-cli-command-manifest.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vault-cli-command-manifest.d.ts","sourceRoot":"","sources":["../src/vault-cli-command-manifest.ts"],"names":[],"mappings":"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"}
|