一键导入
agent-inbox
List and manage user feedback items from the agent inbox. Use when the user asks about feedback, bug reports, feature requests, or inbox items.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List and manage user feedback items from the agent inbox. Use when the user asks about feedback, bug reports, feature requests, or inbox items.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Design static ad creatives for social media and display advertising campaigns.
Source and evaluate candidates with job analysis, search strategies, specific candidate profiles, outreach templates, CV screening, and Gmail-based candidate communication.
Find relevant companies and leads for B2B sales with ICP definition and qualification frameworks.
Draft emails, manage calendar scheduling, prepare meeting agendas, track tasks, manage contacts, coordinate travel, and organize productivity
Create brand identity kits with color palettes, typography, logo concepts, brand naming, and brand guidelines.
Perform competitive market analysis with feature comparisons, positioning, and strategic recommendations.
| name | agent-inbox |
| description | List and manage user feedback items from the agent inbox. Use when the user asks about feedback, bug reports, feature requests, or inbox items. |
List and manage user feedback items from the agent inbox.
Use this skill when the user:
List inbox items with optional filters. Checks if the agent inbox is enabled first.
Parameters:
statusFilter (list[str], optional): Filter by statustopicFilter (list[str], optional): Filter by topicStatus values: "PENDING", "ACKNOWLEDGED", "DISMISSED", "IMPLEMENTED", "DELETED"
Topic values: "BUG_REPORT", "FEATURE_REQUEST", "DESIGN", "CONTENT", "OTHER"
Returns: Dict with:
items: List of inbox itemstotalCount: Total number of matching itemsEach item contains:
id: Unique item identifierreplId: The repl this item belongs tostatus: Current statustopic: Item topic/categoryfeedbackText: The feedback contentcurrentPage: Page the feedback was submitted fromscreenshots: List of screenshot URLstimeCreated: ISO timestamptimeUpdated: ISO timestampExample:
// List all pending items
const result = await listAgentInboxItems({ statusFilter: ["PENDING"] });
for (const item of result.items) {
console.log(`[${item.topic}] ${item.feedbackText}`);
}
// List bug reports
const result = await listAgentInboxItems({ topicFilter: ["BUG_REPORT"] });
for (const item of result.items) {
console.log(`[${item.topic}] ${item.feedbackText}`);
}
Update the status of an inbox item.
Parameters:
itemId (str, required): The item ID to updatestatus (str, required): New status to setStatus values: "PENDING", "ACKNOWLEDGED", "DISMISSED", "IMPLEMENTED", "DELETED"
Returns: Dict with the updated item fields (same shape as items in list response).
Example:
// Acknowledge an item after reviewing it
const result = await updateAgentInboxItem({ itemId: "abc123", status: "ACKNOWLEDGED" });
console.log(`Updated: ${result.id} -> ${result.status}`);
BUG_REPORT: Bug reports from usersFEATURE_REQUEST: Feature requestsDESIGN: Design feedbackCONTENT: Content-related feedbackOTHER: Other feedbackPENDING: New, unprocessed itemACKNOWLEDGED: Item has been seen and notedDISMISSED: Item was dismissedIMPLEMENTED: Feedback has been implementedDELETED: Item was deleted// 1. List pending inbox items
const result = await listAgentInboxItems({ statusFilter: ["PENDING"] });
console.log(`Found ${result.totalCount} pending items`);
// 2. Review each item and acknowledge
for (const item of result.items) {
console.log(`[${item.topic}] ${item.feedbackText}`);
await updateAgentInboxItem({ itemId: item.id, status: "ACKNOWLEDGED" });
}
RuntimeError if the agent inbox is not enabled for the replValueError for unrecognized status stringsValueError for unrecognized topic strings