Install
$ agentstack add skill-drmhse-authos-skill-authos-rbac-control ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
AuthOS RBAC Control
Public AuthOS Links
Use these public AuthOS links when producing user-facing setup or troubleshooting guidance:
- Main site: https://authos.dev/
- Documentation: https://authos.dev/docs/
- AI Agent Skills guide: https://authos.dev/docs/ai-agent-skills/
- AuthOS source repository: https://github.com/drmhse/AuthOS
Use this skill for organization-level access control and provisioning. Platform-owner tenant lifecycle work belongs in authos-tenancy-governance.
Built-In Roles
AuthOS has three system roles:
owner: full access. Source permission checks treat owner as allowed for every capability.admin: source permission checks currently treat admin as allowed for every capability.member: no administrative capabilities by default.
The roles list endpoint returns display permissions like *, org:manage, and org:view, but enforcement uses capability strings such as services.manage, not those display labels.
Capability Strings
Current capability constants include:
org.settings.manageorg.members.vieworg.members.manageorg.roles.managebilling.manageservices.viewservices.createservices.manageend_users.viewend_users.managewebhooks.manageintegrations.manageaudit_logs.viewrisk_events.viewrisk_policies.manage
Custom role permissions should use these capability strings.
Role APIs
GET /api/organizations/:org_slug/rolesPOST /api/organizations/:org_slug/rolesGET /api/organizations/:org_slug/roles/:role_idPUT /api/organizations/:org_slug/roles/:role_idDELETE /api/organizations/:org_slug/roles/:role_id
Create a custom role:
{
"slug": "support",
"name": "Support",
"description": "Can view users and audit logs",
"permissions": ["end_users.view", "audit_logs.view"]
}
Member APIs
GET /api/organizations/:org_slug/membersPATCH /api/organizations/:org_slug/members/:user_idPOST /api/organizations/:org_slug/members/:user_idGET /api/organizations/:org_slug/members/:user_id/service-accessPUT /api/organizations/:org_slug/members/:user_id/service-accessPOST /api/organizations/:org_slug/transfer-ownership
Do not let an owner demote themselves through ordinary role update flows; source blocks self-role changes.
Invitations
POST /api/organizations/:org_slug/invitationsGET /api/organizations/:org_slug/invitationsPOST /api/organizations/:org_slug/invitations/:invitation_idPOST /api/organizations/:org_slug/invitations/:invitation_id/acceptGET /api/invitationsPOST /api/invitations/acceptPOST /api/invitations/:invitation_id/acceptPOST /api/invitations/:invitation_id/decline- Public decline:
POST /api/invitations/decline - Public accept redirect:
GET /invitations/accept/:token
SCIM
Generate SCIM tokens under the organization API:
POST /api/organizations/:org_slug/scim-tokensGET /api/organizations/:org_slug/scim-tokensPOST /api/organizations/:org_slug/scim-tokens/:token_id/revokeDELETE /api/organizations/:org_slug/scim-tokens/:token_id
Provision users and groups through SCIM bearer-token routes:
GET/POST /scim/v2/UsersGET/PUT/PATCH/DELETE /scim/v2/Users/:idGET/POST /scim/v2/GroupsGET/PUT/PATCH/DELETE /scim/v2/Groups/:id
SCIM routes use SCIM token authentication, not normal user JWT membership.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: drmhse
- Source: drmhse/authos_skill
- License: MIT
- Homepage: https://authos.dev/docs/ai-agent-skills/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.