一键导入
replit-docs
Search Replit documentation for platform features, pricing, deployments, and capabilities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search Replit documentation for platform features, pricing, deployments, and capabilities.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
A test skill for validating secondary skill deployment.
List and manage user feedback items from the agent inbox. Use when the user asks about feedback, bug reports, feature requests, or inbox items.
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.
| name | replit-docs |
| description | Search Replit documentation for platform features, pricing, deployments, and capabilities. |
Search Replit documentation to find information about features, pricing, deployments, and platform capabilities.
Use this skill when:
Search Replit documentation for platform information.
Parameters:
query (str, required): Natural language question about Replit features, pricing, or capabilitiesReturns: Dict with response and relevantPages (list of title/url dicts)
Example:
// Get pricing information
const result = await searchReplitDocs({ query: "How much does Core cost?" });
console.log(result.response);
for (const page of result.relevantPages) {
console.log(`${page.title}: ${page.url}`);
}
// Learn about deployments
const result = await searchReplitDocs({ query: "How do I deploy a web app?" });
console.log(result.response);
// User asks about object storage pricing
const result = await searchReplitDocs({ query: "How much does Replit object storage cost?" });
console.log(result.response);
// Provide relevant documentation links
for (const page of result.relevantPages) {
console.log(`- ${page.title}: ${page.url}`);
}