Initial commit with translated description

This commit is contained in:
2026-03-29 08:33:35 +08:00
commit ed7ebaa3f3
28 changed files with 2392 additions and 0 deletions

12
validate_patch.js Normal file
View File

@@ -0,0 +1,12 @@
const { FeishuClient } = require('./feishu-client'); // Assuming standard client
// Mock client or use real if env vars set (skipping real call to avoid side effects in validation)
// We just want to ensure the syntax of index.js is valid after edit.
try {
const index = require('./index.js');
console.log('skills/feishu-doc/index.js loaded successfully.');
} catch (e) {
console.error('Failed to load index.js:', e);
process.exit(1);
}