Changelog
RSSAll notable changes to the Amdahl Platform API are recorded here. The format follows Keep a Changelog with four sections per entry (Added, Changed, Deprecated, Removed). Dates are the day the change landed on the stable path.
Last updated 2026-06-24
Added
- A public changelog at docs.amdahl.co/changelog - a searchable, branded timeline of what's shipped, refreshed automatically with each release.
Fixed
- The GTM health report now reads correct, human-readable deal stages from your CRM (e.g. "Discovery", "Research", "Closed Won") instead of raw internal stage codes, and no longer splits a single account across multiple stage rows.
Added
- Blueprints - shareable, forkable recipes an agent reads and walks step by step. Author, validate, and fork via the
blueprintstool family and REST; seven starter blueprints ship out of the box. - Connections - a unified connector catalog and connect / disconnect surface spanning CRM, calls, comms, docs, support, and social (X / LinkedIn). Poll connection health and sync-run history over
connection://reads and REST. - External search fuses your CRM + call corpus with live market sources into a single brief (the divergence map). Four actions:
search,enrich_company,enrich_person,enrich_topic, with an opt-in SSE event stream. - Notifications - agents can email workspace members (member-only, rate-capped, idempotent) via the
notificationstool andPOST /notifications/email-member, and read the send ledger. - Pages - workspace-authored, data-backed UIs composed from a catalog of components (tables, charts, stats, signal maps) bound to your own queries. Author + validate via the
pagestool family and REST, publish, and embed.
Changed
- The
performance.*operations were renamed tosocial.*(clean break, no aliases) for social account tracking and engagement reads.
Removed
- Retired the customer-facing artifacts REST API (
/artifacts*) and its public read endpoint. Pages and Blueprints are the structured-output primitives now; artifact webhook events and data models are unchanged.
Added
- Generic Agent Runner. New
agents.*tool family:agents.start,agents.status,agents.resume,agents.cancel,agents.list,agents.profiles_list. - Server-Sent Events stream for agent progress at
GET /api/platform/v1/agents/:session_id/stream. Emitsstateandprogressframes,:pingkeepalives every 15 seconds, auto-closes on terminal status. - Three built-in agent profiles:
content_writer(end-to-end content creation, 25-turn budget, emitscontent_pieceartifacts),researcher(rigorous research with citations, 20-turn budget, emitsresearch_reportartifacts),copilot(general-purpose assistant, 15-turn budget, optional artifact output). - Three pause types on
awaiting_inputsessions:approval,question,continue_or_finish. Each carries a JSON Schema thatagents.resumevalidates against. - Consumer docs tree at
/docs/consumer/with auto-generated API reference covering every tool, scope, webhook event, and data model.
Changed
- Every agent tool call is now written to
platform_audit_logwith the caller's identity and correlation id, matching the audit trail direct REST and MCP calls already produced.
Added
platform_audit_logtable. Every tool invocation across REST, MCP, and agent sessions is recorded with actor id, business id, tool id, inputs hash, status, duration, and correlation id.audit_log.querytool for reading the audit trail. Scoped by business; platform admins can query across businesses.- Response-side redaction layer. Any field classified as sensitive is replaced with
[MASKED]and paired with a<field>_masked: truesentinel in the response body.
Changed
- Error responses now include
X-Correlation-Idon every status code, not just 5xx, so failed requests can be traced end to end.
Added
- Webhook extensions.
POST /api/platform/v1/webhooks/:id/testfires a singletest.pingdelivery without affecting production aggregates.GET /api/platform/v1/webhooks/:id/deliveriesreturns the delivery history with status filtering and pagination. is_testcolumn onplatform_webhook_deliveriesto separate test fires from production traffic.X-Webhook-Test: trueheader on test deliveries so receivers can branch on synthetic traffic.
Changed
- Webhook delivery retry policy codified at 3 attempts with 1s and 10s backoff intervals; after the third attempt the failure is recorded and
failure_countis incremented on the webhook.
Added
scope_modecolumn on API keys and OAuth clients, with per-tool scope enforcement. Tools whose declared scope is not in the caller's effective scope set are silently dropped from the runtime tool list.- Scope reference page at
/docs/consumer/api-reference/scopes.md, auto-generated from the tool registry.
Changed
- Role defaults tightened. New keys default to the minimum scope required for the role; existing keys retain their prior effective scope via the grandfather rule.
Added
- Artifact unification. Bidirectional triggers between
platform_artifactsand the legacywriting_samples,customer_posts,customer_testimonials, andstyle_collectionstables. Reads from either side return identical data; writes propagate automatically. platform_artifact_versionsappend-only version audit trail. Every write toplatform_artifactsinserts a corresponding version row.artifacts.gettool now supportsinclude_versions: trueto return the version history inline.
Changed
- Artifact writes must supply
expected_versionfor concurrent-edit safety. Mismatches return409 version_conflictwith the current version in the details block.
Added
- Platform API v1 initial release. Base URL
https://api.amdahl.com/api/platform/v1. Four-tool architecture:data.*,context.*,artifacts.*, plus the supporting surfaces for sessions, webhooks, scopes, and OpenAPI docs. - OpenAPI 3.1 spec at
/api/platform/v1/openapi.json, regenerated on every release. - Canonical error envelope with
code,message, and optionaldetails. - Global per-IP rate limit of 100 requests per minute on
/api/platform/v1/*. - OAuth 2.0 dynamic client registration per RFC 7591 at
POST /oauth/register, with its own tighter limit of 5 registrations per minute per IP.
Changed
- Nothing; this is the baseline.