poe-code 3.0.231 → 3.0.233
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/agent.js +12 -7
- package/dist/agent.js.map +3 -3
- package/dist/index.js +536 -229
- package/dist/index.js.map +4 -4
- package/dist/metafile.json +1 -0
- package/dist/providers/poe-agent.js +424 -126
- package/dist/providers/poe-agent.js.map +4 -4
- package/package.json +6 -1
- package/packages/agent-skill-config/dist/index.d.ts +1 -0
- package/packages/agent-skill-config/dist/index.js +1 -0
- package/packages/memory/dist/explain.js +1 -1
- package/packages/memory/dist/index.js +315 -44
- package/packages/memory/dist/index.js.map +4 -4
- package/packages/memory/dist/query.js +1 -1
- package/packages/memory/dist/tokens.js +1 -1
- package/packages/superintendent/dist/mcp.js +41194 -151
- package/packages/superintendent/dist/mcp.js.map +7 -0
- package/packages/tiny-stdio-mcp-server/dist/index.d.ts +1 -1
- package/packages/tiny-stdio-mcp-server/dist/server.d.ts +12 -2
- package/packages/tiny-stdio-mcp-server/dist/server.js +310 -40
- package/packages/tiny-stdio-mcp-server/dist/types.d.ts +136 -9
- package/packages/tiny-stdio-mcp-server/dist/types.js +2 -1
package/dist/agent.js
CHANGED
|
@@ -7228,24 +7228,29 @@ function toErrorMessage(value) {
|
|
|
7228
7228
|
import { spawn as spawn3 } from "node:child_process";
|
|
7229
7229
|
import { PassThrough } from "node:stream";
|
|
7230
7230
|
|
|
7231
|
-
// packages/mcp-oauth/
|
|
7231
|
+
// packages/mcp-oauth/src/client/auth-store-session-store.ts
|
|
7232
7232
|
import crypto from "node:crypto";
|
|
7233
7233
|
import path6 from "node:path";
|
|
7234
7234
|
|
|
7235
|
-
// packages/mcp-oauth/
|
|
7235
|
+
// packages/mcp-oauth/src/client/default-oauth-client-provider.ts
|
|
7236
7236
|
import { URL as URL2 } from "node:url";
|
|
7237
7237
|
|
|
7238
|
-
// packages/mcp-oauth/
|
|
7238
|
+
// packages/mcp-oauth/src/client/loopback-authorization.ts
|
|
7239
7239
|
import http from "node:http";
|
|
7240
7240
|
|
|
7241
|
-
// packages/mcp-oauth/
|
|
7241
|
+
// packages/mcp-oauth/src/client/authorization-state.ts
|
|
7242
7242
|
import crypto2 from "node:crypto";
|
|
7243
7243
|
|
|
7244
|
-
// packages/mcp-oauth/
|
|
7244
|
+
// packages/mcp-oauth/src/client/pkce.ts
|
|
7245
7245
|
import crypto3 from "node:crypto";
|
|
7246
7246
|
|
|
7247
|
-
// packages/mcp-oauth/
|
|
7248
|
-
import {
|
|
7247
|
+
// packages/mcp-oauth/src/server/jwks-token-verifier.ts
|
|
7248
|
+
import {
|
|
7249
|
+
decodeProtectedHeader,
|
|
7250
|
+
errors,
|
|
7251
|
+
importJWK,
|
|
7252
|
+
jwtVerify
|
|
7253
|
+
} from "jose";
|
|
7249
7254
|
|
|
7250
7255
|
// packages/tiny-mcp-client/src/internal.ts
|
|
7251
7256
|
var MCP_PROTOCOL_VERSION = "2025-03-26";
|