Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/assistant-chat-widget.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/assistant-contracts-package-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/assistant-contracts-scaffold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/assistant-contracts-support-intake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/assistant-scaffold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/assistant-support-intake.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/open-lemons-spend.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/perky-stamps-train.md

This file was deleted.

14 changes: 14 additions & 0 deletions apps/assistant/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @aragon/assistant

## 0.2.0

### Minor Changes

- [#1222](https://github.com/aragon/app/pull/1222) [`36c1fc4`](https://github.com/aragon/app/commit/36c1fc44d7a3ca3759d8f7d1c4c4fc1046287c0b) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Scaffold the assistant service: Hono app with /health endpoint and CORS allowlist, per-environment config, Vercel project wiring (preview/dev/production deploys) and the Version-PR release flow

- [#1224](https://github.com/aragon/app/pull/1224) [`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Add the support-chat intake feature: streaming /chat pipeline (intent classification, field extraction, live collected-fields summary, optional email), idempotent /issues creation in Linear with attachment transfer at creation time, client-direct file uploads to Vercel Blob (token/confirm/delete endpoints, server-side magic-byte validation at confirm, daily orphan-cleanup cron), per-IP rate limiting via Upstash, structured step logs with Sentry, runtime env delivery for Vercel deployments and preview CORS narrowed to the aragon-app scope

### Patch Changes

- Updated dependencies [[`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d), [`36c1fc4`](https://github.com/aragon/app/commit/36c1fc44d7a3ca3759d8f7d1c4c4fc1046287c0b), [`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d)]:
- @aragon/assistant-contracts@0.2.0
2 changes: 1 addition & 1 deletion apps/assistant/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aragon/assistant",
"version": "0.1.0",
"version": "0.2.0",
"description": "Aragon assistant service: support-chat intake API",
"author": "Aragon Association",
"homepage": "https://github.com/aragon/app#readme",
Expand Down
12 changes: 12 additions & 0 deletions packages/assistant-chat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @aragon/assistant-chat

## 0.2.0

### Minor Changes

- [#1231](https://github.com/aragon/app/pull/1231) [`903fbfe`](https://github.com/aragon/app/commit/903fbfe7cf3b5c3112621c028830b8aace8c4cde) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Add the assistant-chat widget package: side-drawer support chat backed by the assistant service, with live collected-fields summary, file attachments (picker, drag-and-drop, paste) with upload progress, explicit ticket creation with retry, session rotation after a created issue and a monitoring DI seam for the host app.

### Patch Changes

- Updated dependencies [[`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d), [`36c1fc4`](https://github.com/aragon/app/commit/36c1fc44d7a3ca3759d8f7d1c4c4fc1046287c0b), [`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d)]:
- @aragon/assistant-contracts@0.2.0
2 changes: 1 addition & 1 deletion packages/assistant-chat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aragon/assistant-chat",
"version": "0.1.0",
"version": "0.2.0",
"description": "Support-chat widget for the Aragon App, backed by the Aragon assistant service",
"author": "Aragon Association",
"homepage": "https://github.com/aragon/app#readme",
Expand Down
13 changes: 13 additions & 0 deletions packages/assistant-contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# @aragon/assistant-contracts

## 0.2.0

### Minor Changes

- [#1222](https://github.com/aragon/app/pull/1222) [`36c1fc4`](https://github.com/aragon/app/commit/36c1fc44d7a3ca3759d8f7d1c4c4fc1046287c0b) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Scaffold the assistant contracts package: shared zod schemas between the assistant service and the assistant-chat widget, starting with the /health response contract

- [#1224](https://github.com/aragon/app/pull/1224) [`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Add the support-chat contracts: chat request/message schemas, collected-fields data part (required fields: summary and description — email is optional), issue create request/response, file confirm/delete requests and upload response, shared error shape, hard limits and the pinned Phase-2 docs-search result shape

### Patch Changes

- [#1224](https://github.com/aragon/app/pull/1224) [`0c52e23`](https://github.com/aragon/app/commit/0c52e2351022a4a99ef2d3045dcec234179efb9d) Thanks [@tyhonchik](https://github.com/tyhonchik)! - Build the package to `dist/` (tsup CJS/ESM/types) so Node runtimes such as Vercel can require it; TypeScript source under `src/` is no longer the package entrypoint
2 changes: 1 addition & 1 deletion packages/assistant-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aragon/assistant-contracts",
"version": "0.1.0",
"version": "0.2.0",
"description": "Shared zod contracts between the Aragon assistant service and the assistant-chat widget",
"author": "Aragon Association",
"homepage": "https://github.com/aragon/app#readme",
Expand Down
Loading