Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f1415d8
feat(agents): add managed-runtime mode with Claude Platform integration
djabarovgeorge May 10, 2026
3fd2dc1
fix(agents): propagate AGENT_RUNTIME channel type across dashboard lo…
djabarovgeorge May 10, 2026
105936d
feat(agents): enhance agent creation with runtime and skills support
djabarovgeorge May 11, 2026
5b7daee
fix(agents): resolve issues with agent runtime configuration and dash…
djabarovgeorge May 11, 2026
1f9fa26
feat(agents): implement adoption of existing managed agents
djabarovgeorge May 11, 2026
953ae5b
feat(agents): enhance agent provisioning with apiKey support
djabarovgeorge May 11, 2026
7c38fe8
feat(agents): enhance agent deletion process with provider option
djabarovgeorge May 11, 2026
489d540
feat(agents): add skills support to agent runtime configuration
djabarovgeorge May 11, 2026
1dfea32
feat(agents): add creationSource field to agent DTOs and commands
djabarovgeorge May 11, 2026
3ee1d69
refactor(agents): remove runtime providers endpoint and related DTOs
djabarovgeorge May 11, 2026
4b863c8
feat(agents): enhance agent runtime configuration with skills and cap…
djabarovgeorge May 11, 2026
ea6786b
feat(agents): add externalEnvironmentId to integration schema and enh…
djabarovgeorge May 11, 2026
25168f9
Merge remote-tracking branch 'origin/next' into cursor/managed-agents…
djabarovgeorge May 11, 2026
8c502f8
fix(agents): address PR review comments
djabarovgeorge May 11, 2026
a102ad1
feat(dependencies): add @anthropic-ai/sdk and standardwebhooks to pnp…
djabarovgeorge May 11, 2026
a0a5488
Merge branch 'next' into cursor/managed-agents-claude-platform
LetItRock May 12, 2026
134c793
feat(agents): refactor managed runtime integration handling
djabarovgeorge May 12, 2026
8b6d628
Merge branch 'cursor/managed-agents-claude-platform' of https://githu…
djabarovgeorge May 12, 2026
6d12930
feat(integrations): introduce integration kind distinction and update…
djabarovgeorge May 12, 2026
40980db
feat(agents): enhance managed agent provisioning and runtime configur…
djabarovgeorge May 12, 2026
8796d4e
feat(agents): update agent creation DTO and use case validation
djabarovgeorge May 12, 2026
276e794
refactor(workflow): replace NotificationChannelTypeEnum with ChannelT…
djabarovgeorge May 12, 2026
18d9a90
refactor(tests): update managed agent E2E tests to stub AgentRuntimeF…
djabarovgeorge May 12, 2026
7ddbc16
fix(tests): update managed agent E2E test to correct MCP server URL
djabarovgeorge May 12, 2026
f1186b8
chore: update hash
djabarovgeorge May 12, 2026
b8c3968
Merge branch 'next' into cursor/managed-agents-claude-platform
djabarovgeorge May 12, 2026
29b5c99
fix(api-service): enforce MCP catalog on agent runtime config PATCH (…
djabarovgeorge May 12, 2026
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
Prev Previous commit
Next Next commit
fix(tests): update managed agent E2E test to correct MCP server URL
- Modified the expected URL for the Slack MCP server in the managed agent E2E tests to reflect the correct endpoint.
- This change ensures that the tests accurately validate the agent creation process with the updated MCP server configuration.
  • Loading branch information
djabarovgeorge committed May 12, 2026
commit 7ddbc16a1aafb9413ab4b03f1fa3fff8bfad72e9
2 changes: 1 addition & 1 deletion apps/api/src/app/agents/e2e/managed-agent.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ describe('Managed Agents API #novu-v2', () => {
expect(createAgentArg.tools).to.deep.equal(['web_search']);
expect(createAgentArg.mcpServers).to.be.an('array').with.length(1);
expect(createAgentArg.mcpServers[0].name).to.equal('Slack');
expect(createAgentArg.mcpServers[0].url).to.equal('https://mcp.slack.com/sse');
expect(createAgentArg.mcpServers[0].url).to.equal('https://mcp.slack.com/mcp');
});

it('should return 422 when runtime=managed but managedRuntime is omitted', async () => {
Expand Down
Loading