get-comments

Lists filtered, paginated NovaDB comments with continuation tokens.

Updated Feb 27, 2026
One-click install
npx skills add https://github.com/novadb/claude-plugins --skill get-comments
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: get-comments
Source: https://github.com/novadb/claude-plugins/tree/main/consulting/skills/get-comments
Command: npx skills add https://github.com/novadb/claude-plugins --skill get-comments

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a simple, consistent way to retrieve lists of comments from NovaDB with flexible filtering and pagination so users can audit, display, or process comment data without manually handling paging logic.

Core Features & Use Cases

  • Filtered retrieval: Query comments by branchRef, objectRef, user, or deleted status to narrow results for moderation or reporting.
  • Pagination support: Uses an opaque continuation token and a take parameter to page through large result sets reliably.
  • Integration: Designed to be invoked by agents or tools that need bulk comment lists for UI displays, moderation workflows, or analytics pipelines.

Quick Start

List comments for branchRef 2100347 and objectRef 12345 with take 10 and return the continuation token if more results exist.

Frequently Asked Questions about get-comments

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

FAQPage Schema
How do I list and paginate NovaDB comments for a specific content branch?

To paginate NovaDB comments, query by branchRef and objectRef using a take parameter to limit page size, returning a comment array alongside an opaque continuation token for fetching the next page of results.

Can I filter NovaDB comments by user or deletion status for moderation?

Yes, you can filter NovaDB comments by passing the user or isDeleted parameters to retrieve specific comment subsets for moderation, auditing, or reporting without manually sorting through entire datasets.

What is the best way to retrieve large sets of comments from a CMS without hitting pagination limits?

The best way to retrieve large comment sets is using an opaque continuation token, which tracks the pagination state securely so you can reliably page through extensive results across multiple requests.

How does the continuation token work when paging through NovaDB comment lists?

The continuation token works as an opaque cursor returned with each paginated array of comment objects; pass it into your next request to fetch the subsequent batch of comments seamlessly.

Do I need to manually handle page offsets when querying deleted comments in NovaDB?

No, you do not need to manually handle page offsets; filter by the isDeleted parameter and use the provided opaque continuation token to navigate forward through the paginated comment results accurately.