poe-code 3.0.423-beta.2 → 3.0.423-beta.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/index.js +7 -1
- package/dist/index.js.map +2 -2
- package/dist/metafile.json +1 -1
- package/package.json +1 -1
- package/packages/terminal-pilot/dist/cli.js +6 -0
- package/packages/terminal-pilot/dist/cli.js.map +2 -2
- package/packages/terminal-pilot/dist/testing/cli-repl.js +6 -0
- package/packages/terminal-pilot/dist/testing/cli-repl.js.map +2 -2
- package/packages/terminal-pilot/dist/testing/qa-cli.js +6 -0
- package/packages/terminal-pilot/dist/testing/qa-cli.js.map +2 -2
- package/packages/tiny-http-mcp-server/dist/http-transport.d.ts +1 -1
- package/packages/tiny-http-mcp-server/dist/http-transport.js +5 -5
- package/packages/toolcraft/dist/cli.js +6 -0
package/dist/index.js
CHANGED
|
@@ -94385,6 +94385,12 @@ function appendHelpMetadata(description, metadata) {
|
|
|
94385
94385
|
function formatHelpFieldDescription(field) {
|
|
94386
94386
|
const description = field.description ?? field.displayPath;
|
|
94387
94387
|
const metadata = [];
|
|
94388
|
+
if (field.schema.kind === "enum" && field.schema.values.length <= 8) {
|
|
94389
|
+
const values = field.schema.values.map((value) => String(value)).join(", ");
|
|
94390
|
+
if (values.length <= 120) {
|
|
94391
|
+
metadata.push(`values: ${values}`);
|
|
94392
|
+
}
|
|
94393
|
+
}
|
|
94388
94394
|
if (!field.optional && !field.hasDefault) {
|
|
94389
94395
|
metadata.push("required");
|
|
94390
94396
|
}
|
|
@@ -144339,7 +144345,7 @@ var init_package2 = __esm({
|
|
|
144339
144345
|
"package.json"() {
|
|
144340
144346
|
package_default2 = {
|
|
144341
144347
|
name: "poe-code",
|
|
144342
|
-
version: "3.0.423-beta.
|
|
144348
|
+
version: "3.0.423-beta.3",
|
|
144343
144349
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
144344
144350
|
license: "MIT",
|
|
144345
144351
|
type: "module",
|