ima2-gen 1.1.7 → 1.1.9
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 +56 -27
- package/bin/commands/annotate.js +137 -0
- package/bin/commands/annotate.ts +118 -0
- package/bin/commands/cancel.js +37 -33
- package/bin/commands/cancel.ts +45 -0
- package/bin/commands/canvas-versions.js +91 -0
- package/bin/commands/canvas-versions.ts +80 -0
- package/bin/commands/cardnews.js +293 -0
- package/bin/commands/cardnews.ts +248 -0
- package/bin/commands/comfy.js +63 -0
- package/bin/commands/comfy.ts +54 -0
- package/bin/commands/config.js +270 -0
- package/bin/commands/config.ts +265 -0
- package/bin/commands/edit.js +97 -72
- package/bin/commands/edit.ts +116 -0
- package/bin/commands/gen.js +140 -118
- package/bin/commands/gen.ts +176 -0
- package/bin/commands/history.js +164 -0
- package/bin/commands/history.ts +145 -0
- package/bin/commands/ls.js +60 -42
- package/bin/commands/ls.ts +60 -0
- package/bin/commands/metadata.js +45 -0
- package/bin/commands/metadata.ts +36 -0
- package/bin/commands/multimode.js +159 -0
- package/bin/commands/multimode.ts +146 -0
- package/bin/commands/node.js +176 -0
- package/bin/commands/node.ts +157 -0
- package/bin/commands/observability.js +201 -0
- package/bin/commands/observability.ts +176 -0
- package/bin/commands/ping.js +26 -20
- package/bin/commands/ping.ts +29 -0
- package/bin/commands/prompt.js +506 -0
- package/bin/commands/prompt.ts +421 -0
- package/bin/commands/ps.js +78 -71
- package/bin/commands/ps.ts +78 -0
- package/bin/commands/session.js +308 -0
- package/bin/commands/session.ts +265 -0
- package/bin/commands/show.js +75 -40
- package/bin/commands/show.ts +69 -0
- package/bin/ima2.js +324 -310
- package/bin/ima2.ts +444 -0
- package/bin/lib/args.js +75 -66
- package/bin/lib/args.ts +73 -0
- package/bin/lib/browser-id.js +15 -0
- package/bin/lib/browser-id.ts +16 -0
- package/bin/lib/client.js +91 -83
- package/bin/lib/client.ts +109 -0
- package/bin/lib/error-hints.js +14 -17
- package/bin/lib/error-hints.ts +23 -0
- package/bin/lib/files.js +26 -28
- package/bin/lib/files.ts +39 -0
- package/bin/lib/output.js +44 -42
- package/bin/lib/output.ts +58 -0
- package/bin/lib/platform.js +60 -56
- package/bin/lib/platform.ts +97 -0
- package/bin/lib/sse.js +73 -0
- package/bin/lib/sse.ts +73 -0
- package/bin/lib/star-prompt.js +69 -76
- package/bin/lib/star-prompt.ts +97 -0
- package/bin/lib/storage-doctor.js +34 -35
- package/bin/lib/storage-doctor.ts +38 -0
- package/config.js +147 -190
- package/config.ts +331 -0
- package/docs/API.md +48 -8
- package/docs/CLI.md +190 -0
- package/docs/FAQ.ko.md +5 -5
- package/docs/FAQ.md +5 -5
- package/docs/README.ja.md +71 -25
- package/docs/README.ko.md +61 -24
- package/docs/README.zh-CN.md +73 -27
- package/lib/assetLifecycle.js +130 -130
- package/lib/assetLifecycle.ts +142 -0
- package/lib/canvasVersionStore.js +135 -153
- package/lib/canvasVersionStore.ts +181 -0
- package/lib/cardNewsGenerator.js +127 -142
- package/lib/cardNewsGenerator.ts +162 -0
- package/lib/cardNewsJobStore.js +78 -84
- package/lib/cardNewsJobStore.ts +107 -0
- package/lib/cardNewsManifestStore.js +88 -93
- package/lib/cardNewsManifestStore.ts +112 -0
- package/lib/cardNewsPlanner.js +157 -152
- package/lib/cardNewsPlanner.ts +180 -0
- package/lib/cardNewsPlannerClient.js +101 -98
- package/lib/cardNewsPlannerClient.ts +114 -0
- package/lib/cardNewsPlannerPrompt.js +56 -56
- package/lib/cardNewsPlannerPrompt.ts +60 -0
- package/lib/cardNewsPlannerSchema.js +231 -223
- package/lib/cardNewsPlannerSchema.ts +259 -0
- package/lib/cardNewsRoleTemplateStore.js +39 -41
- package/lib/cardNewsRoleTemplateStore.ts +47 -0
- package/lib/cardNewsTemplateStore.js +171 -175
- package/lib/cardNewsTemplateStore.ts +210 -0
- package/lib/codexDetect.js +44 -47
- package/lib/codexDetect.ts +69 -0
- package/lib/comfyBridge.js +164 -184
- package/lib/comfyBridge.ts +214 -0
- package/lib/db.js +41 -51
- package/lib/db.ts +166 -0
- package/lib/errorClassify.js +62 -78
- package/lib/errorClassify.ts +100 -0
- package/lib/generationErrors.js +140 -103
- package/lib/generationErrors.ts +125 -0
- package/lib/historyList.js +149 -147
- package/lib/historyList.ts +164 -0
- package/lib/imageMetadata.js +86 -89
- package/lib/imageMetadata.ts +111 -0
- package/lib/imageMetadataStore.js +46 -51
- package/lib/imageMetadataStore.ts +67 -0
- package/lib/imageModels.js +38 -45
- package/lib/imageModels.ts +52 -0
- package/lib/inflight.js +131 -150
- package/lib/inflight.ts +204 -0
- package/lib/localImportStore.js +105 -0
- package/lib/localImportStore.ts +111 -0
- package/lib/logger.js +105 -112
- package/lib/logger.ts +150 -0
- package/lib/nodeStore.js +65 -64
- package/lib/nodeStore.ts +81 -0
- package/lib/oauthLauncher.js +61 -59
- package/lib/oauthLauncher.ts +64 -0
- package/lib/oauthNormalize.js +15 -19
- package/lib/oauthNormalize.ts +30 -0
- package/lib/oauthProxy.js +834 -832
- package/lib/oauthProxy.ts +995 -0
- package/lib/openDirectory.js +41 -40
- package/lib/openDirectory.ts +45 -0
- package/lib/pngInfo.js +18 -20
- package/lib/pngInfo.ts +26 -0
- package/lib/promptImport/curatedSources.js +135 -0
- package/lib/promptImport/curatedSources.ts +139 -0
- package/lib/promptImport/discoveryRegistry.js +218 -0
- package/lib/promptImport/discoveryRegistry.ts +236 -0
- package/lib/promptImport/errors.js +10 -10
- package/lib/promptImport/errors.ts +18 -0
- package/lib/promptImport/githubDiscovery.js +238 -0
- package/lib/promptImport/githubDiscovery.ts +248 -0
- package/lib/promptImport/githubFolder.js +302 -0
- package/lib/promptImport/githubFolder.ts +308 -0
- package/lib/promptImport/githubSource.js +194 -171
- package/lib/promptImport/githubSource.ts +239 -0
- package/lib/promptImport/gptImageHints.js +61 -0
- package/lib/promptImport/gptImageHints.ts +68 -0
- package/lib/promptImport/parsePromptCandidates.js +110 -112
- package/lib/promptImport/parsePromptCandidates.ts +153 -0
- package/lib/promptImport/promptIndex.js +230 -0
- package/lib/promptImport/promptIndex.ts +248 -0
- package/lib/promptImport/rankPromptCandidates.js +52 -0
- package/lib/promptImport/rankPromptCandidates.ts +49 -0
- package/lib/providerOptions.js +31 -0
- package/lib/providerOptions.ts +41 -0
- package/lib/referenceImageCompress.js +51 -62
- package/lib/referenceImageCompress.ts +75 -0
- package/lib/refs.js +93 -81
- package/lib/refs.ts +117 -0
- package/lib/requestLogger.js +32 -38
- package/lib/requestLogger.ts +48 -0
- package/lib/responsesImageAdapter.js +351 -0
- package/lib/responsesImageAdapter.ts +352 -0
- package/lib/runtimePorts.js +71 -73
- package/lib/runtimePorts.ts +93 -0
- package/lib/sessionStore.js +179 -230
- package/lib/sessionStore.ts +272 -0
- package/lib/storageMigration.js +247 -245
- package/lib/storageMigration.ts +284 -0
- package/lib/styleSheet.js +86 -90
- package/lib/styleSheet.ts +128 -0
- package/lib/systemTrash.js +18 -0
- package/lib/systemTrash.ts +20 -0
- package/package.json +26 -10
- package/routes/annotations.js +76 -79
- package/routes/annotations.ts +95 -0
- package/routes/canvasVersions.js +50 -54
- package/routes/canvasVersions.ts +64 -0
- package/routes/cardNews.js +158 -171
- package/routes/cardNews.ts +183 -0
- package/routes/comfy.js +23 -31
- package/routes/comfy.ts +39 -0
- package/routes/edit.js +183 -214
- package/routes/edit.ts +230 -0
- package/routes/generate.js +269 -291
- package/routes/generate.ts +309 -0
- package/routes/health.js +102 -107
- package/routes/health.ts +114 -0
- package/routes/history.js +136 -144
- package/routes/history.ts +153 -0
- package/routes/imageImport.js +33 -0
- package/routes/imageImport.ts +33 -0
- package/routes/index.js +18 -16
- package/routes/index.ts +35 -0
- package/routes/metadata.js +60 -64
- package/routes/metadata.ts +71 -0
- package/routes/multimode.js +228 -263
- package/routes/multimode.ts +280 -0
- package/routes/nodes.js +378 -424
- package/routes/nodes.ts +455 -0
- package/routes/promptImport.js +291 -152
- package/routes/promptImport.ts +354 -0
- package/routes/prompts.js +333 -360
- package/routes/prompts.ts +379 -0
- package/routes/sessions.js +277 -285
- package/routes/sessions.ts +292 -0
- package/routes/storage.js +29 -31
- package/routes/storage.ts +39 -0
- package/server.js +189 -196
- package/server.ts +235 -0
- package/ui/dist/.vite/manifest.json +101 -0
- package/ui/dist/assets/CardNewsWorkspace-BJOCey7Z.js +2 -0
- package/ui/dist/assets/NodeCanvas-BZV40eAE.css +1 -0
- package/ui/dist/assets/NodeCanvas-C3dzYNsk.js +7 -0
- package/ui/dist/assets/PromptImportDialog-Dqu1VpUh.js +2 -0
- package/ui/dist/assets/PromptImportDiscoverySection-Dg8T9X0L.js +1 -0
- package/ui/dist/assets/PromptImportFolderSection-DBaqsFO4.js +1 -0
- package/ui/dist/assets/PromptLibraryPanel-p5QqR97M.js +2 -0
- package/ui/dist/assets/SettingsWorkspace-B5bSAZ6u.js +1 -0
- package/ui/dist/assets/index-C9cXwiWE.js +25 -0
- package/ui/dist/assets/index-CGMIkZXn.css +1 -0
- package/ui/dist/assets/index-Cvld7dUZ.js +1 -0
- package/ui/dist/index.html +6 -3
- package/assets/screenshot.png +0 -0
- package/assets/screenshots/classic-generate-light.png +0 -0
- package/assets/screenshots/node-graph-branching.png +0 -0
- package/assets/screenshots/settings-oauth-generation.png +0 -0
- package/assets/screenshots/settings-workspace.png +0 -0
- package/assets/screenshots/style-sheet-editor.png +0 -0
- package/integrations/comfyui/ima2_gen_bridge/__pycache__/__init__.cpython-313.pyc +0 -0
- package/integrations/comfyui/ima2_gen_bridge/__pycache__/nodes.cpython-313.pyc +0 -0
- package/ui/dist/assets/index-DARPdT4Q.css +0 -1
- package/ui/dist/assets/index-ht80GMq4.js +0 -31
- package/ui/dist/assets/index-ht80GMq4.js.map +0 -1
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import { parseArgs } from "../lib/args.js";
|
|
2
|
+
import { resolveServer, request } from "../lib/client.js";
|
|
3
|
+
import { streamSse } from "../lib/sse.js";
|
|
4
|
+
import { fileToDataUri, dataUriToFile, defaultOutName } from "../lib/files.js";
|
|
5
|
+
import { out, die, color, json, exitCodeForError } from "../lib/output.js";
|
|
6
|
+
import { config } from "../../config.js";
|
|
7
|
+
|
|
8
|
+
const HELP = `
|
|
9
|
+
ima2 node <subcommand> [options]
|
|
10
|
+
|
|
11
|
+
Subcommands:
|
|
12
|
+
generate <prompt...> [--parent <nodeId>] [--ref <file>...] [--no-stream] [...gen-style flags]
|
|
13
|
+
show <nodeId> [--json]
|
|
14
|
+
`;
|
|
15
|
+
|
|
16
|
+
const GEN_FLAGS = {
|
|
17
|
+
quality: { short: "q", type: "string", default: "low" },
|
|
18
|
+
size: { short: "s", type: "string", default: "1024x1024" },
|
|
19
|
+
count: { short: "n", type: "string", default: "1" },
|
|
20
|
+
ref: { type: "string", repeatable: true },
|
|
21
|
+
out: { short: "o", type: "string" },
|
|
22
|
+
json: { type: "boolean" },
|
|
23
|
+
timeout: { type: "string", default: "600" },
|
|
24
|
+
server: { type: "string" },
|
|
25
|
+
model: { type: "string" },
|
|
26
|
+
parent: { type: "string" },
|
|
27
|
+
"reasoning-effort": { type: "string" },
|
|
28
|
+
"web-search": { type: "boolean" },
|
|
29
|
+
"no-web-search": { type: "boolean" },
|
|
30
|
+
moderation: { type: "string", default: "low" },
|
|
31
|
+
session: { type: "string" },
|
|
32
|
+
"no-stream": { type: "boolean" },
|
|
33
|
+
help: { short: "h", type: "boolean" },
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
const SHOW_FLAGS = {
|
|
37
|
+
json: { type: "boolean" },
|
|
38
|
+
server: { type: "string" },
|
|
39
|
+
help: { short: "h", type: "boolean" },
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
async function getServer(args) {
|
|
43
|
+
try { return await resolveServer({ serverFlag: args.server }); }
|
|
44
|
+
catch (e: any) { die(exitCodeForError(e), e.message); throw e; }
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
async function generateSub(argv) {
|
|
48
|
+
const args = parseArgs(argv, { flags: GEN_FLAGS });
|
|
49
|
+
if (args.help) { out(HELP); return; }
|
|
50
|
+
const prompt = args.positional.join(" ");
|
|
51
|
+
if (!prompt) die(2, "prompt required");
|
|
52
|
+
const refs = args.ref || [];
|
|
53
|
+
const VALID_REASONING = new Set(["none", "low", "medium", "high", "xhigh"]);
|
|
54
|
+
if (args["reasoning-effort"] && !VALID_REASONING.has(args["reasoning-effort"])) {
|
|
55
|
+
die(2, "--reasoning-effort must be one of: none, low, medium, high, xhigh");
|
|
56
|
+
}
|
|
57
|
+
if (args["web-search"] && args["no-web-search"]) {
|
|
58
|
+
die(2, "--web-search and --no-web-search are mutually exclusive");
|
|
59
|
+
}
|
|
60
|
+
const references = await Promise.all(refs.map((p) => fileToDataUri(p)));
|
|
61
|
+
const server = await getServer(args);
|
|
62
|
+
const body: any = {
|
|
63
|
+
prompt,
|
|
64
|
+
quality: args.quality,
|
|
65
|
+
size: args.size,
|
|
66
|
+
n: Math.max(1, Math.min(8, parseInt(args.count) || 1)),
|
|
67
|
+
references,
|
|
68
|
+
moderation: args.moderation,
|
|
69
|
+
sessionId: args.session,
|
|
70
|
+
};
|
|
71
|
+
if (args.model) body.model = args.model;
|
|
72
|
+
if (args.parent) body.parentNodeId = args.parent;
|
|
73
|
+
if (args["reasoning-effort"]) body.reasoningEffort = args["reasoning-effort"];
|
|
74
|
+
if (args["no-web-search"]) body.webSearchEnabled = false;
|
|
75
|
+
else if (args["web-search"]) body.webSearchEnabled = true;
|
|
76
|
+
|
|
77
|
+
if (args["no-stream"]) {
|
|
78
|
+
const resp: any = await request(server.base, "/api/node/generate", {
|
|
79
|
+
method: "POST",
|
|
80
|
+
body,
|
|
81
|
+
timeoutMs: (parseInt(args.timeout) || 600) * 1000,
|
|
82
|
+
}).catch((e) => die(exitCodeForError(e), `${e.message}${e.code ? ` (${e.code})` : ""}`));
|
|
83
|
+
if (args.json) { json(resp); return; }
|
|
84
|
+
out(color.green("✓ node ") + (resp?.node?.id || "(no id)"));
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
const ac = new AbortController();
|
|
89
|
+
const onSig = () => { ac.abort(); process.exit(130); };
|
|
90
|
+
process.once("SIGINT", onSig); process.once("SIGTERM", onSig);
|
|
91
|
+
|
|
92
|
+
const url = `${server.base}/api/node/generate`;
|
|
93
|
+
const images: any[] = [];
|
|
94
|
+
let doneInfo: any = null;
|
|
95
|
+
try {
|
|
96
|
+
for await (const ev of streamSse(url, { body, signal: ac.signal })) {
|
|
97
|
+
switch (ev.event) {
|
|
98
|
+
case "phase":
|
|
99
|
+
if (!args.json) out(color.dim(`[phase] ${ev.data.phase || ev.data}`));
|
|
100
|
+
break;
|
|
101
|
+
case "partial":
|
|
102
|
+
if (!args.json) out(color.dim(`[partial #${ev.data.index ?? "?"}]`));
|
|
103
|
+
break;
|
|
104
|
+
case "image":
|
|
105
|
+
images.push(ev.data);
|
|
106
|
+
if (!args.json) out(color.green(`✓ image ${images.length}`));
|
|
107
|
+
break;
|
|
108
|
+
case "done":
|
|
109
|
+
doneInfo = ev.data;
|
|
110
|
+
break;
|
|
111
|
+
case "error":
|
|
112
|
+
die(1, `node generate error: ${ev.data.error || ev.data}${ev.data.code ? ` (${ev.data.code})` : ""}`);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
} catch (e: any) {
|
|
116
|
+
if (e.name === "AbortError") return;
|
|
117
|
+
die(exitCodeForError(e), `${e.message}${e.code ? ` (${e.code})` : ""}`);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
const savedPaths: string[] = [];
|
|
121
|
+
for (let i = 0; i < images.length; i++) {
|
|
122
|
+
const im = images[i];
|
|
123
|
+
if (!im.image) continue;
|
|
124
|
+
const target = args.out && i === 0
|
|
125
|
+
? args.out
|
|
126
|
+
: `${config.storage.generatedDir}/${defaultOutName(i, images.length)}`;
|
|
127
|
+
await dataUriToFile(im.image, target);
|
|
128
|
+
savedPaths.push(target);
|
|
129
|
+
}
|
|
130
|
+
if (args.json) {
|
|
131
|
+
json({ ok: true, paths: savedPaths, doneInfo });
|
|
132
|
+
} else {
|
|
133
|
+
for (const p of savedPaths) out(color.green("✓ ") + p);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
async function showSub(argv) {
|
|
138
|
+
const args = parseArgs(argv, { flags: SHOW_FLAGS });
|
|
139
|
+
const id = args.positional[0];
|
|
140
|
+
if (!id) die(2, "nodeId required");
|
|
141
|
+
const server = await getServer(args);
|
|
142
|
+
const resp = await request(server.base, `/api/node/${encodeURIComponent(id)}`).catch((e) => die(exitCodeForError(e), e.message));
|
|
143
|
+
json(resp);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
const SUB: Record<string, (argv: any[]) => Promise<void>> = {
|
|
147
|
+
generate: generateSub,
|
|
148
|
+
show: showSub,
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export default async function nodeCmd(argv) {
|
|
152
|
+
const sub = argv[0];
|
|
153
|
+
if (!sub || sub === "--help" || sub === "-h") { out(HELP); return; }
|
|
154
|
+
const handler = SUB[sub];
|
|
155
|
+
if (!handler) die(2, `unknown subcommand: ${sub}\n${HELP}`);
|
|
156
|
+
return handler(argv.slice(1));
|
|
157
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { parseArgs } from "../lib/args.js";
|
|
2
|
+
import { resolveServer, request } from "../lib/client.js";
|
|
3
|
+
import { out, die, color, json, table, exitCodeForError } from "../lib/output.js";
|
|
4
|
+
const HELP = `
|
|
5
|
+
ima2 <domain> <subcommand> [options]
|
|
6
|
+
|
|
7
|
+
Storage:
|
|
8
|
+
storage status [--json] Storage inspection
|
|
9
|
+
storage open Open generated-dir in OS file manager
|
|
10
|
+
|
|
11
|
+
Billing / Providers / OAuth:
|
|
12
|
+
billing [--json] API usage / quota
|
|
13
|
+
providers [--json] Configured providers
|
|
14
|
+
oauth status [--json] OAuth proxy state
|
|
15
|
+
|
|
16
|
+
Inflight jobs:
|
|
17
|
+
inflight ls [--kind <k>] [--session <id>] [--terminal] [--json]
|
|
18
|
+
inflight rm <requestId> [--json] Force-remove a stuck job
|
|
19
|
+
|
|
20
|
+
Options:
|
|
21
|
+
--json Output raw JSON
|
|
22
|
+
--server <url> Override server URL
|
|
23
|
+
`;
|
|
24
|
+
const FLAGS = {
|
|
25
|
+
json: { type: "boolean" },
|
|
26
|
+
server: { type: "string" },
|
|
27
|
+
kind: { type: "string" },
|
|
28
|
+
session: { type: "string" },
|
|
29
|
+
terminal: { type: "boolean" },
|
|
30
|
+
help: { short: "h", type: "boolean" },
|
|
31
|
+
};
|
|
32
|
+
async function getServer(args) {
|
|
33
|
+
try {
|
|
34
|
+
return await resolveServer({ serverFlag: args.server });
|
|
35
|
+
}
|
|
36
|
+
catch (e) {
|
|
37
|
+
die(exitCodeForError(e), e.message);
|
|
38
|
+
throw e;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
async function storageStatusSub(argv) {
|
|
42
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
43
|
+
const server = await getServer(args);
|
|
44
|
+
const resp = await request(server.base, "/api/storage/status")
|
|
45
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
46
|
+
if (args.json) {
|
|
47
|
+
json(resp);
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
out(JSON.stringify(resp, null, 2));
|
|
51
|
+
}
|
|
52
|
+
async function storageOpenSub(argv) {
|
|
53
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
54
|
+
const server = await getServer(args);
|
|
55
|
+
await request(server.base, "/api/storage/open-generated-dir", { method: "POST" })
|
|
56
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
57
|
+
out(color.green("✓ ") + "opened generated directory");
|
|
58
|
+
}
|
|
59
|
+
async function billingSub(argv) {
|
|
60
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
61
|
+
const server = await getServer(args);
|
|
62
|
+
const resp = await request(server.base, "/api/billing")
|
|
63
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
64
|
+
if (args.json) {
|
|
65
|
+
json(resp);
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
out(JSON.stringify(resp, null, 2));
|
|
69
|
+
}
|
|
70
|
+
async function providersSub(argv) {
|
|
71
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
72
|
+
const server = await getServer(args);
|
|
73
|
+
const resp = await request(server.base, "/api/providers")
|
|
74
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
75
|
+
if (args.json) {
|
|
76
|
+
json(resp);
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
out(JSON.stringify(resp, null, 2));
|
|
80
|
+
}
|
|
81
|
+
async function oauthStatusSub(argv) {
|
|
82
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
83
|
+
const server = await getServer(args);
|
|
84
|
+
const resp = await request(server.base, "/api/oauth/status")
|
|
85
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
86
|
+
if (args.json) {
|
|
87
|
+
json(resp);
|
|
88
|
+
return;
|
|
89
|
+
}
|
|
90
|
+
out(JSON.stringify(resp, null, 2));
|
|
91
|
+
}
|
|
92
|
+
async function inflightLsSub(argv) {
|
|
93
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
94
|
+
const server = await getServer(args);
|
|
95
|
+
const qs = new URLSearchParams();
|
|
96
|
+
if (args.kind)
|
|
97
|
+
qs.set("kind", args.kind);
|
|
98
|
+
if (args.session)
|
|
99
|
+
qs.set("sessionId", args.session);
|
|
100
|
+
if (args.terminal)
|
|
101
|
+
qs.set("includeTerminal", "1");
|
|
102
|
+
const path = `/api/inflight${qs.toString() ? `?${qs}` : ""}`;
|
|
103
|
+
const resp = await request(server.base, path)
|
|
104
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
105
|
+
const jobs = resp.jobs || resp.items || [];
|
|
106
|
+
const terminalJobs = resp.terminalJobs || [];
|
|
107
|
+
if (args.json) {
|
|
108
|
+
json(args.terminal ? { jobs, terminalJobs } : { jobs });
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
if (jobs.length === 0 && terminalJobs.length === 0) {
|
|
112
|
+
out(color.dim(args.terminal ? "(no active or terminal jobs)" : "(no active jobs)"));
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
const now = Date.now();
|
|
116
|
+
if (jobs.length > 0) {
|
|
117
|
+
out(color.bold("Active jobs"));
|
|
118
|
+
table(jobs, [
|
|
119
|
+
{ key: "requestId", label: "ID", format: (v) => String(v || "").slice(0, 10) },
|
|
120
|
+
{ key: "kind", label: "KIND" },
|
|
121
|
+
{ key: "phase", label: "PHASE" },
|
|
122
|
+
{ key: "startedAt", label: "AGE", format: (v) => v ? `${Math.round((now - v) / 1000)}s` : "" },
|
|
123
|
+
{ key: "prompt", label: "PROMPT", format: (v) => {
|
|
124
|
+
const s = String(v || "").replace(/\s+/g, " ");
|
|
125
|
+
return s.length > 40 ? s.slice(0, 37) + "…" : s;
|
|
126
|
+
} },
|
|
127
|
+
]);
|
|
128
|
+
}
|
|
129
|
+
if (terminalJobs.length > 0) {
|
|
130
|
+
if (jobs.length > 0)
|
|
131
|
+
out("");
|
|
132
|
+
out(color.bold("Terminal jobs"));
|
|
133
|
+
table(terminalJobs, [
|
|
134
|
+
{ key: "requestId", label: "ID", format: (v) => String(v || "").slice(0, 10) },
|
|
135
|
+
{ key: "kind", label: "KIND" },
|
|
136
|
+
{ key: "status", label: "STATUS" },
|
|
137
|
+
{ key: "finishedAt", label: "AGE", format: (v) => v ? `${Math.round((now - v) / 1000)}s` : "" },
|
|
138
|
+
{ key: "prompt", label: "PROMPT", format: (v) => {
|
|
139
|
+
const s = String(v || "").replace(/\s+/g, " ");
|
|
140
|
+
return s.length > 40 ? s.slice(0, 37) + "…" : s;
|
|
141
|
+
} },
|
|
142
|
+
]);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
async function inflightRmSub(argv) {
|
|
146
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
147
|
+
const requestId = args.positional[0];
|
|
148
|
+
if (!requestId)
|
|
149
|
+
die(2, "requestId required");
|
|
150
|
+
const server = await getServer(args);
|
|
151
|
+
await request(server.base, `/api/inflight/${encodeURIComponent(requestId)}`, { method: "DELETE" })
|
|
152
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
153
|
+
if (args.json) {
|
|
154
|
+
json({ ok: true, requestId });
|
|
155
|
+
return;
|
|
156
|
+
}
|
|
157
|
+
out(color.green("✓ ") + `removed ${requestId}`);
|
|
158
|
+
}
|
|
159
|
+
export default async function observabilityCmd(argv) {
|
|
160
|
+
const domain = argv[0];
|
|
161
|
+
const rest = argv.slice(1);
|
|
162
|
+
if (!domain || domain === "--help" || domain === "-h") {
|
|
163
|
+
out(HELP);
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
if (rest[0] === "--help" || rest[0] === "-h") {
|
|
167
|
+
out(HELP);
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
if (domain === "storage") {
|
|
171
|
+
const sub = rest[0];
|
|
172
|
+
if (!sub || sub === "--help" || sub === "-h") {
|
|
173
|
+
out(HELP);
|
|
174
|
+
return;
|
|
175
|
+
}
|
|
176
|
+
if (sub === "status")
|
|
177
|
+
return storageStatusSub(rest.slice(1));
|
|
178
|
+
if (sub === "open")
|
|
179
|
+
return storageOpenSub(rest.slice(1));
|
|
180
|
+
die(2, `unknown subcommand: storage ${sub}\n${HELP}`);
|
|
181
|
+
}
|
|
182
|
+
if (domain === "billing")
|
|
183
|
+
return billingSub(rest);
|
|
184
|
+
if (domain === "providers")
|
|
185
|
+
return providersSub(rest);
|
|
186
|
+
if (domain === "oauth") {
|
|
187
|
+
const sub = rest[0];
|
|
188
|
+
if (!sub || sub === "status")
|
|
189
|
+
return oauthStatusSub(rest.slice(sub === "status" ? 1 : 0));
|
|
190
|
+
die(2, `unknown subcommand: oauth ${sub}\n${HELP}`);
|
|
191
|
+
}
|
|
192
|
+
if (domain === "inflight") {
|
|
193
|
+
const sub = rest[0];
|
|
194
|
+
if (!sub || sub === "ls")
|
|
195
|
+
return inflightLsSub(sub === "ls" ? rest.slice(1) : rest);
|
|
196
|
+
if (sub === "rm")
|
|
197
|
+
return inflightRmSub(rest.slice(1));
|
|
198
|
+
die(2, `unknown subcommand: inflight ${sub}\n${HELP}`);
|
|
199
|
+
}
|
|
200
|
+
die(2, `unknown domain: ${domain}\n${HELP}`);
|
|
201
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import { parseArgs } from "../lib/args.js";
|
|
2
|
+
import { resolveServer, request } from "../lib/client.js";
|
|
3
|
+
import { out, die, color, json, table, exitCodeForError } from "../lib/output.js";
|
|
4
|
+
|
|
5
|
+
const HELP = `
|
|
6
|
+
ima2 <domain> <subcommand> [options]
|
|
7
|
+
|
|
8
|
+
Storage:
|
|
9
|
+
storage status [--json] Storage inspection
|
|
10
|
+
storage open Open generated-dir in OS file manager
|
|
11
|
+
|
|
12
|
+
Billing / Providers / OAuth:
|
|
13
|
+
billing [--json] API usage / quota
|
|
14
|
+
providers [--json] Configured providers
|
|
15
|
+
oauth status [--json] OAuth proxy state
|
|
16
|
+
|
|
17
|
+
Inflight jobs:
|
|
18
|
+
inflight ls [--kind <k>] [--session <id>] [--terminal] [--json]
|
|
19
|
+
inflight rm <requestId> [--json] Force-remove a stuck job
|
|
20
|
+
|
|
21
|
+
Options:
|
|
22
|
+
--json Output raw JSON
|
|
23
|
+
--server <url> Override server URL
|
|
24
|
+
`;
|
|
25
|
+
|
|
26
|
+
const FLAGS = {
|
|
27
|
+
json: { type: "boolean" },
|
|
28
|
+
server: { type: "string" },
|
|
29
|
+
kind: { type: "string" },
|
|
30
|
+
session: { type: "string" },
|
|
31
|
+
terminal: { type: "boolean" },
|
|
32
|
+
help: { short: "h", type: "boolean" },
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
async function getServer(args) {
|
|
36
|
+
try { return await resolveServer({ serverFlag: args.server }); }
|
|
37
|
+
catch (e: any) { die(exitCodeForError(e), e.message); throw e; }
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
async function storageStatusSub(argv) {
|
|
41
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
42
|
+
const server = await getServer(args);
|
|
43
|
+
const resp = await request(server.base, "/api/storage/status")
|
|
44
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
45
|
+
if (args.json) { json(resp); return; }
|
|
46
|
+
out(JSON.stringify(resp, null, 2));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async function storageOpenSub(argv) {
|
|
50
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
51
|
+
const server = await getServer(args);
|
|
52
|
+
await request(server.base, "/api/storage/open-generated-dir", { method: "POST" })
|
|
53
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
54
|
+
out(color.green("✓ ") + "opened generated directory");
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
async function billingSub(argv) {
|
|
58
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
59
|
+
const server = await getServer(args);
|
|
60
|
+
const resp = await request(server.base, "/api/billing")
|
|
61
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
62
|
+
if (args.json) { json(resp); return; }
|
|
63
|
+
out(JSON.stringify(resp, null, 2));
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
async function providersSub(argv) {
|
|
67
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
68
|
+
const server = await getServer(args);
|
|
69
|
+
const resp = await request(server.base, "/api/providers")
|
|
70
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
71
|
+
if (args.json) { json(resp); return; }
|
|
72
|
+
out(JSON.stringify(resp, null, 2));
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
async function oauthStatusSub(argv) {
|
|
76
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
77
|
+
const server = await getServer(args);
|
|
78
|
+
const resp = await request(server.base, "/api/oauth/status")
|
|
79
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
80
|
+
if (args.json) { json(resp); return; }
|
|
81
|
+
out(JSON.stringify(resp, null, 2));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
async function inflightLsSub(argv) {
|
|
85
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
86
|
+
const server = await getServer(args);
|
|
87
|
+
const qs = new URLSearchParams();
|
|
88
|
+
if (args.kind) qs.set("kind", args.kind);
|
|
89
|
+
if (args.session) qs.set("sessionId", args.session);
|
|
90
|
+
if (args.terminal) qs.set("includeTerminal", "1");
|
|
91
|
+
const path = `/api/inflight${qs.toString() ? `?${qs}` : ""}`;
|
|
92
|
+
const resp = await request(server.base, path)
|
|
93
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
94
|
+
const jobs = resp.jobs || resp.items || [];
|
|
95
|
+
const terminalJobs = resp.terminalJobs || [];
|
|
96
|
+
if (args.json) {
|
|
97
|
+
json(args.terminal ? { jobs, terminalJobs } : { jobs });
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
if (jobs.length === 0 && terminalJobs.length === 0) {
|
|
101
|
+
out(color.dim(args.terminal ? "(no active or terminal jobs)" : "(no active jobs)"));
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
const now = Date.now();
|
|
105
|
+
if (jobs.length > 0) {
|
|
106
|
+
out(color.bold("Active jobs"));
|
|
107
|
+
table(jobs, [
|
|
108
|
+
{ key: "requestId", label: "ID", format: (v) => String(v || "").slice(0, 10) },
|
|
109
|
+
{ key: "kind", label: "KIND" },
|
|
110
|
+
{ key: "phase", label: "PHASE" },
|
|
111
|
+
{ key: "startedAt", label: "AGE", format: (v) => v ? `${Math.round((now - v) / 1000)}s` : "" },
|
|
112
|
+
{ key: "prompt", label: "PROMPT", format: (v) => {
|
|
113
|
+
const s = String(v || "").replace(/\s+/g, " ");
|
|
114
|
+
return s.length > 40 ? s.slice(0, 37) + "…" : s;
|
|
115
|
+
} },
|
|
116
|
+
]);
|
|
117
|
+
}
|
|
118
|
+
if (terminalJobs.length > 0) {
|
|
119
|
+
if (jobs.length > 0) out("");
|
|
120
|
+
out(color.bold("Terminal jobs"));
|
|
121
|
+
table(terminalJobs, [
|
|
122
|
+
{ key: "requestId", label: "ID", format: (v) => String(v || "").slice(0, 10) },
|
|
123
|
+
{ key: "kind", label: "KIND" },
|
|
124
|
+
{ key: "status", label: "STATUS" },
|
|
125
|
+
{ key: "finishedAt", label: "AGE", format: (v) => v ? `${Math.round((now - v) / 1000)}s` : "" },
|
|
126
|
+
{ key: "prompt", label: "PROMPT", format: (v) => {
|
|
127
|
+
const s = String(v || "").replace(/\s+/g, " ");
|
|
128
|
+
return s.length > 40 ? s.slice(0, 37) + "…" : s;
|
|
129
|
+
} },
|
|
130
|
+
]);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
async function inflightRmSub(argv) {
|
|
135
|
+
const args = parseArgs(argv, { flags: FLAGS });
|
|
136
|
+
const requestId = args.positional[0];
|
|
137
|
+
if (!requestId) die(2, "requestId required");
|
|
138
|
+
const server = await getServer(args);
|
|
139
|
+
await request(server.base, `/api/inflight/${encodeURIComponent(requestId)}`, { method: "DELETE" })
|
|
140
|
+
.catch((e) => die(exitCodeForError(e), e.message));
|
|
141
|
+
if (args.json) { json({ ok: true, requestId }); return; }
|
|
142
|
+
out(color.green("✓ ") + `removed ${requestId}`);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export default async function observabilityCmd(argv) {
|
|
146
|
+
const domain = argv[0];
|
|
147
|
+
const rest = argv.slice(1);
|
|
148
|
+
if (!domain || domain === "--help" || domain === "-h") { out(HELP); return; }
|
|
149
|
+
if (rest[0] === "--help" || rest[0] === "-h") { out(HELP); return; }
|
|
150
|
+
|
|
151
|
+
if (domain === "storage") {
|
|
152
|
+
const sub = rest[0];
|
|
153
|
+
if (!sub || sub === "--help" || sub === "-h") { out(HELP); return; }
|
|
154
|
+
if (sub === "status") return storageStatusSub(rest.slice(1));
|
|
155
|
+
if (sub === "open") return storageOpenSub(rest.slice(1));
|
|
156
|
+
die(2, `unknown subcommand: storage ${sub}\n${HELP}`);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
if (domain === "billing") return billingSub(rest);
|
|
160
|
+
if (domain === "providers") return providersSub(rest);
|
|
161
|
+
|
|
162
|
+
if (domain === "oauth") {
|
|
163
|
+
const sub = rest[0];
|
|
164
|
+
if (!sub || sub === "status") return oauthStatusSub(rest.slice(sub === "status" ? 1 : 0));
|
|
165
|
+
die(2, `unknown subcommand: oauth ${sub}\n${HELP}`);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
if (domain === "inflight") {
|
|
169
|
+
const sub = rest[0];
|
|
170
|
+
if (!sub || sub === "ls") return inflightLsSub(sub === "ls" ? rest.slice(1) : rest);
|
|
171
|
+
if (sub === "rm") return inflightRmSub(rest.slice(1));
|
|
172
|
+
die(2, `unknown subcommand: inflight ${sub}\n${HELP}`);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
die(2, `unknown domain: ${domain}\n${HELP}`);
|
|
176
|
+
}
|
package/bin/commands/ping.js
CHANGED
|
@@ -1,28 +1,34 @@
|
|
|
1
1
|
import { parseArgs } from "../lib/args.js";
|
|
2
2
|
import { resolveServer } from "../lib/client.js";
|
|
3
3
|
import { out, die, color, json, exitCodeForError } from "../lib/output.js";
|
|
4
|
-
|
|
5
4
|
const SPEC = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
flags: {
|
|
6
|
+
json: { type: "boolean" },
|
|
7
|
+
server: { type: "string" },
|
|
8
|
+
help: { short: "h", type: "boolean" },
|
|
9
|
+
},
|
|
11
10
|
};
|
|
12
|
-
|
|
13
11
|
export default async function pingCmd(argv) {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
12
|
+
const args = parseArgs(argv, SPEC);
|
|
13
|
+
if (args.help) {
|
|
14
|
+
out("ima2 ping [--json]");
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
try {
|
|
18
|
+
const { base, health } = await resolveServer({ serverFlag: args.server });
|
|
19
|
+
const h = health;
|
|
20
|
+
if (args.json) {
|
|
21
|
+
json({ ok: true, base, ...h });
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
out(color.green("✓ ") + `${base} v${h.version} uptime ${h.uptimeSec}s activeJobs ${h.activeJobs}`);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
catch (e) {
|
|
28
|
+
if (args.json) {
|
|
29
|
+
json({ ok: false, error: e.message });
|
|
30
|
+
process.exit(exitCodeForError(e));
|
|
31
|
+
}
|
|
32
|
+
die(exitCodeForError(e), e.message);
|
|
23
33
|
}
|
|
24
|
-
} catch (e) {
|
|
25
|
-
if (args.json) { json({ ok: false, error: e.message }); process.exit(exitCodeForError(e)); }
|
|
26
|
-
die(exitCodeForError(e), e.message);
|
|
27
|
-
}
|
|
28
34
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { parseArgs } from "../lib/args.js";
|
|
2
|
+
import { resolveServer } from "../lib/client.js";
|
|
3
|
+
import { out, die, color, json, exitCodeForError } from "../lib/output.js";
|
|
4
|
+
|
|
5
|
+
const SPEC = {
|
|
6
|
+
flags: {
|
|
7
|
+
json: { type: "boolean" },
|
|
8
|
+
server: { type: "string" },
|
|
9
|
+
help: { short: "h", type: "boolean" },
|
|
10
|
+
},
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default async function pingCmd(argv) {
|
|
14
|
+
const args = parseArgs(argv, SPEC);
|
|
15
|
+
if (args.help) { out("ima2 ping [--json]"); return; }
|
|
16
|
+
|
|
17
|
+
try {
|
|
18
|
+
const { base, health } = await resolveServer({ serverFlag: args.server });
|
|
19
|
+
const h: any = health;
|
|
20
|
+
if (args.json) {
|
|
21
|
+
json({ ok: true, base, ...h });
|
|
22
|
+
} else {
|
|
23
|
+
out(color.green("✓ ") + `${base} v${h.version} uptime ${h.uptimeSec}s activeJobs ${h.activeJobs}`);
|
|
24
|
+
}
|
|
25
|
+
} catch (e) {
|
|
26
|
+
if (args.json) { json({ ok: false, error: e.message }); process.exit(exitCodeForError(e)); }
|
|
27
|
+
die(exitCodeForError(e), e.message);
|
|
28
|
+
}
|
|
29
|
+
}
|