소스 정보
- 저장소
- omiinaya/repairshopr-skills
- 최근 소스 활동
- 2026년 3월 6일 20:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-portal-user명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | repairshopr-portal-user |
| description | Manage portal users (customer portal access) in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"administrators, customer service","api":"GET /portal_users, POST /portal_users, PUT /portal_users/{id}, DELETE /portal_users/{id}, POST /portal_users/create_invitation"} |
I manage portal users, which are customer portal login accounts. Portal users are typically contacts or customers who have credentials to access the customer portal for viewing tickets, invoices, making payments, etc. I can list, create, update, delete portal users and send invitation emails.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermission: "Global Admin" required for all operations.
List Portal Users (GET /portal_users) Optional:
customer_id (integer) - Filter by customeremail (string) - Filter by emailpage (integer) - Page number (100 results per page)Create Portal User (POST /portal_users) Body must include (fields not fully documented but typical):
email (string) - User's email (login)password (string) - Initial password (or system generates one)password_confirmation (string) - Confirm passwordcustomer_id (integer) - Associated customercontact_id (integer) - Associated contact (optional)portal_group_id (integer) - Portal permissions group IDResponse returns the created portal user without the password.
Update Portal User (PUT /portal_users/{id})
id (integer) - Portal user ID
Body can include: password, password_confirmation, other user attributesDelete Portal User (DELETE /portal_users/{id})
id (integer) - Portal user IDSend Invitation (POST /portal_users/create_invitation)
Body: optionally id to target specific user? Actually the endpoint seems to be for creating an invitation; documentation shows id parameter but unclear. Typically you'd invite a portal user by email.
Example call:
// List portal users for a customer
const users = await skill({ name: "repairshopr-portal-user" }, {}, { customer_id: 123, method: 'GET' })
// Create portal user
const portalUser = await skill({ name: "repairshopr-portal-user" }, {
email: "contact@client.com",
password: "SecurePass123!",
password_confirmation: "SecurePass123!",
customer_id: 123,
portal_group_id: 4 // Standard customer portal group
})
// Update password
await skill({ name: "repairshopr-portal-user" }, {
password: "NewPass456!",
password_confirmation: "NewPass456!"
}, { id: portalUser.portal_user.id, method: 'PUT' })
// Delete portal user
await skill({ name: "repairshopr-portal-user" }, {},
{ id: portalUser.portal_user.id, method: 'DELETE', : { : portalUser.. } }
)
({ : }, {},
{ : , : , : {} }
)
Response includes:
id, email, customer_id, contact_id, portal_group_id, created_at{ success: true, message: "..." } or errorportal_group_id determines what the user can do in the portal (must be configured in RepairShopr)repairshopr-customer-create - First create customerrepairshopr-contact-create - Optionally create contact firstrepairshopr-customer-search - Find existing customers