@teamclaw/feishu-agent 1.0.2 → 1.0.3
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.
- package/dist/cli.js +48 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3724,11 +3724,58 @@ async function handleSearch(config, query) {
|
|
|
3724
3724
|
console.log("No matching users found.");
|
|
3725
3725
|
}
|
|
3726
3726
|
}
|
|
3727
|
+
// package.json
|
|
3728
|
+
var package_default = {
|
|
3729
|
+
name: "@teamclaw/feishu-agent",
|
|
3730
|
+
version: "1.0.3",
|
|
3731
|
+
description: "Feishu Agent CLI for AI assistants",
|
|
3732
|
+
type: "module",
|
|
3733
|
+
private: false,
|
|
3734
|
+
bin: {
|
|
3735
|
+
"feishu-agent": "./dist/cli.js"
|
|
3736
|
+
},
|
|
3737
|
+
scripts: {
|
|
3738
|
+
test: "bun test",
|
|
3739
|
+
start: "bun run src/cli/index.ts",
|
|
3740
|
+
build: "bun build ./src/cli/index.ts --target=bun --outfile=dist/cli.js",
|
|
3741
|
+
prepublishOnly: "bun run build"
|
|
3742
|
+
},
|
|
3743
|
+
devDependencies: {
|
|
3744
|
+
"@types/bun": "latest"
|
|
3745
|
+
},
|
|
3746
|
+
dependencies: {
|
|
3747
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
3748
|
+
commander: "^14.0.3",
|
|
3749
|
+
zod: "^4.3.6"
|
|
3750
|
+
},
|
|
3751
|
+
engines: {
|
|
3752
|
+
bun: ">=1.0.0"
|
|
3753
|
+
},
|
|
3754
|
+
files: [
|
|
3755
|
+
"dist",
|
|
3756
|
+
"README.md"
|
|
3757
|
+
],
|
|
3758
|
+
keywords: [
|
|
3759
|
+
"feishu",
|
|
3760
|
+
"lark",
|
|
3761
|
+
"mcp",
|
|
3762
|
+
"ai",
|
|
3763
|
+
"assistant",
|
|
3764
|
+
"calendar",
|
|
3765
|
+
"todo",
|
|
3766
|
+
"cli"
|
|
3767
|
+
],
|
|
3768
|
+
repository: {
|
|
3769
|
+
type: "git",
|
|
3770
|
+
url: "git+https://github.com/teamclaw/feishu-agent.git"
|
|
3771
|
+
},
|
|
3772
|
+
license: "MIT"
|
|
3773
|
+
};
|
|
3727
3774
|
|
|
3728
3775
|
// src/cli/index.ts
|
|
3729
3776
|
async function main() {
|
|
3730
3777
|
const program2 = new Command;
|
|
3731
|
-
program2.name("feishu-agent").description("Feishu Agent CLI for AI assistants").version(
|
|
3778
|
+
program2.name("feishu-agent").description("Feishu Agent CLI for AI assistants").version(package_default.version);
|
|
3732
3779
|
program2.command("setup").description("Initialize configuration").action(setupCommand);
|
|
3733
3780
|
program2.command("auth").description("Authenticate with Feishu OAuth").action(authCommand);
|
|
3734
3781
|
program2.command("whoami").description("Show current user info").action(whoamiCommand);
|