iblai/api

iblai-api-agent-audit

Read an ibl.ai agent's audit log via the platform API — a who-changed-what trail filterable by action, actor email, and date range. Read-only. Use when investigating configuration changes to an agent.

First seen Jul 15, 2026

Installation

$ npx skills add iblai/api --skill iblai-api-agent-audit

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from iblai/api · top by installs.

npx skills add iblai/api

Browse all from iblai/api

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 15
License LICENSE
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,976 B
  • docs SUMMARY.md 231 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 6 installs

SKILL.md

iblai-api-agent-audit

Read an agent's audit log through the API: the who-changed-what trail for an agent, filterable by action code, actor email, and date range. Read-only — there are no writes. Use when investigating configuration changes to an agent.

Auth & conventions

  • Base URL: https://api.iblai.app
  • Header: Authorization: Api-Token $IBLAIAPIKEY on every request.
  • Path vars: {org} = $IBLAIORG, {username} = $IBLAIUSERNAME,

{mentor} = the agent's unique id (e.g. d17dc729-60fd-4363-81a0-f67d9318b03e).

  • Not connected yet? Run /iblai-api-login first to populate IBLAI_ORG,

IBLAIUSERNAME, and IBLAIAPI_KEY.

Reads

  • GET https://api.iblai.app/dm/api/ai-mentor/orgs/{org}/users/{username}/mentors/audit-logs/?limit=20&offset={n}&mentor={mentor}&action={code}&actoremail={e}&fromdate={d}&to_date={d} — audit entries. No writes.

This skill is read-only — it exposes no create, update, or delete endpoints.

Example

Read the first page of audit entries for an agent, filtered to a single actor within a date range:

curl -s \
  "https://api.iblai.app/dm/api/ai-mentor/orgs/$IBLAI_ORG/users/$IBLAI_USERNAME/mentors/audit-logs/?limit=20&offset=0&mentor=$MENTOR&[email protected]&from_date=2026-01-01&to_date=2026-06-12" \
  -H "Authorization: Api-Token $IBLAI_API_KEY"

Notes

  • Paginate with limit and offset; the default page size shown here is 20.
  • action, actoremail, fromdate, and to_date are optional filters —

omit any you don't need to narrow by.

  • fromdate / todate take ISO dates (e.g. 2026-06-12).
  • Read-only: investigating an audit trail never mutates agent state.