agent-inbox

List and update user feedback items from the agent inbox API.

Updated Mar 6, 2026
One-click install
npx skills add https://github.com/gopaljilab/Gupta-Portfolio --skill agent-inbox-gopaljilab
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agent-inbox
Source: https://github.com/gopaljilab/Gupta-Portfolio/tree/main/.local/skills/agent-inbox
Command: npx skills add https://github.com/gopaljilab/Gupta-Portfolio --skill agent-inbox-gopaljilab

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? User feedback such as bug reports and feature requests accumulates in the agent inbox, and reviewing or triaging it manually is slow. This Skill lets you query, filter, and update inbox items directly through conversation. ## Core Features & Use Cases - List Inbox Items: Retrieve feedback items filtered by status (PENDING, ACKNOWLEDGED, DISMISSED, IMPLEMENTED, DELETED) or topic (BUG_REPORT, FEATURE_REQUEST, DESIGN, CONTENT, OTHER). - Update Item Status: Mark items as acknowledged, dismissed, implemented, or deleted after review. - Use Case: Ask to see all pending bug reports, review each item's feedback text and screenshots, then acknowledge the ones you have triaged. ## Quick Start Show me all pending bug reports in my agent inbox.

Frequently Asked Questions about agent-inbox

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

FAQPage Schema
How do I list pending feedback items from the agent inbox?▼

Call listAgentInboxItems with statusFilter set to ["PENDING"] to retrieve all unprocessed feedback items. The response includes each item's topic, feedback text, screenshots, and timestamps, plus a totalCount of matching items.

How do I filter inbox items by topic like bug reports?▼

Pass a topicFilter array to listAgentInboxItems, for example ["BUG_REPORT"]. Supported topics are BUG_REPORT, FEATURE_REQUEST, DESIGN, CONTENT, and OTHER, and filters can be combined with status filters.

What statuses can I set on an agent inbox item?▼

Use updateAgentInboxItem with the item ID and one of five statuses: PENDING, ACKNOWLEDGED, DISMISSED, IMPLEMENTED, or DELETED. The function returns the updated item fields after the change.

Why does listing inbox items raise a RuntimeError?▼

A RuntimeError occurs when the agent inbox is not enabled for the repl. Enable the inbox feature for the repl first, then retry the listAgentInboxItems call.

When should I not use the agent inbox skill?▼

Do not use it to check the inbox automatically without the user asking, to auto-implement feedback, or for general project task management. Present items to the user and use project tasks for broader work tracking.