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

推荐订阅源

D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
IT之家
IT之家
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research

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: share prompt template arguments · openclaw/open...
vincentkoc · 2026-05-30 · via Recent Commits to openclaw:main
11

import { existsSync, readdirSync, readFileSync, statSync } from "node:fs";

22

import { homedir } from "node:os";

33

import { basename, dirname, isAbsolute, join, resolve, sep } from "node:path";

4+

export {

5+

parseCommandArgs,

6+

substituteArgs,

7+

} from "../../../packages/agent-core/src/harness/prompt-template-arguments.js";

8+

import {

9+

parseCommandArgs,

10+

substituteArgs,

11+

} from "../../../packages/agent-core/src/harness/prompt-template-arguments.js";

412

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

513

import { parseFrontmatter } from "../utils/frontmatter.js";

614

import { createSyntheticSourceInfo, type SourceInfo } from "./source-info.js";

@@ -17,108 +25,6 @@ export interface PromptTemplate {

1725

filePath: string; // Absolute path to the template file

1826

}

192720-

/**

21-

* Parse command arguments respecting quoted strings (bash-style)

22-

* Returns array of arguments

23-

*/

24-

export function parseCommandArgs(argsString: string): string[] {

25-

const args: string[] = [];

26-

let current = "";

27-

let inQuote: string | null = null;

28-29-

for (let i = 0; i < argsString.length; i++) {

30-

const char = argsString[i];

31-32-

if (inQuote) {

33-

if (char === inQuote) {

34-

inQuote = null;

35-

} else {

36-

current += char;

37-

}

38-

} else if (char === '"' || char === "'") {

39-

inQuote = char;

40-

} else if (/\s/.test(char)) {

41-

if (current) {

42-

args.push(current);

43-

current = "";

44-

}

45-

} else {

46-

current += char;

47-

}

48-

}

49-50-

if (current) {

51-

args.push(current);

52-

}

53-54-

return args;

55-

}

56-57-

function parseSafeNonNegativeInteger(raw: string): number | undefined {

58-

const parsed = Number(raw);

59-

return Number.isSafeInteger(parsed) && parsed >= 0 ? parsed : undefined;

60-

}

61-62-

/**

63-

* Substitute argument placeholders in template content

64-

* Supports:

65-

* - $1, $2, ... for positional args

66-

* - $@ and $ARGUMENTS for all args

67-

* - ${@:N} for args from Nth onwards (bash-style slicing)

68-

* - ${@:N:L} for L args starting from Nth

69-

*

70-

* Note: Replacement happens on the template string only. Argument values

71-

* containing patterns like $1, $@, or $ARGUMENTS are NOT recursively substituted.

72-

*/

73-

export function substituteArgs(content: string, args: string[]): string {

74-

let result = content;

75-76-

// Replace $1, $2, etc. with positional args FIRST (before wildcards)

77-

// This prevents wildcard replacement values containing $<digit> patterns from being re-substituted

78-

result = result.replace(/\$(\d+)/g, (_, num) => {

79-

const parsed = parseSafeNonNegativeInteger(num);

80-

if (parsed === undefined || parsed <= 0) {

81-

return "";

82-

}

83-

const index = parsed - 1;

84-

return args[index] ?? "";

85-

});

86-87-

// Replace ${@:start} or ${@:start:length} with sliced args (bash-style)

88-

// Process BEFORE simple $@ to avoid conflicts

89-

result = result.replace(/\$\{@:(\d+)(?::(\d+))?\}/g, (_, startStr, lengthStr) => {

90-

const parsedStart = parseSafeNonNegativeInteger(startStr);

91-

if (parsedStart === undefined) {

92-

return "";

93-

}

94-

let start = parsedStart - 1; // Convert to 0-indexed (user provides 1-indexed)

95-

// Treat 0 as 1 (bash convention: args start at 1)

96-

if (start < 0) {

97-

start = 0;

98-

}

99-100-

if (lengthStr) {

101-

const length = parseSafeNonNegativeInteger(lengthStr);

102-

if (length === undefined) {

103-

return "";

104-

}

105-

return args.slice(start, start + length).join(" ");

106-

}

107-

return args.slice(start).join(" ");

108-

});

109-110-

// Pre-compute all args joined (optimization)

111-

const allArgs = args.join(" ");

112-113-

// Replace $ARGUMENTS with all args joined (new syntax, aligns with Claude, Codex, OpenCode)

114-

result = result.replace(/\$ARGUMENTS/g, allArgs);

115-116-

// Replace $@ with all args joined (existing syntax)

117-

result = result.replace(/\$@/g, allArgs);

118-119-

return result;

120-

}

121-12228

function loadTemplateFromFile(filePath: string, sourceInfo: SourceInfo): PromptTemplate | null {

12329

try {

12430

const rawContent = readFileSync(filePath, "utf-8");