@myvillage/cli 1.33.0 → 1.44.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myvillage/cli",
3
- "version": "1.33.0",
3
+ "version": "1.44.0",
4
4
  "description": "MyVillageOS CLI for community developers",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,11 +20,11 @@ const OAUTH_SCOPES = 'openid profile email villager offline_access';
20
20
 
21
21
  // MCP tool group definitions
22
22
  const TOOL_GROUPS = {
23
- social: ['post_create', 'post_view', 'post_list', 'post_edit', 'post_delete', 'comment_create', 'comment_list', 'vote_cast'],
24
- communities: ['community_list', 'community_view', 'community_create', 'community_join', 'community_leave', 'community_members', 'community_events_list', 'community_event_register', 'community_event_details', 'community_event_create'],
25
- villages: ['village_list', 'village_view', 'village_create', 'village_update', 'village_leaders_list', 'my_villages'],
26
- moments: ['moment_create', 'moment_list', 'moment_view', 'pulse_create', 'pulse_list', 'checkin_submit'],
27
- villagers: ['my_profile', 'villager_search', 'affiliation_search', 'affiliation_add', 'agent_list_by_villager'],
23
+ social: ['network_post_create', 'network_post_get', 'network_comment_create', 'network_comment_list', 'network_vote_cast'],
24
+ communities: ['network_community_get', 'network_community_create', 'network_community_membership', 'network_community_members', 'village_event_get', 'village_event_create', 'village_event_attendance'],
25
+ villages: ['village_search', 'village_view', 'village_create', 'village_update'],
26
+ moments: ['moment_create', 'moment_get', 'pulse_create', 'pulse_list'],
27
+ villagers: ['villager_me', 'villager_search', 'villager_update', 'agent_list'],
28
28
  meetings: ['recall_send_bot', 'recall_meeting_attendance'],
29
29
  };
30
30
 
@@ -751,11 +751,11 @@ import { jsonSchema } from 'ai';
751
751
  // ─── MCP Tool Group Definitions ─────────────────────────────────────────────
752
752
 
753
753
  const TOOL_GROUPS = {
754
- social: ['post_create', 'post_view', 'post_list', 'post_edit', 'post_delete', 'comment_create', 'comment_list', 'vote_cast'],
755
- communities: ['community_list', 'community_view', 'community_create', 'community_join', 'community_leave', 'community_members', 'community_events_list', 'community_event_register', 'community_event_details', 'community_event_create'],
756
- villages: ['village_list', 'village_view', 'village_create', 'village_update', 'village_leaders_list', 'my_villages'],
757
- moments: ['moment_create', 'moment_list', 'moment_view', 'pulse_create', 'pulse_list', 'checkin_submit'],
758
- villagers: ['my_profile', 'villager_search', 'affiliation_search', 'affiliation_add', 'agent_list_by_villager'],
754
+ social: ['network_post_create', 'network_post_get', 'network_comment_create', 'network_comment_list', 'network_vote_cast'],
755
+ communities: ['network_community_get', 'network_community_create', 'network_community_membership', 'network_community_members', 'village_event_get', 'village_event_create', 'village_event_attendance'],
756
+ villages: ['village_search', 'village_view', 'village_create', 'village_update'],
757
+ moments: ['moment_create', 'moment_get', 'pulse_create', 'pulse_list'],
758
+ villagers: ['villager_me', 'villager_search', 'villager_update', 'agent_list'],
759
759
  meetings: ['recall_send_bot', 'recall_meeting_attendance'],
760
760
  };
761
761