@teamclaw/feishu-agent 1.0.4 → 1.0.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.
package/README.md CHANGED
@@ -5,9 +5,10 @@ Feishu Agent is a TypeScript/Node.js middleware layer for Feishu (Lark) API inte
5
5
  ## Features
6
6
 
7
7
  - 📅 Calendar management (list calendars, events, create/delete events)
8
+ - ⚠️ **Automatic conflict detection** when creating events (uses FreeBusy API)
8
9
  - ✅ Todo management via Bitable
9
10
  - 👥 Contact management (list users, search by name/email)
10
- - 🔐 OAuth 2.0 authentication support
11
+ - 🔐 OAuth 2.0 authentication with auto token refresh
11
12
  - 🚀 CLI interface with commander
12
13
 
13
14
  ## Installation
@@ -71,7 +72,7 @@ feishu_agent calendar list
71
72
  # List events
72
73
  feishu_agent calendar events
73
74
 
74
- # Create event
75
+ # Create event (automatically checks for time conflicts)
75
76
  feishu_agent calendar create --summary "Meeting" --start "2026-03-01 14:00" --end "2026-03-01 15:00"
76
77
 
77
78
  # Create event with attendees
@@ -173,6 +174,8 @@ Global config is stored at `~/.feishu-agent/config.json`:
173
174
  }
174
175
  ```
175
176
 
177
+ **Note:** User access tokens are automatically refreshed when expired. Just run `feishu_agent auth` again if the refresh token expires.
178
+
176
179
  ## License
177
180
 
178
181
  MIT
package/dist/cli.js CHANGED
@@ -3751,7 +3751,7 @@ async function handleSearch(config, query) {
3751
3751
  // package.json
3752
3752
  var package_default = {
3753
3753
  name: "@teamclaw/feishu-agent",
3754
- version: "1.0.4",
3754
+ version: "1.0.5",
3755
3755
  description: "Feishu Agent CLI for AI assistants",
3756
3756
  type: "module",
3757
3757
  private: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamclaw/feishu-agent",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Feishu Agent CLI for AI assistants",
5
5
  "type": "module",
6
6
  "private": false,