poe-code 3.0.30 → 3.0.31
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
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
Power your favorite coding agents (Claude Code, Codex, OpenCode, and more) with your Poe subscription—**no need to handle multiple providers/accounts.** Poe Code routes everything through the [Poe API](https://poe.com/api) .
|
|
13
13
|
|
|
14
|
-
Use it
|
|
14
|
+
Use it on a single session (`poe-code wrap claude`) or configure it as your default and use your tools normally.
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
## Quickstart
|
|
@@ -24,7 +24,7 @@ npx poe-code wrap claude
|
|
|
24
24
|
or
|
|
25
25
|
|
|
26
26
|
## Set it as your default (works with CLIs and desktop apps)
|
|
27
|
-
This updates the provider’s config files
|
|
27
|
+
This updates the provider’s config files and continue using your tools normally.
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
# Start the interactive setup
|
package/dist/index.js
CHANGED
|
@@ -17333,7 +17333,7 @@ var claudeCodeService = createProvider({
|
|
|
17333
17333
|
const args = buildClaudeArgs(
|
|
17334
17334
|
shouldUseStdin ? void 0 : options.prompt,
|
|
17335
17335
|
options.args,
|
|
17336
|
-
options.model
|
|
17336
|
+
options.model ? stripModelNamespace(options.model) : void 0
|
|
17337
17337
|
);
|
|
17338
17338
|
if (shouldUseStdin) {
|
|
17339
17339
|
if (options.cwd) {
|
|
@@ -17493,7 +17493,7 @@ var codexService = createProvider({
|
|
|
17493
17493
|
const args = buildCodexExecArgs(
|
|
17494
17494
|
shouldUseStdin ? "-" : options.prompt,
|
|
17495
17495
|
options.args,
|
|
17496
|
-
options.model
|
|
17496
|
+
options.model ? stripModelNamespace(options.model) : void 0
|
|
17497
17497
|
);
|
|
17498
17498
|
if (shouldUseStdin) {
|
|
17499
17499
|
if (options.cwd) {
|
|
@@ -36201,7 +36201,7 @@ function registerModelsCommand(program, container) {
|
|
|
36201
36201
|
// package.json
|
|
36202
36202
|
var package_default = {
|
|
36203
36203
|
name: "poe-code",
|
|
36204
|
-
version: "3.0.
|
|
36204
|
+
version: "3.0.31",
|
|
36205
36205
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
36206
36206
|
type: "module",
|
|
36207
36207
|
workspaces: [
|