Aient
Use this skill when a user asks for Aient operational context from Codex. The
plugin exposes the production Aient MCP server at https://aient.ai/mcp.
The MCP server is the source of truth for tool schemas; discover/use the live
tools rather than relying on a memorized subset.
First Call
Start with verify_connection when checking whether the plugin is available.
It confirms the organisation, granted scopes, token expiry, and live tool count.
MCP Tool Surface
Prefer the current granular tools over the retired early-preview names
telemetry_overview, log_search, and trace_timeline.
Connection and discovery:
verify_connection: confirm auth and available MCP tools.
describe_telemetry: discover services, operations, and attributes.
service_health_summary: get an at-a-glance service health overview.
Telemetry:
query_traces: aggregate trace metrics such as count, error rate, and latency.
query_logs: aggregate log metrics by service, severity, or time.
get_spans: fetch raw spans for a trace or filtered operation set.
get_logs: fetch raw log entries and attributes.
detect_anomalies: detect statistical deviations in trace/log metrics.
Problems and lifecycle:
list_problems: list detected problems with status, severity, priority, and
environment filters.
get_problem: inspect a problem, recent occurrences, and triage context.
acknowledge_problem, mute_problem, unmute_problem,
dismiss_problem, resolve_problem, restore_problem_status,
update_problem_priority, and batch_problem_action: apply lifecycle
actions to one or more problems.
Remediation:
request_fix: spawn an AI remediation agent for a problem.
get_problem_fix: inspect a remediation attempt.
list_problem_fixes: list remediation attempts for a problem.
list_active_fixes: list in-progress remediation work across the
organisation.
Threads:
get_thread: inspect a thread journal and current agent activity.
send_thread_message: send a message to a thread's agent.
respond_to_interaction: answer an agent interaction/awakeable.
Environment and key management:
list_environments: inspect deployment environments.
list_environment_keys, create_environment_key, revoke_environment_key:
manage publishable telemetry ingest keys.
list_api_keys, create_api_key: manage secret API keys for sourcemaps or
complete API access. create_api_key returns the full key exactly once.
Operating Rules
- Prefer the MCP tools for live Aient telemetry and key-management tasks.
- Do not use local development MCP endpoints unless the user explicitly asks for
a local/dev environment.
- Never copy secrets or local credentialed MCP configuration into responses,
plans, or plugin files.
- Read-only tools require
aient.mcp.read; mutating tools require
aient.mcp.write.
- For
create_api_key, tell the user that the returned key is shown once and
should be stored immediately.
- For telemetry queries, prefer
environmentSlug over environmentId when the
user names an environment, and never pass the all-zero UUID placeholder.
- Treat
401 as missing or expired OAuth, 403 as insufficient scope, and a
missing organisation claim as an auth-context issue.
Source: hashgraph-online/awesome-codex-plugins → plugins/aient-ai/aient-codex-plugin/skills/aient/SKILL.md
1---2name: aient3description: Use when the user asks Codex to inspect Aient telemetry, search logs, explain traces, create/list Aient API keys, or use the Aient MCP server.4---5
6
7# Aient
8
9Use this skill when a user asks for Aient operational context from Codex. The
10plugin exposes the production Aient MCP server at `https://aient.ai/mcp`.
11The MCP server is the source of truth for tool schemas; discover/use the live
12tools rather than relying on a memorized subset.
13
14## First Call
15
16Start with `verify_connection` when checking whether the plugin is available.
17It confirms the organisation, granted scopes, token expiry, and live tool count.
18
19## MCP Tool Surface
20
21Prefer the current granular tools over the retired early-preview names
22`telemetry_overview`, `log_search`, and `trace_timeline`.
23
24Connection and discovery:
25- `verify_connection`: confirm auth and available MCP tools.
26- `describe_telemetry`: discover services, operations, and attributes.
27- `service_health_summary`: get an at-a-glance service health overview.
28
29Telemetry:
30- `query_traces`: aggregate trace metrics such as count, error rate, and latency.
31- `query_logs`: aggregate log metrics by service, severity, or time.
32- `get_spans`: fetch raw spans for a trace or filtered operation set.
33- `get_logs`: fetch raw log entries and attributes.
34- `detect_anomalies`: detect statistical deviations in trace/log metrics.
35
36Problems and lifecycle:
37- `list_problems`: list detected problems with status, severity, priority, and
38 environment filters.
39- `get_problem`: inspect a problem, recent occurrences, and triage context.
40- `acknowledge_problem`, `mute_problem`, `unmute_problem`,
41 `dismiss_problem`, `resolve_problem`, `restore_problem_status`,
42 `update_problem_priority`, and `batch_problem_action`: apply lifecycle
43 actions to one or more problems.
44
45Remediation:
46- `request_fix`: spawn an AI remediation agent for a problem.
47- `get_problem_fix`: inspect a remediation attempt.
48- `list_problem_fixes`: list remediation attempts for a problem.
49- `list_active_fixes`: list in-progress remediation work across the
50 organisation.
51
52Threads:
53- `get_thread`: inspect a thread journal and current agent activity.
54- `send_thread_message`: send a message to a thread's agent.
55- `respond_to_interaction`: answer an agent interaction/awakeable.
56
57Environment and key management:
58- `list_environments`: inspect deployment environments.
59- `list_environment_keys`, `create_environment_key`, `revoke_environment_key`:
60 manage publishable telemetry ingest keys.
61- `list_api_keys`, `create_api_key`: manage secret API keys for sourcemaps or
62 complete API access. `create_api_key` returns the full key exactly once.
63
64## Operating Rules
65
66- Prefer the MCP tools for live Aient telemetry and key-management tasks.
67- Do not use local development MCP endpoints unless the user explicitly asks for
68 a local/dev environment.
69- Never copy secrets or local credentialed MCP configuration into responses,
70 plans, or plugin files.
71- Read-only tools require `aient.mcp.read`; mutating tools require
72 `aient.mcp.write`.
73- For `create_api_key`, tell the user that the returned key is shown once and
74 should be stored immediately.
75- For telemetry queries, prefer `environmentSlug` over `environmentId` when the
76 user names an environment, and never pass the all-zero UUID placeholder.
77- Treat `401` as missing or expired OAuth, `403` as insufficient scope, and a
78 missing organisation claim as an auth-context issue.
79
80---
81
82**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/aient-ai/aient-codex-plugin/skills/aient/SKILL.md`