This repository was archived by the owner on Apr 17, 2026. It is now read-only.
chore: release packages - #144
Merged
Merged
Conversation
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@agentrail/app@0.7.0
Minor Changes
#143
f5a4d2eThanks @yai-dev! - Storage Abstraction + Memo FS + PostgreSQL reference implementation (#69)This release completes the Pre-GA storage contract consolidation and ships the
@agentrail/storage-postgresreference package.@agentrail/core— breaking shape changes + new optional methodsMemoryIndexno longer containssessionDiroruserDirhost-absolute paths. Theentries[].pathfield now stores the canonical/workspace/memo/…path directly.AgentrailSessionStoregains five new optional methods for memo-document and tool-result-artifact persistence:readMemoryDocument(tenantId, ownerId, scope, name)writeMemoryDocument(tenantId, ownerId, scope, name, content)appendMemoryDocument(tenantId, ownerId, scope, name, content)readToolResultArtifact(sessionRef, toolCallId)writeToolResultArtifact(sessionRef, toolCallId, content)MemoDocumentScope,MemoDocumentName@agentrail/capabilities— new exports + breaking signatureOrchestrationPersistencegains two new required methods:loadAgentHistory(agentId)andwriteAgentHistory(agentId, history).DefaultCapabilityContextOptions.compactMessagessignature updated:sessionDirreplaced bywriteToolResultArtifactcallback injection.OrchestrationMailboxEvent,OrchestrationSnapshot,recoverOrchestrationState.WorkerInitMessagegains an optionalstorageConfigfield for sub-agent worker initialization.@agentrail/app— breaking API surface changesCreateAgentAppOptionsgains:traceStoreFactory,createOrchestrationPersistence,createWorkerStorageConfig, andinspector(now acceptstrue | InspectorDataSource).createInspectorRoutenow acceptsInspectorDataSource | string(string is deprecated backward-compat path; directdataDirstrings will be removed in a future release).UserMemoryConsolidationServiceconstructor signature changed from(sessionManager, dataDir, config)to(store: AgentrailSessionStore, sessionLister: UserSessionLister, dataDir, config).UserSessionListerinterface exported.InspectorDataSource,InspectorSessionItem,SessionTraceStoretypes exported.createFilesystemInspectorDataSource(dataDir)function exported.compactToolResultsnow preferswriteToolResultArtifactfrom the session store when available.computeCompactionSplit,buildCompactionMessage,buildCompactionNotesEntry.@agentrail/storage-postgres— new packagePostgreSQL reference implementation for all Agentrail storage contracts:
PostgresSessionStore— fullAgentrailSessionStoreincluding memo documents and tool-result artifacts.PostgresSessionTraceStore+createPostgresSessionTraceStorefactory.PostgresOrchestrationPersistence+createPostgresOrchestrationPersistencefactory (includes agent history).PostgresInspectorDataSource— reads session list, messages, trace envelopes, and orchestration state from PostgreSQL without any filesystem dependency.buildSchemaDDL(schema?)— returns idempotent DDL to create all required tables.createSqlClient(options)— creates apostgres(postgres.js) connection pool.Upgrade notes:
AgentrailSessionStore, the new optional methods do not need to be implemented immediately; the runtime falls back gracefully. However, implementing them is required to use the postgres backend.OrchestrationPersistence, you must addloadAgentHistoryandwriteAgentHistory.createInspectorRoute(dataDir)withcreateInspectorRoute(createFilesystemInspectorDataSource(dataDir))when providing a customInspectorDataSource.UserMemoryConsolidationServicecallers must provide aUserSessionLister(the defaultSessionManagernow implements this interface).Patch Changes
f5a4d2e]:@agentrail/capabilities@0.4.0
Minor Changes
#143
f5a4d2eThanks @yai-dev! - Storage Abstraction + Memo FS + PostgreSQL reference implementation (#69)This release completes the Pre-GA storage contract consolidation and ships the
@agentrail/storage-postgresreference package.@agentrail/core— breaking shape changes + new optional methodsMemoryIndexno longer containssessionDiroruserDirhost-absolute paths. Theentries[].pathfield now stores the canonical/workspace/memo/…path directly.AgentrailSessionStoregains five new optional methods for memo-document and tool-result-artifact persistence:readMemoryDocument(tenantId, ownerId, scope, name)writeMemoryDocument(tenantId, ownerId, scope, name, content)appendMemoryDocument(tenantId, ownerId, scope, name, content)readToolResultArtifact(sessionRef, toolCallId)writeToolResultArtifact(sessionRef, toolCallId, content)MemoDocumentScope,MemoDocumentName@agentrail/capabilities— new exports + breaking signatureOrchestrationPersistencegains two new required methods:loadAgentHistory(agentId)andwriteAgentHistory(agentId, history).DefaultCapabilityContextOptions.compactMessagessignature updated:sessionDirreplaced bywriteToolResultArtifactcallback injection.OrchestrationMailboxEvent,OrchestrationSnapshot,recoverOrchestrationState.WorkerInitMessagegains an optionalstorageConfigfield for sub-agent worker initialization.@agentrail/app— breaking API surface changesCreateAgentAppOptionsgains:traceStoreFactory,createOrchestrationPersistence,createWorkerStorageConfig, andinspector(now acceptstrue | InspectorDataSource).createInspectorRoutenow acceptsInspectorDataSource | string(string is deprecated backward-compat path; directdataDirstrings will be removed in a future release).UserMemoryConsolidationServiceconstructor signature changed from(sessionManager, dataDir, config)to(store: AgentrailSessionStore, sessionLister: UserSessionLister, dataDir, config).UserSessionListerinterface exported.InspectorDataSource,InspectorSessionItem,SessionTraceStoretypes exported.createFilesystemInspectorDataSource(dataDir)function exported.compactToolResultsnow preferswriteToolResultArtifactfrom the session store when available.computeCompactionSplit,buildCompactionMessage,buildCompactionNotesEntry.@agentrail/storage-postgres— new packagePostgreSQL reference implementation for all Agentrail storage contracts:
PostgresSessionStore— fullAgentrailSessionStoreincluding memo documents and tool-result artifacts.PostgresSessionTraceStore+createPostgresSessionTraceStorefactory.PostgresOrchestrationPersistence+createPostgresOrchestrationPersistencefactory (includes agent history).PostgresInspectorDataSource— reads session list, messages, trace envelopes, and orchestration state from PostgreSQL without any filesystem dependency.buildSchemaDDL(schema?)— returns idempotent DDL to create all required tables.createSqlClient(options)— creates apostgres(postgres.js) connection pool.Upgrade notes:
AgentrailSessionStore, the new optional methods do not need to be implemented immediately; the runtime falls back gracefully. However, implementing them is required to use the postgres backend.OrchestrationPersistence, you must addloadAgentHistoryandwriteAgentHistory.createInspectorRoute(dataDir)withcreateInspectorRoute(createFilesystemInspectorDataSource(dataDir))when providing a customInspectorDataSource.UserMemoryConsolidationServicecallers must provide aUserSessionLister(the defaultSessionManagernow implements this interface).Patch Changes
f5a4d2e]:@agentrail/core@0.7.0
Minor Changes
#143
f5a4d2eThanks @yai-dev! - Storage Abstraction + Memo FS + PostgreSQL reference implementation (#69)This release completes the Pre-GA storage contract consolidation and ships the
@agentrail/storage-postgresreference package.@agentrail/core— breaking shape changes + new optional methodsMemoryIndexno longer containssessionDiroruserDirhost-absolute paths. Theentries[].pathfield now stores the canonical/workspace/memo/…path directly.AgentrailSessionStoregains five new optional methods for memo-document and tool-result-artifact persistence:readMemoryDocument(tenantId, ownerId, scope, name)writeMemoryDocument(tenantId, ownerId, scope, name, content)appendMemoryDocument(tenantId, ownerId, scope, name, content)readToolResultArtifact(sessionRef, toolCallId)writeToolResultArtifact(sessionRef, toolCallId, content)MemoDocumentScope,MemoDocumentName@agentrail/capabilities— new exports + breaking signatureOrchestrationPersistencegains two new required methods:loadAgentHistory(agentId)andwriteAgentHistory(agentId, history).DefaultCapabilityContextOptions.compactMessagessignature updated:sessionDirreplaced bywriteToolResultArtifactcallback injection.OrchestrationMailboxEvent,OrchestrationSnapshot,recoverOrchestrationState.WorkerInitMessagegains an optionalstorageConfigfield for sub-agent worker initialization.@agentrail/app— breaking API surface changesCreateAgentAppOptionsgains:traceStoreFactory,createOrchestrationPersistence,createWorkerStorageConfig, andinspector(now acceptstrue | InspectorDataSource).createInspectorRoutenow acceptsInspectorDataSource | string(string is deprecated backward-compat path; directdataDirstrings will be removed in a future release).UserMemoryConsolidationServiceconstructor signature changed from(sessionManager, dataDir, config)to(store: AgentrailSessionStore, sessionLister: UserSessionLister, dataDir, config).UserSessionListerinterface exported.InspectorDataSource,InspectorSessionItem,SessionTraceStoretypes exported.createFilesystemInspectorDataSource(dataDir)function exported.compactToolResultsnow preferswriteToolResultArtifactfrom the session store when available.computeCompactionSplit,buildCompactionMessage,buildCompactionNotesEntry.@agentrail/storage-postgres— new packagePostgreSQL reference implementation for all Agentrail storage contracts:
PostgresSessionStore— fullAgentrailSessionStoreincluding memo documents and tool-result artifacts.PostgresSessionTraceStore+createPostgresSessionTraceStorefactory.PostgresOrchestrationPersistence+createPostgresOrchestrationPersistencefactory (includes agent history).PostgresInspectorDataSource— reads session list, messages, trace envelopes, and orchestration state from PostgreSQL without any filesystem dependency.buildSchemaDDL(schema?)— returns idempotent DDL to create all required tables.createSqlClient(options)— creates apostgres(postgres.js) connection pool.Upgrade notes:
AgentrailSessionStore, the new optional methods do not need to be implemented immediately; the runtime falls back gracefully. However, implementing them is required to use the postgres backend.OrchestrationPersistence, you must addloadAgentHistoryandwriteAgentHistory.createInspectorRoute(dataDir)withcreateInspectorRoute(createFilesystemInspectorDataSource(dataDir))when providing a customInspectorDataSource.UserMemoryConsolidationServicecallers must provide aUserSessionLister(the defaultSessionManagernow implements this interface).@agentrail/storage-postgres@0.2.0
Minor Changes
#143
f5a4d2eThanks @yai-dev! - Storage Abstraction + Memo FS + PostgreSQL reference implementation (#69)This release completes the Pre-GA storage contract consolidation and ships the
@agentrail/storage-postgresreference package.@agentrail/core— breaking shape changes + new optional methodsMemoryIndexno longer containssessionDiroruserDirhost-absolute paths. Theentries[].pathfield now stores the canonical/workspace/memo/…path directly.AgentrailSessionStoregains five new optional methods for memo-document and tool-result-artifact persistence:readMemoryDocument(tenantId, ownerId, scope, name)writeMemoryDocument(tenantId, ownerId, scope, name, content)appendMemoryDocument(tenantId, ownerId, scope, name, content)readToolResultArtifact(sessionRef, toolCallId)writeToolResultArtifact(sessionRef, toolCallId, content)MemoDocumentScope,MemoDocumentName@agentrail/capabilities— new exports + breaking signatureOrchestrationPersistencegains two new required methods:loadAgentHistory(agentId)andwriteAgentHistory(agentId, history).DefaultCapabilityContextOptions.compactMessagessignature updated:sessionDirreplaced bywriteToolResultArtifactcallback injection.OrchestrationMailboxEvent,OrchestrationSnapshot,recoverOrchestrationState.WorkerInitMessagegains an optionalstorageConfigfield for sub-agent worker initialization.@agentrail/app— breaking API surface changesCreateAgentAppOptionsgains:traceStoreFactory,createOrchestrationPersistence,createWorkerStorageConfig, andinspector(now acceptstrue | InspectorDataSource).createInspectorRoutenow acceptsInspectorDataSource | string(string is deprecated backward-compat path; directdataDirstrings will be removed in a future release).UserMemoryConsolidationServiceconstructor signature changed from(sessionManager, dataDir, config)to(store: AgentrailSessionStore, sessionLister: UserSessionLister, dataDir, config).UserSessionListerinterface exported.InspectorDataSource,InspectorSessionItem,SessionTraceStoretypes exported.createFilesystemInspectorDataSource(dataDir)function exported.compactToolResultsnow preferswriteToolResultArtifactfrom the session store when available.computeCompactionSplit,buildCompactionMessage,buildCompactionNotesEntry.@agentrail/storage-postgres— new packagePostgreSQL reference implementation for all Agentrail storage contracts:
PostgresSessionStore— fullAgentrailSessionStoreincluding memo documents and tool-result artifacts.PostgresSessionTraceStore+createPostgresSessionTraceStorefactory.PostgresOrchestrationPersistence+createPostgresOrchestrationPersistencefactory (includes agent history).PostgresInspectorDataSource— reads session list, messages, trace envelopes, and orchestration state from PostgreSQL without any filesystem dependency.buildSchemaDDL(schema?)— returns idempotent DDL to create all required tables.createSqlClient(options)— creates apostgres(postgres.js) connection pool.Upgrade notes:
AgentrailSessionStore, the new optional methods do not need to be implemented immediately; the runtime falls back gracefully. However, implementing them is required to use the postgres backend.OrchestrationPersistence, you must addloadAgentHistoryandwriteAgentHistory.createInspectorRoute(dataDir)withcreateInspectorRoute(createFilesystemInspectorDataSource(dataDir))when providing a customInspectorDataSource.UserMemoryConsolidationServicecallers must provide aUserSessionLister(the defaultSessionManagernow implements this interface).Patch Changes
f5a4d2e]:@agentrail/cli@0.2.6
Patch Changes
f5a4d2e]:@agentrail/create-agentrail-app@0.2.6
Patch Changes
@agentrail/deep-research@0.0.14
Patch Changes
f5a4d2e]:@agentrail/testing@0.0.10
Patch Changes
f5a4d2e]: