get-comment

Fetches a single comment by its ID from NovaDB CMS.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Quickly locate and retrieve a single comment record when you know its identifier, avoiding manual searches across branches and objects and enabling fast display or moderation.

Core Features & Use Cases

  • Fetches a single comment by its unique ID and returns the complete comment object with metadata.
  • Useful for rendering a comment in a user interface, performing moderation actions, or including a comment in audit and reporting workflows.
  • Integrates with NovaDB CMS toolchain to provide deterministic retrieval within branch and object contexts.

Quick Start

Ask the get-comment skill to fetch the comment with id abc-123 for display and moderation.

Frequently Asked Questions about get-comment

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

FAQPage Schema
How do I retrieve a comment by ID from a CMS?

To retrieve a comment by ID from a CMS, provide the commentId string to fetch the full comment object, including body, author, timestamps, and deleted status via the novadb_cms_get_comment tool. This allows fast display or moderation without manual searches.

What information is returned when I fetch a single comment?

Fetching a single comment returns the complete comment object with metadata, including the id, body, branch reference, object reference, author, timestamps, and deleted status. This provides the necessary details for audit workflows or user interface rendering.

How do I get a specific comment for moderation workflows?

To get a specific comment for moderation workflows, request the comment using its unique identifier. The system performs deterministic retrieval within the branch and object context, returning the full record needed to perform moderation actions or include it in reporting.

Does this comment retrieval method require branch and object context?

Yes, this comment retrieval method requires branch and object context. It integrates with the NovaDB CMS toolchain to provide deterministic retrieval within those specific contexts, ensuring you fetch the exact comment record associated with the correct branch and object.

What is the best way to pull a deleted comment record for an audit?

The best way to pull a deleted comment record for an audit is to fetch the comment by its ID. The returned comment object includes a deleted status field, allowing you to verify the record's state and include it accurately in audit and reporting workflows.