replit-core-workflow-b

Featured

Manage Replit Teams, member permissions, deployment promotion, and bulk Repl admin. Use when managing team access, configuring deployment environments, auditing Repls, or administering organization settings. Trigger with phrases like "replit team management", "replit admin", "replit permissions", "replit bulk operations", "manage replit members".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Replit Core Workflow B — Teams & Admin ## Overview Secondary workflow for Replit: team member management, role assignment, deployment promotion (dev to production), custom domain setup, and organizational audit. Complements the app-building workflow in `replit-core-workflow-a`. ## Prerequisites - Replit Teams or Enterprise plan - Organization Owner or Admin role - Team API token stored in `REPLIT_TOKEN` ## Instructions ### Step 1: Team Member Management ```typescript // src/admin/team-manager.ts interface TeamMember { username: string; email: string; role: 'owner' | 'admin' | 'member'; lastActive: string; } async function listMembers(teamId: string): Promise<TeamMember[]> { const res = await fetch(`https://replit.com/api/v1/teams/${teamId}/members`, { headers: { Authorization: `Bearer ${process.env.REPLIT_TOKEN}` }, }); return res.json(); } async function inviteMember(teamId: string, email: string, role: string) { return fetch(`https://replit.com/api/v1/teams/${teamId}/members`, { method: 'POST', headers: { Authorization: `Bearer ${process.env.REPLIT_TOKEN}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ email, role }), }); } async function removeMember(teamId: string, username: string) { return fetch(`https://replit.com/api/v1/teams/${teamId}/members/${username}`, { method: 'DELETE', headers: { Authorization: `Bearer ${process.env.REPLIT_TOKEN}` }, }); } ``` ### Step 2: Seat Audit ```type...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

replit-enterprise-rbac

Configure Replit Teams roles, SSO/SAML, custom groups, and organization-level access control. Use when setting up team permissions, configuring SSO, managing deployment access, or auditing organization security on Replit. Trigger with phrases like "replit SSO", "replit RBAC", "replit enterprise", "replit roles", "replit permissions", "replit SAML", "replit teams admin".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-core-workflow-a

Build a full-stack web app on Replit with Express/Flask, PostgreSQL, Auth, and deployment. Use when creating a new production app on Replit from scratch, building the primary user-facing workflow, or following Replit best practices. Trigger with phrases like "build replit app", "replit full stack", "replit web app", "create replit project", "replit express flask".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-webhooks-events

Handle Replit deployment events, build Replit Extensions, and set up Agents & Automations. Use when integrating with Replit deployment lifecycle, building workspace extensions, or creating automated workflows with Replit Agent. Trigger with phrases like "replit webhook", "replit events", "replit extension", "replit automation", "replit notifications", "replit agent automation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-security-basics

Apply Replit security best practices: Secrets management, REPL_IDENTITY tokens, Auth headers, and public Repl safety. Use when securing API keys, validating request identity, or auditing Replit security configuration. Trigger with phrases like "replit security", "replit secrets", "secure replit", "replit public safety", "replit identity token".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-deploy-integration

Deploy Replit apps with Autoscale, Reserved VM, and Static deployment types. Use when deploying to production, configuring deployment settings, setting up custom domains, or managing deployment secrets and health checks. Trigger with phrases like "deploy replit", "replit deployment", "replit autoscale", "replit reserved VM", "replit static deploy", "replit custom domain".

2,266 Updated today
jeremylongshore