@neomei/opencode-feishu 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -108,7 +108,7 @@ export function parseBotName(projectDir) {
108
108
  // 1. AgentSoul global config
109
109
  try {
110
110
  const content = readFileSync(join(homedir(), '.agentsoul', 'soul', 'IDENTITY.md'), 'utf-8');
111
- const match = content.match(/\*\*Name:\*\*\s*(.+)/);
111
+ const match = content.match(/\*\*Name\*\*:\s*(.+)/);
112
112
  if (match?.[1])
113
113
  return match[1].trim();
114
114
  }
@@ -116,7 +116,7 @@ export function parseBotName(projectDir) {
116
116
  // 2. Project-local soul config
117
117
  try {
118
118
  const content = readFileSync(join(projectDir, 'soul', 'IDENTITY.md'), 'utf-8');
119
- const match = content.match(/\*\*Name:\*\*\s*(.+)/);
119
+ const match = content.match(/\*\*Name\*\*:\s*(.+)/);
120
120
  if (match?.[1])
121
121
  return match[1].trim();
122
122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neomei/opencode-feishu",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Node.js-native Feishu/Lark bridge for OpenCode — production-grade daemon, persistence, preflight, structured logs.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",