惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
J
Java Code Geeks
有赞技术团队
有赞技术团队
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
G
Google Developers Blog
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
腾讯CDC
V
Visual Studio Blog
博客园 - 【当耐特】
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
L
LangChain Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix: validate feishu bitable page size · openclaw/opencla...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,5 +1,7 @@

11

import type * as Lark from "@larksuiteoapi/node-sdk";

2+

import { optionalPositiveIntegerSchema } from "openclaw/plugin-sdk/channel-actions";

23

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

4+

import { readPositiveIntegerParam } from "openclaw/plugin-sdk/param-readers";

35

import { Type, type TSchema } from "typebox";

46

import type { OpenClawPluginApi } from "../runtime-api.js";

57

import { listEnabledFeishuAccounts } from "./accounts.js";

@@ -208,6 +210,13 @@ async function listRecords(

208210

};

209211

}

210212
213+

function readBitableListRecordsPageSize(params: Record<string, unknown>): number | undefined {

214+

return readPositiveIntegerParam(params, "page_size", {

215+

max: 500,

216+

message: "page_size must be a positive integer between 1 and 500",

217+

});

218+

}

219+
211220

async function getRecord(client: Lark.Client, appToken: string, tableId: string, recordId: string) {

212221

const res = await client.bitable.appTableRecord.get({

213222

path: { app_token: appToken, table_id: tableId, record_id: recordId },

@@ -496,13 +505,10 @@ const ListRecordsSchema = Type.Object({

496505

description: "Bitable app token (use feishu_bitable_get_meta to get from URL)",

497506

}),

498507

table_id: Type.String({ description: "Table ID (from URL: ?table=YYY)" }),

499-

page_size: Type.Optional(

500-

Type.Number({

501-

description: "Number of records per page (1-500, default 100)",

502-

minimum: 1,

503-

maximum: 500,

504-

}),

505-

),

508+

page_size: optionalPositiveIntegerSchema({

509+

description: "Number of records per page (1-500, default 100)",

510+

maximum: 500,

511+

}),

506512

page_token: Type.Optional(

507513

Type.String({ description: "Pagination token from previous response" }),

508514

),

@@ -655,7 +661,7 @@ export function registerFeishuBitableTools(api: OpenClawPluginApi) {

655661

getClient(params, defaultAccountId),

656662

params.app_token,

657663

params.table_id,

658-

params.page_size,

664+

readBitableListRecordsPageSize(params as Record<string, unknown>),

659665

params.page_token,

660666

);

661667

},