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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
WordPress大学
WordPress大学
Recent Announcements
Recent Announcements
G
Google Developers Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
Check Point Blog
J
Java Code Geeks
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
量子位
A
About on SuperTechFans
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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: narrow messaging public api barrels · openclaw/...
steipete · 2026-04-28 · via Recent Commits to openclaw:main

@@ -5,25 +5,110 @@ export {

55

handleDiscordSubagentEnded,

66

handleDiscordSubagentSpawning,

77

} from "./src/subagent-hooks.js";

8-

export * from "./src/account-inspect.js";

9-

export * from "./src/accounts.js";

10-

export * from "./src/actions/handle-action.guild-admin.js";

11-

export * from "./src/actions/handle-action.js";

12-

export * from "./src/components.js";

13-

export * from "./src/directory-config.js";

14-

export * from "./src/exec-approvals.js";

15-

export * from "./src/group-policy.js";

8+

export {

9+

type DiscordCredentialStatus,

10+

inspectDiscordAccount,

11+

type InspectedDiscordAccount,

12+

} from "./src/account-inspect.js";

13+

export {

14+

createDiscordActionGate,

15+

listDiscordAccountIds,

16+

listEnabledDiscordAccounts,

17+

mergeDiscordAccountConfig,

18+

type ResolvedDiscordAccount,

19+

resolveDefaultDiscordAccountId,

20+

resolveDiscordAccount,

21+

resolveDiscordAccountConfig,

22+

resolveDiscordMaxLinesPerMessage,

23+

} from "./src/accounts.js";

24+

export { tryHandleDiscordMessageActionGuildAdmin } from "./src/actions/handle-action.guild-admin.js";

25+

export { handleDiscordMessageAction } from "./src/actions/handle-action.js";

26+

export {

27+

buildDiscordComponentCustomId,

28+

buildDiscordComponentMessage,

29+

buildDiscordComponentMessageFlags,

30+

buildDiscordInteractiveComponents,

31+

buildDiscordModalCustomId,

32+

createDiscordFormModal,

33+

DISCORD_COMPONENT_ATTACHMENT_PREFIX,

34+

DISCORD_COMPONENT_CUSTOM_ID_KEY,

35+

DISCORD_MODAL_CUSTOM_ID_KEY,

36+

type DiscordComponentBlock,

37+

type DiscordComponentBuildResult,

38+

type DiscordComponentButtonSpec,

39+

type DiscordComponentButtonStyle,

40+

type DiscordComponentEntry,

41+

type DiscordComponentMessageSpec,

42+

type DiscordComponentModalFieldType,

43+

type DiscordComponentSectionAccessory,

44+

type DiscordComponentSelectOption,

45+

type DiscordComponentSelectSpec,

46+

type DiscordComponentSelectType,

47+

DiscordFormModal,

48+

type DiscordModalEntry,

49+

type DiscordModalFieldDefinition,

50+

type DiscordModalFieldSpec,

51+

type DiscordModalSpec,

52+

formatDiscordComponentEventText,

53+

parseDiscordComponentCustomId,

54+

parseDiscordComponentCustomIdForCarbon,

55+

parseDiscordModalCustomId,

56+

parseDiscordModalCustomIdForCarbon,

57+

readDiscordComponentSpec,

58+

resolveDiscordComponentAttachmentName,

59+

} from "./src/components.js";

60+

export {

61+

listDiscordDirectoryGroupsFromConfig,

62+

listDiscordDirectoryPeersFromConfig,

63+

} from "./src/directory-config.js";

64+

export {

65+

getDiscordExecApprovalApprovers,

66+

isDiscordExecApprovalApprover,

67+

isDiscordExecApprovalClientEnabled,

68+

shouldSuppressLocalDiscordExecApprovalPrompt,

69+

} from "./src/exec-approvals.js";

70+

export {

71+

resolveDiscordGroupRequireMention,

72+

resolveDiscordGroupToolPolicy,

73+

} from "./src/group-policy.js";

1674

export type {

1775

DiscordInteractiveHandlerContext,

1876

DiscordInteractiveHandlerRegistration,

1977

} from "./src/interactive-dispatch.js";

20-

export * from "./src/normalize.js";

21-

export * from "./src/pluralkit.js";

22-

export * from "./src/probe.js";

23-

export * from "./src/session-key-normalization.js";

24-

export * from "./src/status-issues.js";

25-

export * from "./src/targets.js";

26-

export * from "./src/security-audit.js";

78+

export {

79+

looksLikeDiscordTargetId,

80+

normalizeDiscordMessagingTarget,

81+

normalizeDiscordOutboundTarget,

82+

} from "./src/normalize.js";

83+

export {

84+

type DiscordPluralKitConfig,

85+

fetchPluralKitMessageInfo,

86+

type PluralKitMemberInfo,

87+

type PluralKitMessageInfo,

88+

type PluralKitSystemInfo,

89+

} from "./src/pluralkit.js";

90+

export {

91+

type DiscordApplicationSummary,

92+

type DiscordPrivilegedIntentsSummary,

93+

type DiscordPrivilegedIntentStatus,

94+

type DiscordProbe,

95+

fetchDiscordApplicationId,

96+

fetchDiscordApplicationSummary,

97+

parseApplicationIdFromToken,

98+

probeDiscord,

99+

resolveDiscordPrivilegedIntentsFromFlags,

100+

} from "./src/probe.js";

101+

export { normalizeExplicitDiscordSessionKey } from "./src/session-key-normalization.js";

102+

export { collectDiscordStatusIssues } from "./src/status-issues.js";

103+

export {

104+

type DiscordTarget,

105+

type DiscordTargetKind,

106+

type DiscordTargetParseOptions,

107+

parseDiscordTarget,

108+

resolveDiscordChannelId,

109+

resolveDiscordTarget,

110+

} from "./src/targets.js";

111+

export { collectDiscordSecurityAuditFindings } from "./src/security-audit.js";

27112

export { resolveDiscordRuntimeGroupPolicy } from "./src/runtime-group-policy.js";

28113

export {

29114

DISCORD_DEFAULT_INBOUND_WORKER_TIMEOUT_MS,