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

推荐订阅源

N
Netflix TechBlog - Medium
IT之家
IT之家
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
小众软件
小众软件
博客园 - 叶小钗
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

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
refactor(runtime): hide default constants · openclaw/open...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -5,8 +5,8 @@ import { normalizeOptionalString } from "@openclaw/normalization-core/string-coe

55

import type { MsgContext } from "../templating.js";

66

import type { HistoryEntry, HistoryMediaEntry } from "./history.types.js";

77
8-

export const RECENT_HISTORY_IMAGE_TTL_MS = 30 * 60_000;

9-

export const RECENT_HISTORY_IMAGE_LIMIT = 4;

8+

const RECENT_HISTORY_IMAGE_TTL_MS = 30 * 60_000;

9+

const RECENT_HISTORY_IMAGE_LIMIT = 4;

1010
1111

export type RecentInboundHistoryImage = {

1212

path: string;

Original file line numberDiff line numberDiff line change

@@ -3,10 +3,9 @@ import fs from "node:fs/promises";

33

import os from "node:os";

44

import path from "node:path";

55

import { afterEach, beforeEach, describe, expect, it } from "vitest";

6-

import {

7-

DEFAULT_REPLAY_MAX_MESSAGES,

8-

replayRecentUserAssistantMessages,

9-

} from "./session-transcript-replay.js";

6+

import { replayRecentUserAssistantMessages } from "./session-transcript-replay.js";

7+
8+

const DEFAULT_REPLAY_MAX_MESSAGES = 6;

109
1110

const j = (obj: unknown): string => `${JSON.stringify(obj)}\n`;

1211
Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ import path from "node:path";

55

import { CURRENT_SESSION_VERSION } from "../../config/sessions/version.js";

66
77

/** Tail kept so DM continuity survives silent session rotations. */

8-

export const DEFAULT_REPLAY_MAX_MESSAGES = 6;

8+

const DEFAULT_REPLAY_MAX_MESSAGES = 6;

99
1010

type SessionRecord = {

1111

type?: unknown;

Original file line numberDiff line numberDiff line change

@@ -18,7 +18,7 @@ export type TypingModeContext = {

1818

};

1919
2020

/** Group chats default to message-triggered typing to avoid noisy indicators. */

21-

export const DEFAULT_GROUP_TYPING_MODE: TypingMode = "message";

21+

const DEFAULT_GROUP_TYPING_MODE: TypingMode = "message";

2222
2323

/** Resolves the effective typing mode for the current auto-reply turn. */

2424

export function resolveTypingMode({

Original file line numberDiff line numberDiff line change

@@ -1,8 +1,9 @@

11

// Cron store migration tests cover doctor migration of persisted cron stores.

22

import { describe, expect, it } from "vitest";

3-

import { DEFAULT_TOP_OF_HOUR_STAGGER_MS } from "../../../cron/stagger.js";

43

import { normalizeStoredCronJobs } from "./store-migration.js";

54
5+

const DEFAULT_TOP_OF_HOUR_STAGGER_MS = 5 * 60 * 1000;

6+
67

function makeLegacyJob(overrides: Record<string, unknown>): Record<string, unknown> {

78

return {

89

id: "job-legacy",

Original file line numberDiff line numberDiff line change

@@ -6,7 +6,7 @@ import type { OpenClawConfig } from "../config/config.js";

66

// heartbeat delivery limits.

77

const DEFAULT_COMMITMENT_EXTRACTION_DEBOUNCE_MS = 15_000;

88

const DEFAULT_COMMITMENT_BATCH_MAX_ITEMS = 8;

9-

export const DEFAULT_COMMITMENT_EXTRACTION_QUEUE_MAX_ITEMS = 64;

9+

const DEFAULT_COMMITMENT_EXTRACTION_QUEUE_MAX_ITEMS = 64;

1010

const DEFAULT_COMMITMENT_CONFIDENCE_THRESHOLD = 0.72;

1111

const DEFAULT_COMMITMENT_CARE_CONFIDENCE_THRESHOLD = 0.86;

1212

const DEFAULT_COMMITMENT_EXTRACTION_TIMEOUT_SECONDS = 45;

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,6 @@ import path from "node:path";

55

import { afterEach, describe, expect, it, vi } from "vitest";

66

import type { OpenClawConfig } from "../config/config.js";

77

import { captureEnv, setTestEnvValue } from "../test-utils/env.js";

8-

import { DEFAULT_COMMITMENT_EXTRACTION_QUEUE_MAX_ITEMS } from "./config.js";

98

import {

109

configureCommitmentExtractionRuntime,

1110

drainCommitmentExtractionQueue,

@@ -15,6 +14,8 @@ import {

1514

import { loadCommitmentStore } from "./store.js";

1615

import type { CommitmentExtractionBatchResult, CommitmentExtractionItem } from "./types.js";

1716
17+

const DEFAULT_COMMITMENT_EXTRACTION_QUEUE_MAX_ITEMS = 64;

18+
1819

const runEmbeddedAgentMock = vi.hoisted(() => vi.fn());

1920

const resolveDefaultModelMock = vi.hoisted(() => vi.fn());

2021
Original file line numberDiff line numberDiff line change

@@ -5,7 +5,8 @@ import {

55

validateCronUpdateParams,

66

} from "../../packages/gateway-protocol/src/index.js";

77

import { normalizeCronJobCreate, normalizeCronJobPatch } from "./normalize.js";

8-

import { DEFAULT_TOP_OF_HOUR_STAGGER_MS } from "./stagger.js";

8+
9+

const DEFAULT_TOP_OF_HOUR_STAGGER_MS = 5 * 60 * 1000;

910
1011

function expectNormalizedAtSchedule(scheduleInput: Record<string, unknown>) {

1112

const normalized = normalizeCronJobCreate({

Original file line numberDiff line numberDiff line change

@@ -6,15 +6,16 @@ import { describe, expect, it } from "vitest";

66

import { migrateLegacyCronRunLogsToSqlite } from "../commands/doctor/cron/legacy-run-log-migration.js";

77

import {

88

appendCronRunLog,

9-

DEFAULT_CRON_RUN_LOG_KEEP_LINES,

10-

DEFAULT_CRON_RUN_LOG_MAX_BYTES,

119

getPendingCronRunLogWriteCountForTests,

1210

readCronRunLogEntries,

1311

readCronRunLogEntriesPage,

1412

readCronRunLogEntriesSync,

1513

resolveCronRunLogPruneOptions,

1614

} from "./run-log.js";

1715
16+

const DEFAULT_CRON_RUN_LOG_MAX_BYTES = 2_000_000;

17+

const DEFAULT_CRON_RUN_LOG_KEEP_LINES = 2_000;

18+
1819

describe("cron run log", () => {

1920

it("resolves prune options from config with defaults", () => {

2021

expect(resolveCronRunLogPruneOptions()).toEqual({

Original file line numberDiff line numberDiff line change

@@ -80,9 +80,9 @@ export function isInvalidCronRunLogJobIdError(err: unknown): boolean {

8080

const writesByTarget = new Map<string, Promise<void>>();

8181
8282

/** Legacy byte cap kept for config parsing compatibility with older file-backed run logs. */

83-

export const DEFAULT_CRON_RUN_LOG_MAX_BYTES = 2_000_000;

83+

const DEFAULT_CRON_RUN_LOG_MAX_BYTES = 2_000_000;

8484

/** Default SQLite row retention per cron job when no explicit keepLines value is configured. */

85-

export const DEFAULT_CRON_RUN_LOG_KEEP_LINES = 2_000;

85+

const DEFAULT_CRON_RUN_LOG_KEEP_LINES = 2_000;

8686
8787

/** Resolves configured run-log pruning limits while preserving legacy maxBytes parsing. */

8888

export function resolveCronRunLogPruneOptions(cfg?: CronConfig["runLog"]): {