zsxq-group

Lists Zsxq knowledge planet groups, topics, hashtags, and members via zsxq-cli.

17.5k|2.5k|Updated Nov 8, 2018
One-click install
npx skills add https://github.com/itwanger/toBeBetterJavaer --skill zsxq-group
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: zsxq-group
Source: https://github.com/itwanger/toBeBetterJavaer/tree/main/.agents/skills/zsxq-group
Command: npx skills add https://github.com/itwanger/toBeBetterJavaer --skill zsxq-group

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires zsxq-cli, and includes references (resource) components.

What problem does it solve?

Managing Zsxq (知识星球) communities requires manually navigating the app to find group IDs, browse topics, and look up tags or members. This Skill exposes those operations as CLI commands so an AI agent can list your planets, browse their topics, query hashtags, and search members directly.

Core Features & Use Cases

  • List Planets: Enumerate all planets you joined or created with group +list, returning group_id and name for subsequent operations.
  • Browse Topics & Hashtags: Page through a planet's latest topics with group +topics and list all hashtags with counts via group +hashtags.
  • Search Groups and Members: Use API calls like search_groups and search_group_members to locate planets by keyword or find specific members by nickname.
  • Use Case: You want to check the latest discussions in your paid community. Run group +list to get the group_id, then group +topics --group-id <id> to see the newest posts in a table.

Quick Start

Ask the AI to list all the Zsxq planets you have joined and show the latest topics in one of them.

Frequently Asked Questions about zsxq-group

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list all my Zsxq planets from the command line?

Run `zsxq-cli group +list` to show all planets you joined or created in a table with group_id and name. Use `--limit` to return more results (max 200) or `--json` for full fields including owner and statistics.

How to browse topics in a Zsxq planet with pagination?

Use `zsxq-cli group +topics --group-id <id>` to list the latest topics in reverse chronological order. When the JSON output shows `has_more: true`, pass the returned `next_end_time` value as `--end-time` to fetch the next page.

How do I find a planet's group_id if I only know its name?

Run `group +list` to see planets you already joined, or call the `search_groups` API with a keyword for public planets. If multiple similar names match, present the candidates with their group_ids and let the user confirm.

Can I search Zsxq planet members by nickname?

Yes, use the `search_group_members` API with group_id, keyword, and limit parameters. It is a keyword search for locating specific members, not a full member listing, so do not use it to enumerate everyone in the planet.

What should I do when zsxq-cli returns a 401 or token expired error?

A 401 or 'not logged in' error means the authentication token expired. Read the zsxq-shared skill documentation for the login flow and re-authenticate before retrying the group commands.