agentsclimarketplace

Iblai api agent audit

Skill iblai/api/skills/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.From its SKILL.md

Install
npx -y skills add iblai/api --skill iblai-api-agent-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • reads credentialsReads from 1 credential source: `IBLAI_API_KEY`.
  • 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • fetches URLsInstructs the agent to fetch 1 URL, including https://api.iblai.app/dm/api/ai-mentor/orgs/{org}/users/{username}/mentors/audit-logs/?limit=20&offset={n}&mentor={mentor}&action={code}&actor_email={e}&from_date={d}&to_date={d}.

SKILL.md

1.9 KB, 532 tokens by cl100k_base, as published. Nobody here has run it

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 $IBLAI_API_KEY on every request.
  • Path vars: {org} = $IBLAI_ORG, {username} = $IBLAI_USERNAME, {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, IBLAI_USERNAME, and IBLAI_API_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}&actor_email={e}&from_date={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, actor_email, from_date, and to_date are optional filters — omit any you don't need to narrow by.
  • from_date / to_date take ISO dates (e.g. 2026-06-12).
  • Read-only: investigating an audit trail never mutates agent state.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.