.local/skills/replit-docs/SKILL.md
Search Replit documentation for platform features, pricing, deployments, and capabilities.
npx skillsauth add akhil151/dtpapp replit-docsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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}`);
}
tools
Manage application workflows including configuration, restart, and removal.
development
Search the web and fetch content from URLs. Use for real-time information, API documentation, and current events.
testing
Run automated UI tests against your application using a Playwright-based testing subagent. Use after implementing features to verify they work correctly.
data-ai
Create reusable skills that extend agent capabilities. Use when the user asks to create a skill, teach you something reusable, or save instructions for future tasks.