一键导入
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 职业分类
| 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 stringsA test skill for validating secondary skill deployment.
Spawn a code review (architect) subagent for deep analysis, planning, and debugging. The architect specializes in strategic guidance rather than implementation. Architect should be called after building major features. Relies on `delegation` skill.
Create and manage Replit's built-in PostgreSQL databases, check status, execute SQL queries with safety checks, and run read-only queries against the production database.
Delegate tasks to specialized subagents. Use subagent for synchronous task execution, startAsyncSubagent for background task execution, messageSubagent for async follow-ups, or messageSubagentAndGetResponse for sync follow-ups.
Configure and publish your project. Use to set deployment settings and suggest publishing when the app is ready.
Access LSP diagnostics and suggest project rollback. Use for debugging static errors and helping users revert changes.