GitHub Actions
Generally AvailableWorkflow dispatch with authority-scoped parameters and run tracking.
Enterprise / Integrations
Connect AI authority enforcement to your CI/CD pipelines, ITSM platforms, ticketing systems, cloud infrastructure, and custom enterprise systems. Every connector enforces token verification before execution.
Workflow dispatch with authority-scoped parameters and run tracking.
PR creation under authority with review assignment and metadata linking.
Pod, deployment, and namespace operations with token-gated mutations.
Plan and apply with authority-gated state mutations.
Pipeline and merge request operations under authority.
Pipeline and work item management under authority.
Incident management, change requests, and CMDB operations with full audit linkage.
Issue creation, commenting, and workflow transitions under authority.
Channel messaging, thread replies, and alert routing under authority.
Incident creation, acknowledgment, and escalation under authority.
Cloud resource management and IAM operations under authority.
Secret management and rotation under authority.
Identity and access management operations under authority.
Incident and monitor remediation actions under authority.
Build adapters for any enterprise system. BaseAdapter handles token verification, nonce consumption, and audit recording. You implement execute() and testConnection().
import { BaseAdapter } from "@intended/connector-sdk";
export class CustomAdapter extends BaseAdapter {
readonly id = "my-system";
readonly name = "My Enterprise System";
readonly version = "1.0.0";
async execute(params) {
// Token already verified by BaseAdapter
const result = await this.client.action(
params.claims.action,
params.claims.target,
);
return { status: "executed", remote_status: result.code };
}
async testConnection() {
return { reachable: true, latency_ms: 15 };
}
}Every adapter verifies RS256 signature before any action. No token, no execution.
Connector secrets encrypted with AES-256-GCM per tenant. Isolation at the credential level.
Every adapter supports testConnection() for proactive health and latency monitoring.
Automated suite validates every adapter implements the full security contract.
Adapter ID, status, latency, and remote status code recorded for every execution.
Outbound webhooks for real-time event notification with per-tenant endpoint registration and retry.