From replit-pack
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".
How this skill is triggered — by the user, by Claude, or both
Slash command
/replit-pack:replit-core-workflow-aThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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, a...
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.
npx claudepluginhub nickloveinvesting/nick-love-plugins --plugin replit-packDeploys Replit apps via Static, Autoscale, or Reserved VM. Configures .replit, secrets, custom domains, health checks for production.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.