Skip to main content

whatsapp-group-info

Get WhatsApp group information using Green API. Use when the user asks to 'check group size', 'get group info', 'how many in group', 'update attendance', or wants to get WhatsApp group details for a workshop.

설치로 이동

소스 정보

저장소
aviz85/architect-workshops
최근 소스 활동
2026년 1월 6일 19:01
감지된 SKILL.md 언어
영어
스타
0
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
5 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
whatsapp-group-info
description
Get WhatsApp group information using Green API. Use when the user asks to 'check group size', 'get group info', 'how many in group', 'update attendance', or wants to get WhatsApp group details for a workshop.
# WhatsApp Group Info Retrieve WhatsApp group information using Green API, including participant count for tracking workshop attendance. ## Prerequisites 1. Green API account at [green-api.com](https://green-api.com) 2. Instance created and authorized (QR code scanned) 3. Credentials configured in `.env` file ## Setup ### 1. Install Dependencies ```bash cd /home/user/architect-workshops/.claude/skills/whatsapp-group-info/scripts npm install ``` ### 2. Configure Credentials Copy `.env.example` to `.env` and fill in your credentials: ```bash cp .env.example .env ``` Edit `.env`: ``` GREEN_API_INSTANCE_ID=your_instance_id GREEN_API_TOKEN=your_api_token ``` Get these from [green-api.com console](https://console.green-api.com/). ## Usage ### Get Group Info ```bash cd /home/user/architect-workshops/.claude/skills/whatsapp-group-info/scripts npx ts-node get_group_info.ts "GROUP_ID" ``` **GROUP_ID format:** `120363123456789012@g.us` ### Example ```bash npx ts-node get_group_info.ts "120363044291817037@g.us" ``` ### Output Returns JSON with: - `groupId` - Group ID - `subject` - Group name - `size` - Number of participants - `participants` - Array of member details - `owner` - Group owner ID - `creation` - Creation timestamp ## Workflow ### 1. Find Group ID The Group ID should be stored in the workshop's `workshop.md` file under WhatsApp Group section. ### 2. Run the Script ```bash npx ts-node get_group_info.ts "GROUP_ID_FROM_WORKSHOP" ``` ### 3. Update Workshop Attendance After getting the group size, update the workshop's attendance table: ```markdown **Attendance:** | Metric | Count | |--------|-------| | WhatsApp Group Size | 45 | <-- Update this ``` ## Integration with Workshop Updates When user says "check group size for workshop X": 1. Read the workshop.md to get the Green API Group ID 2. Run this script with that Group ID 3. Update the workshop.md attendance section with the size 4. Inform user of the participant count ## Notes - Your phone must be connected to internet for API to work - Group ID format: `XXXXXXXXXX@g.us` - If you're not admin, some fields may be empty (like invite link) - Rate limits may apply for frequent requests
GitHub에서 보기