Execute Replit primary workflow: Core Workflow A. Use when implementing primary use case, building main features, or core integration tasks. Trigger with phrases like "replit main workflow", "primary task with replit".
From replit-packnpx claudepluginhub nickloveinvesting/nick-love-plugins --plugin replit-packThis skill is limited to using the following tools:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Primary money-path workflow for Replit. This is the most common use case. Replit is a browser-based development environment and deployment platform that lets you create, run, and host applications without any local setup. Its API enables programmatic management of Repls, making it useful for automated onboarding flows, educational platforms that provision development environments per student, and tools that need to spin up isolated code execution environments on demand.
replit-install-auth setupAuthenticate with the Replit API using your personal or team API token. Select the template or language runtime for the Repl you want to create or interact with. Verify that your account has sufficient compute quota for the expected number of concurrent Repls, particularly if you are building a multi-tenant system that provisions one environment per user.
// Step 1 implementation
Create the Repl via the API with your specified configuration, or connect to an existing Repl by its slug. Execute code or run commands within the Repl environment using the API. Monitor the output stream for results, errors, or interactive prompts. For educational or demo use cases, share the Repl URL with users so they can view and interact with the running environment.
// Step 2 implementation
Capture the execution output and handle any errors returned from the runtime. If the Repl is ephemeral, clean up by deleting it after the session ends to avoid accumulating idle Repls against your quota. For persistent Repls, save the final state and ensure it is set to the correct visibility (public or private).
// Step 3 implementation
| Error | Cause | Solution |
|---|---|---|
| Error 1 | Cause | Solution |
| Error 2 | Cause | Solution |
// Complete workflow example
For secondary workflow, see replit-core-workflow-b.