agent-inbox

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

Updated Apr 20, 2026
One-click install
npx skills add https://github.com/AmirEmad11/instabot --skill agent-inbox-amiremad11
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-inbox
Source: https://github.com/AmirEmad11/instabot/tree/main/.local/skills/agent-inbox
Command: npx skills add https://github.com/AmirEmad11/instabot --skill agent-inbox-amiremad11

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing user feedback scattered across bug reports, feature requests, and design comments requires manual tracking. This Skill lets you query and update feedback items in the agent inbox programmatically, so nothing gets lost or ignored. ## 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 as you process them. - Use Case: A user asks "show me all pending bug reports" — the Skill lists matching items with feedback text, screenshots, and timestamps, then acknowledges each one after review. ## Quick Start Ask the agent to list all pending feedback items in the inbox and summarize each bug report.

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 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 array to listAgentInboxItems, for example ["BUG_REPORT"]. Supported topics are BUG_REPORT, FEATURE_REQUEST, DESIGN, CONTENT, and OTHER, and you can combine topic and status filters in one call.

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 the agent inbox raise a RuntimeError?

A RuntimeError occurs when the agent inbox is not enabled for the repl. The inbox feature must be activated before any list or update calls will succeed.

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 without user review, or for general project task management, which should use project tasks instead.