replit-core-workflow-b
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". '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill replit-core-workflow-b --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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: st
- Overview
- Prerequisites
- Instructions
- Step 1: Team Member Management
- Step 2: Seat Audit
- Step 3: Deployment Promotion
- Step 4: Custom Domain Configuration
- Step 5: Bulk Repl Audit
- Step 6: Activity Monitoring
- Error Handling
- Resources
- Next Steps
Review recent team activity
curl "https://replit.com/api/v1/teams/TEAM_ID/audit-log?limit=50" \
jq '.events[] | {user, action, resource, timestamp}'
Export member activity CSV
curl "https://replit.com/api/v1/teams/TEAM_ID/members" \
jq -r '.[] | [.username, .email, .role, .lastActive] | @csv' > team-activity.csvWhat does the replit-core-workflow-b skill do?
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". '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill replit-core-workflow-b --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,596 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.