agent-inbox

List and update user feedback items from the agent inbox.

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

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 tedious. This Skill lets you list, filter, and update the status of 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: Acknowledge, dismiss, or mark feedback as implemented using the item ID. - Use Case: Ask to see all pending bug reports, review each item's feedback text and screenshots, then acknowledge them one by one so your team knows they have been triaged. ## Quick Start Show me all pending bug reports in my agent inbox and acknowledge each one after reviewing it.

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 in the agent inbox?▼

Call listAgentInboxItems with statusFilter set to ["PENDING"] to retrieve all unprocessed items. The result 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 such as ["BUG_REPORT"] to listAgentInboxItems. Supported topics are BUG_REPORT, FEATURE_REQUEST, DESIGN, CONTENT, and OTHER, and you can combine topic and status filters in one call.

How do I mark feedback as acknowledged or implemented?▼

Use updateAgentInboxItem with the item ID and the new status, for example status "ACKNOWLEDGED" or "IMPLEMENTED". The function returns the updated item fields so you can confirm the change.

Why does listing the agent inbox raise a RuntimeError?▼

A RuntimeError is raised when the agent inbox is not enabled for the repl. Enable the inbox feature for the repl first, then retry listing or updating items.

What status values are valid for inbox items?▼

Valid statuses are PENDING, ACKNOWLEDGED, DISMISSED, IMPLEMENTED, and DELETED. Passing any other status string raises a ValueError, so use only these exact uppercase values.