Agent skill · Workflow & Productivity

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". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.12.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(curl:*)Grep
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/replit-core-workflow-b/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,596
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Team Member Management
  5. Step 2: Seat Audit
  6. Step 3: Deployment Promotion
  7. Step 4: Custom Domain Configuration
  8. Step 5: Bulk Repl Audit
  9. Step 6: Activity Monitoring
  10. Error Handling
  11. Resources
  12. Next Steps
Commands it runs
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.csv
More from claude-code-plugins-plus-skills
All skills →
About this skill
What 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.

Keep going