Archestra Apps HackathonJoin now

#general

Apr 15April 16, 2026Apr 17Latest
GS
global sward7:49 AMOpen in Slack
πŸ‘‹ Hi everyone!\
πŸ™Œ1πŸ‘‹1
AA
Abhishek Anand10:35 AMOpen in Slack
Hi guys, I was wondering if you guys had any summer internship opportunity for college students
2 replies
H
Hemachandar1:33 PMOpen in Slack
Hey everyone, long time OSS contributor here. I'm one of the core devs at Outline (OSS alternative to Notion).
Just came across Archestra.. problem space looks solid πŸ”₯ I've set up the dev env and exploring the codebase, would love to contribute and help grow the product.
Cheers 🍻
πŸ™Œ1πŸ”₯1
10 replies
DB
Dmitrii Buchilin3:28 PMOpen in Slack
hi, guys, have some problems with doing attempt comment, what should I do?)
2 replies
GK
Gautam Kaushik4:41 PMOpen in Slack
Hey, my name is Gautam Kaushik, and I would love to work on #3568
πŸ‘‹2
1 reply
DS
Darshan singh bisht5:28 PMOpen in Slack
hey everyone My name is Darshan nice to meet you all
πŸ™Œ1
A
New release! πŸš€πŸš€πŸš€
1.2.14 (2026-04-16)
Features
  • add org toggle for slim chat error cards (#3760) (4e25e1c)
  • refine mcp multitenant auth UX and docs (#3815) (ea94fd0)
  • support configurable MCP auth and additional headers (#3794) (2b9f30b)
Bug Fixes
  • Bedrock Provider UI/UX Improvements (#3786) (568aff6)
  • Bedrock/Gemini don't use custom base URL in chat (#3814) (faea874)
  • block personal MCP assignments on shared agents (#3801) (af11f5e)
  • bug when switching auth methods (#3800) (68e7ddd)
  • catalog mcp always has unsaved changes, improve inspector layout (#3804) (daff78c)
  • catalog secret edits not propagating to installed MCP servers (#3799) (caf54b1)
  • chat access and role permission hints (#3831) (0348253)
  • emit OpenAPI 3.0-compatible exclusiveMinimum in component schemas (#3765) (4029a90)
  • GitHub MCP template auth header (#3827) (8849acc)
  • improve Jira OAuth and refresh MCP tokens (#3774) (59875c5)
  • include tool definition tokens in cost optimization token count (#3733) (dda5784)
  • MCP reauth cache invalidation (#3795) (fb273d3)
  • OAuth consent redirect through SSO sign-in (#3818) (da3f123)
  • restore personal MCP assignment for shared agents (#3832) (ddefb03)
  • sanitize stale custom role permissions (#3823) (35a8167)
  • sync archestra branding in worker so builtin tools work in scheduled tasks (#3777) (f856cdf)
Miscellaneous Chores
  • *deps:* bump hono from 4.12.12 to 4.12.14 in /platform/e2e-tests/test-mcp-servers/mcp-server-id-jag (#3802) (500afab)
  • *deps:* bump hono from 4.12.12 to 4.12.14 in /platform/e2e-tests/test-mcp-servers/mcp-server-jwks-keycloak (#3803) (4b7810e)
A
New release! πŸš€πŸš€πŸš€
1.2.15 (2026-04-16)
Bug Fixes
  • anthropic virtual key auth (#3849) (06d2cea)
  • save suggested prompt with button label as fallback when prompt is empty (#3571) (900fbc0)
ИБ
Π˜Π³ΠΎΡ€ΡŒ Π‘Π°Π²Π΅Π½ΠΊΠΎΠ²5:00 AMOpen in Slack
πŸ‘‹ Hi everyone!
πŸ™Œ1πŸ‘‹1
S
This message was deleted.
1 reply
AB
Alexander Balashov (archestra team)8:44 AMOpen in Slack
πŸ‘‹ Hey team, I'm Alexander. I'll be working on https://github.com/archestra-ai/archestra/issues/3790 . Just wanted to drop a comment to another person that the issue is reserved for the interviews, but then Matvey dropped a comment. Thank you!
πŸ‘‹1
9 replies
VL
Vadim Larin10:01 AMOpen in Slack
Hey, team πŸ‘‹ my name is Vadim, I'd like to work on an Asana knowledge connector. Opened https://github.com/archestra-ai/archestra/issues/3885 with a design question I'd like to align on before finalizing
3 replies
SS
Subhasmita Swain11:39 AMOpen in Slack
πŸ‘‹ Hi everyone! I'm Subhasmita, I wanted to takeup this issue #720. PS: I’ve been using archestra locally and really enjoyed it, so I’d love to help improve it. Please share if anything that'll help me deepen my contextual understanding of this implmentation. Thanks!
4 replies
A
New release! πŸš€πŸš€πŸš€
1.2.16 (2026-04-17)
Features
  • add remote MCP client credentials auth mode (#3871) (3a8891b)
Bug Fixes
Miscellaneous Chores
  • *deps:* bump @better-auth/oauth-provider from 1.5.5 to 1.6.5 in /platform/backend (#3866) (8b48139)
A
New release! πŸš€πŸš€πŸš€
1.2.17 (2026-04-17)
Features
Bug Fixes
  • incorrect Vault selector dialog for self-hosted MCP server installation (#3817) (a3a139d)
A
New release! πŸš€πŸš€πŸš€
1.2.18 (2026-04-17)
Features
  • add Entra OBO support for downstream token exchange (#3911) (7229c95)
Bug Fixes
  • remote MCP OAuth client credentials install payload (#3916) (7395a35)
SB
Singaraj Bala9:02 PMOpen in Slack
Hi @user,
I am an external contributor. I saw issue #3851 and built the unified endpoint. Wanted to share what I did and ask if I can submit a PR.
What I built:
New files:
src/routes/proxy/routes/unified.ts β€” the main route handler
src/routes/proxy/adapters/unified-translation.ts β€” the translation layer
How it works:
β€’ The /v1/unified/chat/completions endpoint receives a standard OpenAI format request. It reads the model field, looks it up in the existing model registry to find which provider owns it (anthropic, openai, gemini, groq, cohere etc.), then delegates to that provider's existing adapter. The response is translated back to OpenAI format before sending to the client.
β€’ For providers that are already OpenAI-compatible (OpenAI, Groq, Mistral) , no translation needed, just pass through.
β€’ For providers with different formats (Anthropic, Gemini, Cohere) β€” I wrote translation functions (oaiToAnthropic, oaiToGemini, oaiToCohere) and a NativeWrapperStreamAdapter that handles streaming for translated providers.
β€’ GET /v1/unified/models β€” queries the existing model registry and returns all models from all providers in standard OpenAI list format. This is needed so n8n can discover available models.
What is preserved:
β€’ All existing features go through the same handleLLMProxy pipeline β€” virtual
β€’ keys, auth middleware, security policies engine, TOON compression, MCP tools, nothing is bypassed.
Routes registered in server.ts:
β€’ GET /v1/unified/models
β€’ POST /v1/unified/chat/completions
β€’ POST /v1/unified/:agentId/chat/completions
Status:
β€’ Code is done and tested locally
β€’ Demo video with n8n is pending (will record once I confirm I can submit)
Can external contributors work on this? The label says "only for core team"
so just want to check before I spend time on the video and PR.
Thank you!
3 replies

Read-only live mirror of Archestra.AI Slack

πŸ‘‹Join the discussion withAI enthusiasts!