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

推荐订阅源

Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler
I
InfoQ
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
The Cloudflare 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
refactor: trim tlon helper exports · openclaw/openclaw@8b...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@ import type { RuntimeEnv } from "openclaw/plugin-sdk/runtime";

22

import type { Foreigns } from "../urbit/foreigns.js";

33

import { asRecord, formatErrorMessage } from "./utils.js";

44
5-

export interface InitData {

5+

interface InitData {

66

channels: string[];

77

foreigns: Foreigns | null;

88

}

Original file line numberDiff line numberDiff line change

@@ -20,7 +20,7 @@ function formatUd(id: string | number): string {

2020

return chunks.toReversed().join(".");

2121

}

2222
23-

export type TlonHistoryEntry = {

23+

type TlonHistoryEntry = {

2424

author: string;

2525

content: string;

2626

timestamp: number;

@@ -63,7 +63,7 @@ export function cacheMessage(channelNest: string, message: TlonHistoryEntry) {

6363

}

6464

}

6565
66-

export async function fetchChannelHistory(

66+

async function fetchChannelHistory(

6767

api: { scry: (path: string) => Promise<unknown> },

6868

channelNest: string,

6969

count = 50,

Original file line numberDiff line numberDiff line change

@@ -45,7 +45,7 @@ import {

4545

stripBotMention,

4646

} from "./utils.js";

4747
48-

export type MonitorTlonOpts = {

48+

type MonitorTlonOpts = {

4949

runtime?: RuntimeEnv;

5050

abortSignal?: AbortSignal;

5151

accountId?: string | null;

Original file line numberDiff line numberDiff line change

@@ -13,12 +13,12 @@ import { getDefaultSsrFPolicy } from "../urbit/context.js";

1313

const MAX_IMAGES_PER_MESSAGE = 8;

1414

const TLON_MEDIA_DOWNLOAD_IDLE_TIMEOUT_MS = 30_000;

1515
16-

export interface ExtractedImage {

16+

interface ExtractedImage {

1717

url: string;

1818

alt?: string;

1919

}

2020
21-

export interface DownloadedMedia {

21+

interface DownloadedMedia {

2222

localPath: string;

2323

contentType: string;

2424

originalUrl: string;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

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

22
3-

export type ProcessedMessageTracker = {

3+

type ProcessedMessageTracker = {

44

claim: (id?: string | null) => { kind: "claimed" } | { kind: "duplicate" };

55

commit: (id?: string | null) => void;

66

release: (id?: string | null) => void;

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@ import type { PendingApproval, TlonSettingsStore } from "../settings.js";

22

import { normalizeShip } from "../targets.js";

33

import type { TlonResolvedAccount } from "../types.js";

44
5-

export type TlonMonitorSettingsState = {

5+

type TlonMonitorSettingsState = {

66

effectiveDmAllowlist: string[];

77

effectiveShowModelSig: boolean;

88

effectiveAutoAcceptDmInvites: boolean;

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@ import type { LookupFn, SsrFPolicy } from "openclaw/plugin-sdk/ssrf-runtime";

22

import { UrbitAuthError } from "./errors.js";

33

import { urbitFetch } from "./fetch.js";

44
5-

export type UrbitAuthenticateOptions = {

5+

type UrbitAuthenticateOptions = {

66

ssrfPolicy?: SsrFPolicy;

77

lookupFn?: LookupFn;

88

fetchImpl?: (input: RequestInfo | URL, init?: RequestInit) => Promise<Response>;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import { isBlockedHostnameOrIp } from "openclaw/plugin-sdk/ssrf-runtime";

22
3-

export type UrbitBaseUrlValidation =

3+

type UrbitBaseUrlValidation =

44

| { ok: true; baseUrl: string; hostname: string }

55

| { ok: false; error: string };

66
Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@ import type { LookupFn, SsrFPolicy } from "openclaw/plugin-sdk/ssrf-runtime";

22

import { UrbitHttpError } from "./errors.js";

33

import { urbitFetch } from "./fetch.js";

44
5-

export type UrbitChannelDeps = {

5+

type UrbitChannelDeps = {

66

baseUrl: string;

77

cookie: string;

88

ship: string;

@@ -94,7 +94,7 @@ export async function scryUrbitPath(

9494

}

9595

}

9696
97-

export async function createUrbitChannel(

97+

async function createUrbitChannel(

9898

deps: UrbitChannelDeps,

9999

params: { body: unknown; auditContext: string },

100100

): Promise<void> {

@@ -109,7 +109,7 @@ export async function createUrbitChannel(

109109

}

110110

}

111111
112-

export async function wakeUrbitChannel(deps: UrbitChannelDeps): Promise<void> {

112+

async function wakeUrbitChannel(deps: UrbitChannelDeps): Promise<void> {

113113

const { response, release } = await putUrbitChannel(deps, {

114114

body: [

115115

{

Original file line numberDiff line numberDiff line change

@@ -2,13 +2,13 @@ export { ssrfPolicyFromDangerouslyAllowPrivateNetwork } from "openclaw/plugin-sd

22

import { normalizeUrbitHostname, validateUrbitBaseUrl } from "./base-url.js";

33

import { UrbitUrlError } from "./errors.js";

44
5-

export type UrbitContext = {

5+

type UrbitContext = {

66

baseUrl: string;

77

hostname: string;

88

ship: string;

99

};

1010
11-

export function resolveShipFromHostname(hostname: string): string {

11+

function resolveShipFromHostname(hostname: string): string {

1212

const trimmed = normalizeUrbitHostname(hostname);

1313

if (!trimmed) {

1414

return "";

@@ -19,7 +19,7 @@ export function resolveShipFromHostname(hostname: string): string {

1919

return trimmed;

2020

}

2121
22-

export function normalizeUrbitShip(ship: string | undefined, hostname: string): string {

22+

function normalizeUrbitShip(ship: string | undefined, hostname: string): string {

2323

const raw = ship?.replace(/^~/, "") ?? resolveShipFromHostname(hostname);

2424

return raw.trim();

2525

}