Install
$ agentstack add skill-iblai-api-iblai-rbac ✓ 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 Used
- ✓ 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.
About
iblai-rbac
Drive the organization's role-based access control from the API: define roles and policies, attach them to groups and users, check permissions, share agents and teams, and toggle what students may do — the org-wide "who can do what" surface under …/dm/api/core/rbac/….
Auth & conventions
- Base URL:
https://api.iblai.app - Header:
Authorization: Api-Token $IBLAI_API_KEYon every request. - Path vars:
{org}=$IBLAI_ORG(a.k.a.platform_key),
{username} = $IBLAI_USERNAME.
- Not connected yet? Run
/iblai-loginfirst to populateIBLAI_ORG,
IBLAI_USERNAME, and IBLAI_API_KEY.
- The RBAC developer docs phrase auth as
Authorization: Token— that is
the same platform key; use Api-Token.
Concepts
- Resource paths are hierarchical and prefixed with
/platforms/{pk}/— a
policy granted on a parent resource applies to its children.
- Actions look like
Ibl.Agent/Agents/delete(namespace / resource / verb). - There are well-known roles the platform ships with; list them with the
roles endpoint (optionally including globals).
Reads
Roles
- GET
https://api.iblai.app/dm/api/core/rbac/roles/?platform_key={org}— list roles (add&include_global_roles=trueto include globals). - GET
https://api.iblai.app/dm/api/core/rbac/roles/{id}/?platform_key={org}— fetch one role.
Agent access
- GET
https://api.iblai.app/dm/api/core/rbac/agent-access/?platform_key={org}&mentor_id={id}— list an agent's access policies.
Policies
- GET
https://api.iblai.app/dm/api/core/rbac/policies/{id}/?platform_key={org}— fetch one policy.
Groups
- GET
https://api.iblai.app/dm/api/core/rbac/groups/{id}/?platform_key={org}— fetch one group.
Team (user-group) sharing
- GET
https://api.iblai.app/dm/api/core/rbac/teams/access/?platform_key={org}&usergroup_id={id}— list a team's access policies.
Student toggles
- GET
https://api.iblai.app/dm/api/core/rbac/student-agent-creation/status/?platform_key={org}— read the current toggle. - GET
https://api.iblai.app/dm/api/core/rbac/student-llm-access/status/?platform_key={org}— read the current toggle.
Writes
Roles
- POST
https://api.iblai.app/dm/api/core/rbac/roles/— create a role. - PUT / PATCH
https://api.iblai.app/dm/api/core/rbac/roles/{id}/— update a role. - DELETE
https://api.iblai.app/dm/api/core/rbac/roles/{id}/?platform_key={org}— delete a role. Destructive — confirm with the user first.
Policies
- GET / POST
https://api.iblai.app/dm/api/core/rbac/policies/?platform_key={org}— list / create policies. - PUT / PATCH
https://api.iblai.app/dm/api/core/rbac/policies/{id}/— update a policy. - DELETE
https://api.iblai.app/dm/api/core/rbac/policies/{id}/?platform_key={org}— delete a policy. Destructive — confirm with the user first.
Groups
- GET / POST
https://api.iblai.app/dm/api/core/rbac/groups/?platform_key={org}— list / create groups. - PUT / PATCH
https://api.iblai.app/dm/api/core/rbac/groups/{id}/— update a group. - DELETE
https://api.iblai.app/dm/api/core/rbac/groups/{id}/?platform_key={org}— delete a group. Destructive — confirm with the user first.
Permission check
- POST
https://api.iblai.app/dm/api/core/rbac/permissions/check/— check the caller's access to resources:
``json { "platform_key": "string (required)", "resources": ["/users/", "/groups/"] } ``
Agent access
- POST
https://api.iblai.app/dm/api/core/rbac/agent-access/— share an agent (body includesplatform_key,mentor_id,role, andusers/groups).
Team (user-group) sharing
- POST
https://api.iblai.app/dm/api/core/rbac/teams/access/— share a user-group (team).
Bulk user policies
- PUT
https://api.iblai.app/dm/api/core/platform/users/policies/— set policies for users (array).
Student toggles
- POST
https://api.iblai.app/dm/api/core/rbac/student-agent-creation/set/— enable/disable student agent creation. - POST
https://api.iblai.app/dm/api/core/rbac/student-llm-access/set/— enable/disable student LLM access.
Example
Check whether the caller can act on users and groups in the org:
curl -X POST \
"https://api.iblai.app/dm/api/core/rbac/permissions/check/" \
-H "Authorization: Api-Token $IBLAI_API_KEY" \
-H "Content-Type: application/json" \
-d "{\"platform_key\": \"$IBLAI_ORG\", \"resources\": [\"/users/\", \"/groups/\"]}"
Notes
- This is the authoritative RBAC surface for the organization. The
/iblai-management and /iblai-agent-access skills touch the same roles / policies / agent-access endpoints from their admin views — cross-reference them when working across surfaces.
- Resource paths are hierarchical (
/platforms/{pk}/…): a policy on a parent
grants its children, so scope policies at the right level.
- Most reads carry
platform_key={org}as a query param; writes (POST/PUT/PATCH)
carry platform_key in the body.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
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.